ArtificialIntelligence
ArtificialIntelligence copied to clipboard
Simple NN exercises done to learn (and teach!) IA
ArtificialIntelligence
Experimenting with AI (Just some notes for me and my friends regarding AI.)
If you want to know what came after writing this simple examples check out this repo: myTensorflow
Demos:
- Simple Linear Regression
- Simple Linear Classification (1 neuron)
- Neural Network with a hidden layer using matrix formualtion, solving a xor
- Same as above but now all the layers implement a bias
- Same as 4 but generalized to support other training sets
- Adding minibatch to #4
- MNIST Hand written recognition, net structure: 784x15x10
To do:
- Make the samples more beautiful
- Learn more/keep adding demos