AI1- Preparation for Week 6 More on Back-Propagation

Author:Francesco Lelli
Learning Line:More on Back-propagation
Course:AI1: Introduction to Neural Networks
Week:6
Competencies:1- Understand and be able to use neural network dynamics and factors that influence their performance
­2- Implement a basic pattern recognition
BoKS:• 3aS5 The student is able to develop a functional design for data driven applications.
• 3aS2 The student knows how to apply the right statistical & mathematical tools for specific AI-contexts
Learning Goals:Understanding Back-propagation and practical use cases of Neural Network

Artificial neural networks (ANN) or simply “neural networks” are computing systems inspired by “classical biological” neural networks that are in animal brains. Typically an ANN “learn” to perform tasks by considering examples, without being programmed with task-specific rules. 

Image recognition is a classical example where neural networks are used; in particular they learn to identify images that contain dogs by analyzing example images that have been manually categorized (labelled) as “dog” or “no dog”. Once the system “learn” the difference it can be used for identifying dogs in other images. 

An ANN does not use conceptual reasoning, for example is not capable to devise that “all dogs have 4 legs”, or “a dog must have a nose” etc. Instead, they hide the features of a dog into their data structure and they “internally learn these characteristics” from the examples that are used for training them. 

Practical applications are more complex that the classical example mentioned in these videos. Nevertheless, learning how to recognize hand-written digits is always a good place to start. In other words you can consider this example as the “hello world” example for learning the basics of Neural Networks. 

In the past lecture we introduce back-propagation. During this week detail how back propagation works as well as we continue work to the assignment in order to produce our patter recognition.  

Assignment and progresses

The code mentioned in the videos is also available at this link:

https://github.com/mnielsen/neural-networks-and-deep-learning

In the case you would like to replicate the example you can access the database of hand-written digits at this link: 

http://yann.lecun.com/exdb/mnist/

And, in the case you would like to learn about Artificial Neural Networks in details I would recommend this open book: 

http://neuralnetworksanddeeplearning.com/

This is week 6 of AI1: Introduction to Neural Networks, link to the all material of the course: