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

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

by 斋藤康毅
July 2018
Intermediate to advanced
310 pages
8h 21m
Chinese
Posts & Telecom Press
Content preview from 深度学习入门 : 基于Python的理论与实现
3章 神经网络
56
(2, 3)
>>> Y = np.dot(X, W)
>>> print(Y)
[ 5 11 17]
如上所示,使用
np.dot
(多维数组的点积),可以一次性计算出
Y
的结果。
这意味着,即便
Y
的元素个数为
100
1000
,也可以通过一次运算就计算出
结果!如果不使用
np.dot
,就必须单独计算
Y
的每一个元素(或者说必须使
for
语句),非常麻烦。因此,通过矩阵的乘积一次性完成计算的技巧,在
实现的层面上可以说是非常重要的。
3.4
3层神经网络的实现
现在我们来进行神经网络的实现。这里我们以图3
-
15 3 层神经网络为
对象,实现从输入到输出的(前向)处理。在代码实现方面,使用上一节介
绍的
NumPy
多维数组。巧妙地使用
NumPy
数组,可以用很少的代码完成
神经网络的前向处理。
3-15  3 层神经网络:输入层(第 0 层)有 2 个神经元,第 1 个隐藏层(第 1 层)有 3 个神经元,
2 个隐藏层(第2 层)有 2 个神经元,输出层(第3 层)有 2 个神经元
x
1
x
2
y
1
y
2
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