Download Introduction to Neural Networks

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Mirror neuron wikipedia , lookup

Stimulus (physiology) wikipedia , lookup

Molecular neuroscience wikipedia , lookup

Binding problem wikipedia , lookup

Neuroesthetics wikipedia , lookup

Axon wikipedia , lookup

Single-unit recording wikipedia , lookup

Premovement neuronal activity wikipedia , lookup

Artificial intelligence wikipedia , lookup

Brain Rules wikipedia , lookup

Multielectrode array wikipedia , lookup

Neural modeling fields wikipedia , lookup

Activity-dependent plasticity wikipedia , lookup

Neuroeconomics wikipedia , lookup

Cognitive neuroscience wikipedia , lookup

Clinical neurochemistry wikipedia , lookup

Neural oscillation wikipedia , lookup

Connectome wikipedia , lookup

Neural coding wikipedia , lookup

Neurophilosophy wikipedia , lookup

Pre-Bötzinger complex wikipedia , lookup

Biological neuron model wikipedia , lookup

Embodied cognitive science wikipedia , lookup

Donald O. Hebb wikipedia , lookup

Circumventricular organs wikipedia , lookup

Central pattern generator wikipedia , lookup

Neural correlates of consciousness wikipedia , lookup

Mind uploading wikipedia , lookup

Feature detection (nervous system) wikipedia , lookup

Neural engineering wikipedia , lookup

Optogenetics wikipedia , lookup

Synaptic gating wikipedia , lookup

Artificial general intelligence wikipedia , lookup

Catastrophic interference wikipedia , lookup

Artificial neural network wikipedia , lookup

Holonomic brain theory wikipedia , lookup

Convolutional neural network wikipedia , lookup

Neuropsychopharmacology wikipedia , lookup

Neuroanatomy wikipedia , lookup

Development of the nervous system wikipedia , lookup

Metastability in the brain wikipedia , lookup

Channelrhodopsin wikipedia , lookup

Recurrent neural network wikipedia , lookup

Types of artificial neural networks wikipedia , lookup

Nervous system network models wikipedia , lookup

Transcript
363CS – Artificial Intelligence
Lecture 11: 15/6/1435
Neural Networks
Lecturer/ Kawther Abas
[email protected]
Artificial neural networks
Tasks to be solved by artificial neural networks:
• controlling the movements of a robot based on selfperception and other information (e.g., visual
information);
• deciding the category of potential food items (e.g.,
edible or non-edible) in an artificial world;
• recognizing a visual object (e.g., a familiar face);
• predicting where a moving object goes, when a robot
wants to catch it.
Neural network tasks
• control
• classification
• prediction
• approximation
These can be reformulated
in general as
FUNCTION
APPROXIMATION
tasks.
Approximation: given a set of values of a function g(x)
build a neural network that approximates the g(x) values
for any input x.
Network Architectures
● Three different classes of network
architectures
− single-layer feed-forward
− multi-layer feed-forward
− recurrent
● The architecture of a neural network is linked
with the learning algorithm used to train
Neural Network History
• History traces back to the 50’s but became popular in the 80’s
with work by Rumelhart, Hinton, and Mclelland
– A General Framework for Parallel Distributed Processing in Parallel
Distributed Processing: Explorations in the Microstructure of
Cognition
• Peaked in the 90’s. Today:
– Hundreds of variants
– Less a model of the actual brain than a useful tool, but still some
debate
• Numerous applications
– Handwriting, face, speech recognition
– Vehicles that drive themselves
– Models of reading, sentence production, dreaming
• Debate for philosophers and cognitive scientists
– Can human consciousness or cognitive abilities be explained by a
connectionist model or does it require the manipulation of symbols?
Comparison of Brains and Traditional
Computers
• 200 billion neurons, 32
trillion synapses
• Element size: 10-6 m
• Energy use: 25W
• Processing speed: 100 Hz
• Parallel, Distributed
• Fault Tolerant
• Learns: Yes
• Intelligent/Conscious:
Usually
• 1 billion bytes RAM but
trillions of bytes on disk
• Element size: 10-9 m
• Energy watt: 30-90W (CPU)
• Processing speed: 109 Hz
• Serial, Centralized
• Generally not Fault Tolerant
• Learns: Some
• Intelligent/Conscious:
Generally No
What are connectionist neural networks?
• Connectionism refers to a computer modeling
approach to computation that is loosely based
upon the architecture of the brain.
• Many different models:
– Multiple, individual “nodes” or “units” that operate at
the same time (in parallel)
– A network that connects the nodes together
– Information is stored in a distributed fashion among the
links that connect the nodes
– Learning can occur with gradual changes in connection
strength
Biological inspiration
An appropriate model/simulation of the nervous system
should be able to produce similar responses and behaviours in
artificial systems.
The nervous system is build by relatively simple units, the
neurons, so copying their behavior and functionality should be
the solution.
Biological Inspiration
Idea : To make the computer more robust, intelligent, and learn, …
Let’s model our computer software (and/or hardware) after the brain
Neurons in the Brain
• Although heterogeneous, at a low level
the brain is composed of neurons
– A neuron receives input from other neurons
(generally thousands) from its synapses
– Inputs are approximately summed
– When the input exceeds a threshold the neuron
sends an electrical spike that travels that
travels from the body, down the axon, to the
next neuron(s)
Learning in the Brain
• Brains learn
– Altering strength between neurons
– Creating/deleting connections
• Hebb’s Postulate (Hebbian Learning)
– When an axon of cell A is near enough to excite a cell B and repeatedly
or persistently takes part in firing it, some growth process or metabolic
change takes place in one or both cells such that A's efficiency, as one of
the cells firing B, is increased.
• Long Term Potentiation (LTP)
– Cellular basis for learning and memory
– LTP is the long-lasting strengthening of the connection between two
nerve cells in response to stimulation
– Discovered in many regions of the cortex
Perceptrons
• Can add learning rate to speed up the learning process; just
multiply in with delta computation
• Essentially a linear discriminant
• Perceptron theorem: If a linear discriminant exists that can
separate the classes without error, the training procedure is
guaranteed to find that line or plane.
Class1
Class2
Network Topology
● The number of layers and neurons depend on the
specific task.
● In practice this issue is solved by trial and error.
● Two types of adaptive algorithms can be used:
− start from a large network and successively remove some
neurons and links until network performance degrades.
− begin with a small network and introduce new neurons until
performance is satisfactory.
Network parameters
● How are the weights initialized?
● How is the learning rate chosen?
● How many hidden layers and how many
neurons?
● How many examples in the training set?