Artificial Neural Networks人工神经络.ppt
《Artificial Neural Networks人工神经络.ppt》由会员分享,可在线阅读,更多相关《Artificial Neural Networks人工神经络.ppt(69页珍藏版)》请在麦多课文档分享上搜索。
1、Artificial Neural Networks 人工神经网络,Introduction,09/10/2018,Artificial Neural Networks - I,2,Table of Contents,Introduction to ANNs Taxonomy Features Learning Applications,I,09/10/2018,Artificial Neural Networks - I,3,Contents - I,Introduction to ANNs Processing elements (neurons) Architecture Functio
2、nal Taxonomy of ANNs Structural Taxonomy of ANNs Features Learning Paradigms Applications,09/10/2018,Artificial Neural Networks - I,4,The Biological Neuron,10 billion neurons in human brain Summation of input stimuli Spatial (signals) Temporal (pulses) Threshold over composed inputs Constant firing
3、strength,billion synapses in human brain Chemical transmission and modulation of signals Inhibitory synapses Excitatory synapses,09/10/2018,Artificial Neural Networks - I,5,Biological Neural Networks,10,000 synapses per neuron Computational power = connectivity Plasticity new connections (?) strengt
4、h of connections modified,09/10/2018,Artificial Neural Networks - I,6,Neural Dynamics,Refractory time,Action potential,Action potential 100mV Activation threshold 20-30mV Rest potential -65mV Spike time 1-2ms Refractory time 10-20ms,09/10/2018,Artificial Neural Networks - I,7,神经网络的复杂性,神经网路的复杂多样,不仅在于
5、神经元和突触的数量大、组合方式复杂和联系广泛,还在于突触传递的机制复杂。现在已经发现和阐明的突触传递机制有:突触后兴奋,突触后抑制,突触前抑制,突触前兴奋,以及“远程”抑制等等。在突触传递机制中,释放神经递质是实现突触传递机能的中心环节,而不同的神经递质有着不同的作用性质和特点,09/10/2018,Artificial Neural Networks - I,8,神经网络的研究,神经系统活动,不论是感觉、运动,还是脑的高级功能(如学习、记忆、情绪等)都有整体上的表现,面对这种表现的神经基础和机理的分析不可避免地会涉及各种层次。这些不同层次的研究互相启示,互相推动。在低层次(细胞、分子水平)上
6、的工作为较高层次的观察提供分析的基础,而较高层次的观察又有助于引导低层次工作的方向和体现其功能意义。既有物理的、化学的、生理的、心理的分门别类研究,又有综合研究。,09/10/2018,Artificial Neural Networks - I,9,The Artificial Neuron,Stimulus,urest = resting potential xj(t) = output of neuron j at time t wij = connection strength between neuron i and neuron j u(t) = total stimulus at
7、 time t,yi(t),x1(t),x2(t),x5(t),x3(t),x4(t),wi1,wi3,wi2,wi4,wi5,Neuron i,Response,09/10/2018,Artificial Neural Networks - I,10,Artificial Neural Models,McCulloch Pitts-type Neurons (static) Digital neurons: activation state interpretation (snapshot of the system each time a unit fires) Analog neuron
8、s: firing rate interpretation (activation of units equal to firing rate) Activation of neurons encodes information Spiking Neurons (dynamic) Firing pattern interpretation (spike trains of units) Timing of spike trains encodes information (time to first spike, phase of signal, correlation and synchro
9、nicity,09/10/2018,Artificial Neural Networks - I,11,Binary Neurons,“Hard” threshold,= threshold,ex: Perceptrons, Hopfield NNs, Boltzmann Machines Main drawbacks: can only map binary functions, biologically implausible.,off,on,Stimulus,Response,09/10/2018,Artificial Neural Networks - I,12,Analog Neur
10、ons,“Soft” threshold,ex: MLPs, Recurrent NNs, RBF NNs. Main drawbacks: difficult to process time patterns, biologically implausible.,off,on,Stimulus,Response,09/10/2018,Artificial Neural Networks - I,13,Spiking Neurons,= spike and afterspike potential urest = resting potential e(t,u(t) = trace at ti
11、me t of input at time t = threshold xj(t) = output of neuron j at time t wij = efficacy of synapse from neuron i to neuron j u(t) = input stimulus at time t,Response,Stimulus,09/10/2018,Artificial Neural Networks - I,14,Spiking Neuron Dynamics,09/10/2018,Artificial Neural Networks - I,15,赫布律,加拿大心理学家
12、Donald Hebb出版了行为的组织一书,指出学习导致突触的联系强度和传递效能的提高,即为“赫布律”。 在此基础上,人们提出了各种学习规则和算法,以适应不同网络模型的需要。有效的学习算法,使得神经网络能够通过连接权值的调整,构造客观世界的内在表示,形成具有特色的信息处理方法,信息存储和处理体现在网络的连接中。,09/10/2018,Artificial Neural Networks - I,16,Hebbs Postulate of Learning,Biological formulationWhen an axon of cell A is near enough to excite
13、a cell and repeatedly or persistently takes part in firing it, some growth process or metabolic change takes place in one or both cells such that As efficiency as one of the cells firing B is increased.,09/10/2018,Artificial Neural Networks - I,17,赫布律,当细胞A的一个轴突和细胞B 很近,足以对它产生影响,并且持久地、不断地参与了对细胞B 的兴奋,那
14、么在这两个细胞或其中之一会发生某种生长过程或新陈代谢变化,以致于A作为能使B 兴奋的细胞之一,它的影响加强了。,09/10/2018,Artificial Neural Networks - I,18,Hebbs Postulate: revisited,Stent (1973), and Changeux and Danchin (1976) have expanded Hebbs rule such that it also mo- dels inhibitory synapses: If two neurons on either side of a synapse are activa
15、ted simultaneously (synchronously), then the strength of that synapse is selectively increased. If two neurons on either side of a synapse are activated asynchronously, then that synapse is selectively weakened or eliminated.,09/10/2018,Artificial Neural Networks - I,19,Artificial Neural Networks,Ou
16、tput layer,Input layer,Hidden layers,fully connected,sparsely connected,09/10/2018,Artificial Neural Networks - I,20,Feedforward ANN Architectures,Information flow unidirectional Static mapping: y=f(x) Multi-Layer Perceptron (MLP) Radial Basis Function (RBF) Kohonen Self-Organising Map (SOM),09/10/2
17、018,Artificial Neural Networks - I,21,Recurrent ANN Architectures,Feedback connections Dynamic memory: y(t+1)=f(x(),y(),s() (t,t-1,.) Jordan/Elman ANNs Hopfield Adaptive Resonance Theory (ART),09/10/2018,Artificial Neural Networks - I,22,History,Early stages 1943 McCulloch-Pitts: neuron as comp. ele
18、m. 1948 Wiener: cybernatics 1949 Hebb: learning rule 1958 Rosenblatt: perceptron 1960 Widrow-Hoff: least mean square algorithm Recession 1969 Minsky-Papert: limitations perceptron model Revival 1982 Hopfield: recurrent network model 1982 Kohonen: self-organizing maps 1986 Rumelhart et. al.: backprop
19、agation,09/10/2018,Artificial Neural Networks - I,23,历史,40年代心理学家Mcculloch和数学家Pitts合作提出的兴奋与抑制型神经元模型和Hebb提出的神经元连接强度的修改规则,他们的研究结果至今仍是许多神经网络模型研究的基础。50年代、60年代的代表性工作是Rosenblatt的感知机和Widrow的自适应性元件Adaline。 1969年,Minsky和Papert合作发表了颇有影响的Perceptron一书,得出了消极悲观的论点,加上数字计算机正处于全盛时期并在人工智能领域取得显著成就,70年代人工神经网络的研究处于低潮。,09
20、/10/2018,Artificial Neural Networks - I,24,历史,80年代后,传统的Von Neumann数字计算机在模拟视听觉的人工智能方面遇到了物理上不可逾越的极限。与此同时,Rumelhart与Mcclelland以及Hopfield等人在神经网络领域取得了突破性进展,神经网络的热潮再次掀起。自适应共振理论(ART) 组织特征映射理论 Hinton 等人最近提出了 Helmboltz 机 徐雷提出的 Ying-Yang 机理论模型 甘利俊一( S.Amari) 开创和发展的基于统计流形的方法应用于人工神经网络的研究,09/10/2018,Artificial N
21、eural Networks - I,25,ANN Capabilities,Learning Approximate reasoning Generalisation capability Noise filtering Parallel processing Distributed knowledge base Fault tolerance,09/10/2018,Artificial Neural Networks - I,26,Main Problems with ANN,Knowledge base not transparent (black box) (Partially res
22、olved) Learning sometimes difficult/slow Limited storage capability,09/10/2018,Artificial Neural Networks - I,27,ANN Learning Paradigms,Supervised learning Classification Control Function approximation Associative memory Unsupervised learning Clustering Reinforcement learning Control,09/10/2018,Arti
23、ficial Neural Networks - I,28,Supervised Learning,Teacher presents ANN input-output pairs ANN weights adjusted according to error Iterative algorithms (e.g. Delta rule, BP rule) One-shot learning (Hopfield) Quality of training examples is critical,09/10/2018,Artificial Neural Networks - I,29,Present
24、ed by Martin Ho, Eddy Li, Eric Wong and Kitty Wong - Copyright 2000,Linear Separability in Perceptrons,09/10/2018,Artificial Neural Networks - I,30,Presented by Martin Ho, Eddy Li, Eric Wong and Kitty Wong - Copyright 2000,Learning Linearly Separable Functions (1),What can these functions learn ?Bad
- 1.请仔细阅读文档,确保文档完整性,对于不预览、不比对内容而直接下载带来的问题本站不予受理。
- 2.下载的文档,不会出现我们的网址水印。
- 3、该文档所得收入(下载+内容+预览)归上传者、原创作者;如果您是本文档原作者,请点此认领!既往收益都归您。
下载文档到电脑,查找使用更方便
2000 积分 0人已下载
下载 | 加入VIP,交流精品资源 |
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- ARTIFICIALNEURALNETWORKS 人工 神经 PPT
