博客
关于我
【读书1】【2017】MATLAB与深度学习——神经网络(1)
阅读量:212 次
发布时间:2019-02-28

本文共 2183 字,大约阅读时间需要 7 分钟。

本章讲解了单层神经网络的学习规则。

This chapter explains the learning rulesfor a single-layer neural network.

第3章讨论了多层神经网络的学习规则。

The learning rules for a multi-layer neuralnetwork are addressed in Chapter 3.

神经网络的节点(Nodes of a Neural Network)

每当我们学到东西时,大脑就储存知识。

Whenever we learn something, our brainstores the knowledge.

计算机使用存储器来存储信息。

The computer uses memory to storeinformation.

虽然大脑和存储器都存储信息,但是二者的机制是非常不同的。

Although they both store information, theirmechanisms are very different.

计算机在指定位置存储信息,而大脑则是改变神经元之间的联系。

The computer stores information atspecified locations of the memory, while the brain alters the association ofneurons.

神经元本身没有存储能力,它只是将信号从一个神经元传递到另一个神经元。

The neuron itself has no storagecapability; it just transmits signals from one neurons to the other.

大脑是由这些神经元组成的巨大网络,神经元之间的联系形成了特定的信息。

The brain is a gigantic network of theseneurons, and the association of the neurons forms specific information.

神经网络模仿大脑的工作机制。

The neural network imitates the mechanismof the brain.

由于大脑是由众多神经元的连接构成的,神经网络是由众多节点的连接构成的,这些节点对应于大脑神经元。

As the brain is composed of connections ofnumerous neurons, the neural network is constructed with connections of nodes,which are elements that correspond to the neurons of the brain.

神经网络模仿神经元之间的联系使用权值,这是大脑最重要的工作机制。

The neural network mimics the neurons’association, which is the most important mechanism of the brain, using theweight value.

下表总结了大脑和神经网络之间的类比关系。

The following table summarizes the analogybetween the brain and neural network.

在这里插入图片描述

使用语言进一步解释这一点可能会导致更多的混淆。

Explaining this any further using text maycause more confusion.

通过一个简单的例子来更好地理解神经网络的机制。

Look at a simple example for a betterunderstanding of the neural network’s mechanism.

考虑一个三输入的神经网络节点,如图2-2所示。

Consider a node that receives three inputs,as shown in Figure 2-2.

在这里插入图片描述

图2-2 三输入的神经网络节点A node that receives threeinputs

图中的圆圈和箭头分别表示节点和信号流。

The circle and arrow of the figure denotethe node and signal flow, respectively.

也就是说,神经网络的信息以权值和偏置的形式存储。

In other words, the information of theneural net is stored in the form of weights and bias.

来自外部的输入信号在到达节点之前乘以权重。

The input signal from the outside ismultiplied by the weight before it reaches the node.

——本文译自Phil Kim所著的《Matlab Deep Learning》

更多精彩文章请关注微信号:在这里插入图片描述

你可能感兴趣的文章
mysqldump 参数--lock-tables浅析
查看>>
mysqldump 导出中文乱码
查看>>
mysqldump 导出数据库中每张表的前n条
查看>>
mysqldump: Got error: 1044: Access denied for user ‘xx’@’xx’ to database ‘xx’ when using LOCK TABLES
查看>>
Mysqldump参数大全(参数来源于mysql5.5.19源码)
查看>>
mysqldump备份时忽略某些表
查看>>
mysqldump实现数据备份及灾难恢复
查看>>
mysqldump数据库备份无法进行操作只能查询 --single-transaction
查看>>
mysqldump的一些用法
查看>>
mysqli
查看>>
MySQLIntegrityConstraintViolationException异常处理
查看>>
mysqlreport分析工具详解
查看>>
MySQLSyntaxErrorException: Unknown error 1146和SQLSyntaxErrorException: Unknown error 1146
查看>>
Mysql_Postgresql中_geometry数据操作_st_astext_GeomFromEWKT函数_在java中转换geometry的16进制数据---PostgreSQL工作笔记007
查看>>
mysql_real_connect 参数注意
查看>>
mysql_secure_installation初始化数据库报Access denied
查看>>
MySQL_西安11月销售昨日未上架的产品_20161212
查看>>
Mysql——深入浅出InnoDB底层原理
查看>>
MySQL“被动”性能优化汇总
查看>>
MySQL、HBase 和 Elasticsearch:特点与区别详解
查看>>