Neural Network Workshop: Difference between revisions
Jump to navigation
Jump to search
Mschachter (talk | contribs) mNo edit summary |
Mschachter (talk | contribs) No edit summary |
||
| Line 10: | Line 10: | ||
=== Workshop Overview, Resources === | === Workshop Overview, Resources === | ||
* | *What is a Neural Network? | ||
**What does a real neural network in the brain look like? | |||
**Differences between artificial neural nets and biological neural nets | |||
**Basic architecture: layers of interconnected units | |||
**Weights and activation functions: the actual computation | |||
*What can Neural Networks do? | |||
**Universal Function Approximators | **Universal Function Approximators | ||
** | **Classification: identifying classes of things | ||
*** | ***Binary classification vs. multi-class classification | ||
** | **Regression: predicting values from data | ||
* | *How are neural networks trained? | ||
** | **Backpropagation | ||
*Neural | *Let's write some code! Face or not a Face? Binary Classification with Neural Nets | ||
** | **Here we'll implement a neural network that detects whether an image contains a human face, using the language of your choice: | ||
** | ***[http://neuroph.sourceforge.net/ neuroph]: java | ||
* | ***[http://leenissen.dk/fann/ FANN]: C++ | ||
** | ***[http://www.heatonresearch.com/encog Encog]: java | ||
* | ***[http://pybrain.org PyBrain]: python | ||
*** | ****[http://cran.r-project.org/web/packages/nnet/index.html nnet] R | ||
** | |||
* | |||
** | |||
** | |||
=== Volunteers === | === Volunteers === | ||
| Line 33: | Line 34: | ||
*Mike S | *Mike S | ||
=== Software === | === Software === | ||
| Line 42: | Line 42: | ||
*[http://torch5.sourceforge.net/manual/index.html Torch5] | *[http://torch5.sourceforge.net/manual/index.html Torch5] | ||
*[http://pynn.gforge.inria.fr/ PyNN] (Biophysical Neural Nets) | *[http://pynn.gforge.inria.fr/ PyNN] (Biophysical Neural Nets) | ||
*[http://cran.r-project.org/web/packages/nnet/index.html nnet] | |||
Revision as of 01:25, 8 January 2011
What: A hands-on workshop courtesy of the Machine Learning Group using Neural Networks that includes both the theory and practical implementation.
When: January 26, 2011 7:00pm - 10:00pm
Why: To raise Neural Network Awareness (NNA) and money for Noisebridge. Donations towards Noisebridge will be encouraged and appreciated.
Where: In the back classroom
Who: Anyone who wants to participate, either come and learn or help teach. Join the mailing list!. It won't be too heavy on the math, so don't worry if you knowledge of vector spaces and derivatives is a bit of a null set...
Workshop Overview, Resources
- What is a Neural Network?
- What does a real neural network in the brain look like?
- Differences between artificial neural nets and biological neural nets
- Basic architecture: layers of interconnected units
- Weights and activation functions: the actual computation
- What can Neural Networks do?
- Universal Function Approximators
- Classification: identifying classes of things
- Binary classification vs. multi-class classification
- Regression: predicting values from data
- How are neural networks trained?
- Backpropagation
- Let's write some code! Face or not a Face? Binary Classification with Neural Nets
Volunteers
Put your name down here to volunteer and contact Mike S for coordination:
- Mike S
Software
This is just a list of packages used for constructing and training neural networks: