daniel-kurushin / formal-neyron

Very simple neuron example for students

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

formal-neyron

Very simple neuron example for students

This program is aided to demonstrate basics of neural networking...

Class Neuron can be "teached" to recognize pattern X with vector D. Inputs are 1/0, output 1/0.

One can change sigma or call methods to manipulate neuron functionality.

Possible tasks are:

D = [ [[1,1,0],0], [[0,1,1],1], [[1,1,0],0], ]

D = [ [[0,0,0],0], [[0,1,1],3], [[1,1,1],7], ]

Impossible task is: D = [ [[1,1],0], [[0,1],1], [[1,0],1], [[0,0],0], ]

About

Very simple neuron example for students

License:GNU General Public License v2.0


Languages

Language:Python 100.0%