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

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

by 斋藤康毅
July 2018
Intermediate to advanced
310 pages
8h 21m
Chinese
Posts & Telecom Press
Content preview from 深度学习入门 : 基于Python的理论与实现
5.7  误差反向传播法的实现 
155
5.7.2
 对应误差反向传播法的神经网络的实现
现在来进行神经网络的实现。这里我们要把2层神经网络实现为
TwoLayerNet
首先,将这个类的实例变量和方法整理成表5
-
1 和表 5
-
2
表5-1 TwoLayerNet类的实例变量
实例变量 说明
params
保存神经网络的参数的字典型变量。
params['W1']
是第1 层的权重,
params['b1']
是第1 层的偏置。
params['W2']
是第2 层的权重,
params['b2']
是第2 层的偏置
layers
保存神经网络的层的有序字典型变量
layers['Affine1']
layers['ReLu1']
layers['Affine2']
的形式,
通过有序字典保存各个层
lastLayer
神经网络的最后一层。
本例中为
SoftmaxWithLoss
表5-2 TwoLayerNet类的方法
方法 说明
__init__(self, input_size,
hidden_size, output_size,
weight_init_std)
进行初始化。
参数从头开始依次是输入层的神经元数、隐藏层的
神经元数、输出层的神经元数、初始化权重时的高
斯分布的规模
predict(self, x)
进行识别(推理)。
参数
x
是图像数据
loss(self, x, t)
计算损失函数的值。
参数
X
是图像数据、
t
是正确解标签
accuracy(self, x, t)
计算识别精度
numerical_gradient(self, x, ...
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