-
Notifications
You must be signed in to change notification settings - Fork 335
/
Copy pathc_neural.tex
87 lines (64 loc) · 6.7 KB
/
c_neural.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
% The Clever Algorithms Project: http://www.CleverAlgorithms.com
% (c) Copyright 2010 Jason Brownlee. Some Rights Reserved.
% This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 2.5 Australia License.
% This is a chapter
\renewcommand{\bibsection}{\subsection{\bibname}}
\begin{bibunit}
\chapter{Neural Algorithms}
\label{ch:neural}
\index{Neural Algorithms}
\index{Artificial Neural Networks}
\index{Neural Networks}
\index{Neural Computation}
\section{Overview}
This chapter describes Neural Algorithms.
% biological
\subsection{Biological Neural Networks}
A Biological Neural Network refers to the information processing elements of the nervous system, organized as a collection of neural cells, called neurons, that are interconnected in networks and interact with each other using electrochemical signals.
A biological neuron is generally comprised of dendrites which provide the input signals to the cell. The neuron reacts to input signals and may produce an output signal on its output connection called the axon which is connected to the dendrites of other neurons via synapses.
The study of biological neural networks falls within the domain of neuroscience which is a branch of biology concerned with the nervous system.
Neuroanatomy is a subject that is concerned with the the structure and function of groups of neural networks both with regard to parts of the brain and the structures that lead from and to the brain from the rest of the body.
Neuropsychology is another discipline concerned with the structure and function of the brain as they relate to abstract psychological behaviors.
For further information, refer to a good textbook on any of these general topics.
% artificial
\subsection{Artificial Neural Networks}
The field of Artificial Neural Networks (ANN) is concerned with the investigation of computational models inspired by theories and observation of the structure and function of biological networks of neural cells in the brain. They are generally designed as models for addressing mathematical, computational, and engineering problems. As such, there is a lot of interdisciplinary research in mathematics, neurobiology and computer science.
An Artificial Neural Network is generally comprised of a collection of artificial neurons that are interconnected in order to performs some computation on input patterns and create output patterns. They are adaptive systems capable of modifying their internal structure, typically the weights between nodes in the network, allowing them to be used for a variety of function approximation problems such as classification, regression, feature extraction and content addressable memory.
Given that the focus of the field is on performing computation with networks of discrete computing units, the field is traditionally called a `connectionist' paradigm of Artificial Intelligence and `Neural Computation'.
There are many types of neural networks, many of which fall into one of two categories:
\index{Feed-forward Networks}
\index{Recurrent Networks}
\begin{itemize}
\item \textbf{Feed-forward Networks} where input is provided on one side of the network and the signals are propagated forward (in one direction) through the network structure to the other side where output signals are read. These networks may be comprised of one cell, one layer or multiple layers of neurons. Some examples include the Perceptron, Radial Basis Function Networks, and the multi-layer perceptron networks.
\item \textbf{Recurrent Networks} where cycles in the network are permitted and the structure may be fully interconnected. Examples include the Hopfield Network and Bidirectional Associative Memory.
\end{itemize}
Artificial Neural Network structures are made up of nodes and weights which typically require training based on samples of patterns from a problem domain. Some examples of learning strategies include:
\index{Supervised Learning}
\index{Unsupervised Learning}
\begin{itemize}
\item \textbf{Supervised Learning} where the network is exposed to the input that has a known expected answer. The internal state of the network is modified to better match the expected result. Examples of this learning method include the Back-propagation algorithm and the Hebb rule.
\item \textbf{Unsupervised Learning} where the network is exposed to input patterns from which it must discern meaning and extract features. The most common type of unsupervised learning is competitive learning where neurons compete based on the input pattern to produce an output pattern. Examples include Neural Gas, Learning Vector Quantization, and the Self-Organizing Map.
\end{itemize}
Artificial Neural Networks are typically difficult to configure and slow to train, but once prepared are very fast in application. They are generally used for function approximation-based problem domains and prized for their capabilities of generalization and tolerance to noise. They are known to have the limitation of being opaque, meaning there is little explanation to the subject matter expert as to why decisions were made, only how.
% References
% \subsection{References}
% classical
% books
There are many excellent reference texts for the field of Artificial Neural Networks, some selected texts include: ``\emph{Neural Networks for Pattern Recognition}'' by Bishop \cite{Bishop1995}, ``\emph{Neural Smithing: Supervised Learning in Feedforward Artificial Neural Networks}'' by Reed and Marks II \cite{Reed1999} and ``\emph{An Introduction to Neural Networks}'' by Gurney \cite{Gurney1997}.
%
% Extensions
%
\subsection{Extensions}
There are many other algorithms and classes of algorithm that were not described from the field of Artificial Neural Networks, not limited to:
\begin{itemize}
\item \textbf{Radial Basis Function Network}: A network where activation functions are controlled by Radial Basis Functions \cite{Howlett2001}.
\item \textbf{Neural Gas}: Another self-organizing and unsupervised competitive learning algorithm. Unlike SOM (and more like LVQ), the nodes are not organized into a lower-dimensional structure, instead the competitive Hebbian-learning like rule is applied to connect, order, and adapt nodes in feature space \cite{Martinetz1991, Martinetz1993, Martinetz1994}.
\item \textbf{Hierarchical Temporal Memory}: A neural network system based on models of some of the structural and algorithmic properties of the neocortex \cite{Hawkins2005}.
\end{itemize}
\putbib
\end{bibunit}
\newpage\begin{bibunit}\input{a_neural/perceptron}\putbib\end{bibunit}
\newpage\begin{bibunit}\input{a_neural/backpropagation}\putbib\end{bibunit}
\newpage\begin{bibunit}\input{a_neural/hopfield_network}\putbib\end{bibunit}
\newpage\begin{bibunit}\input{a_neural/lvq}\putbib\end{bibunit}
\newpage\begin{bibunit}\input{a_neural/som}\putbib\end{bibunit}