Skip to Content
深度学习入门 : 基于Python的理论与实现
book

深度学习入门 : 基于Python的理论与实现

by 斋藤康毅
July 2018
Intermediate to advanced
310 pages
8h 21m
Chinese
Posts & Telecom Press
Content preview from 深度学习入门 : 基于Python的理论与实现
1章 Python 入门
16
>>> X > 15
array([ True, True, False, True, False, False], dtype=bool)
>>> X[X>15]
array([51, 55, 19])
NumPy
数组使用不等号运算符等(上例中是
X > 15
, 结果会得到一个
布尔型的数组。上例中就是使用这个布尔型数组取出了数组的各个元素(取
True
对应的元素)。
Python 等动态类型语言一般比 C C++ 等静态类型语言(编译型语言)
运算速度慢。实际上,如果是运算量大的处理对象,用C/C++写程
序更好。为此,当 Python 中追求性能时,人们会用 C/C++ 来实现
处理的内容。Python则承担“中间人”的角色,负责调用那些用C/
C++ 写的程序。NumPy 中,主要的处理也都是通过 C C++ 实现的。
因此,我们可以在不损失性能的情况下,使用Python 便利的语法。
1.6
Matplotlib
在深度学习的实验中,图形的绘制和数据的可视化非常重要。
Matplotlib
是用于绘制图形的库,使用
Matplotlib
可以轻松地绘制图形和实现数据的可
视化。这里,我们来介绍一下图形的绘制方法和图像的显示方法。
1.6.1
 绘制简单图形
可以使用
matplotlib
pyplot
模块绘制图形。话不多说,我们来看一个
绘制
sin
函数曲线的例子。
import numpy as np
import matplotlib.pyplot as plt
#
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

ルールズ・オブ・プログラミング ―より良いコードを書くための21のルール

ルールズ・オブ・プログラミング ―より良いコードを書くための21のルール

Chris Zimmerman, 久富木 隆一
プロダクトマネージャーのしごと 第2版 ―1日目から使える実践ガイド

プロダクトマネージャーのしごと 第2版 ―1日目から使える実践ガイド

Matt LeMay, 永瀬 美穂, 吉羽 龍太郎, 原田 騎郎, 高橋 一貴

Publisher Resources

ISBN: 9787115485588