Skip to content

Releases: cazala/synaptic-workshop

Trainer

13 Feb 22:12
Compare
Choose a tag to compare

This section teaches how to use synaptic's Trainer to simplify the way the network is trained

Start

13 Feb 22:11
Compare
Choose a tag to compare

This is the starting point, basically this is the result of just running npm init && npm install synaptic mnist --save

Neuron

13 Feb 22:11
Compare
Choose a tag to compare

This section teaches how to connect two neurons and teach one of them to output 1 when the other one outputs 0

Network

13 Feb 22:12
Compare
Choose a tag to compare

This section teaches how to build a feed-forward network and teach it to solve an XOR

MNIST

13 Feb 22:13
Compare
Choose a tag to compare

This section takes the network built over the last sections and teaches it to read handwritten digits by using the MNIST dataset

Layer

13 Feb 22:12
Compare
Choose a tag to compare

This section teaches how to connect two layers of neurons, and teach them to solve an AND gate

Architect

13 Feb 22:13
Compare
Choose a tag to compare

This section teaches how to use synaptic's Architect to simplify the way the network is built