├── .vscode └── settings.json ├── README.md ├── __pycache__ ├── arrow.cpython-36.pyc ├── input_block.cpython-36.pyc ├── main.cpython-36.pyc ├── menu.cpython-36.pyc ├── mode.cpython-36.pyc ├── test.cpython-36.pyc └── write_code.cpython-36.pyc ├── activation_function.png ├── arrow.py ├── brain_test.py ├── dest.pyc ├── dest1.pyc ├── gifs ├── 1_init.gif ├── 2_set_input.gif ├── 3_drag&drop.gif ├── 4_connect.gif ├── 5_connect_output.gif ├── 6_output_model.gif ├── 7_visbrain.gif └── 8_auto_code.gif ├── input_block.py ├── learning_rate.png ├── main.py ├── menu.py ├── mnist.data ├── t10k-images-idx3-ubyte.gz ├── t10k-labels-idx1-ubyte.gz ├── train-images-idx3-ubyte.gz └── train-labels-idx1-ubyte.gz ├── mnist_neural_net.png ├── mode.py ├── spike_neural_net.py ├── test.py ├── weight.npz └── write_code.py /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/arrow.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/__pycache__/arrow.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/input_block.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/__pycache__/input_block.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/main.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/__pycache__/main.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/menu.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/__pycache__/menu.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/mode.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/__pycache__/mode.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/test.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/__pycache__/test.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/write_code.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/__pycache__/write_code.cpython-36.pyc -------------------------------------------------------------------------------- /activation_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/activation_function.png -------------------------------------------------------------------------------- /arrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/arrow.py -------------------------------------------------------------------------------- /brain_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/brain_test.py -------------------------------------------------------------------------------- /dest.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/dest.pyc -------------------------------------------------------------------------------- /dest1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/dest1.pyc -------------------------------------------------------------------------------- /gifs/1_init.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/gifs/1_init.gif -------------------------------------------------------------------------------- /gifs/2_set_input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/gifs/2_set_input.gif -------------------------------------------------------------------------------- /gifs/3_drag&drop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/gifs/3_drag&drop.gif -------------------------------------------------------------------------------- /gifs/4_connect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/gifs/4_connect.gif -------------------------------------------------------------------------------- /gifs/5_connect_output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/gifs/5_connect_output.gif -------------------------------------------------------------------------------- /gifs/6_output_model.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/gifs/6_output_model.gif -------------------------------------------------------------------------------- /gifs/7_visbrain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/gifs/7_visbrain.gif -------------------------------------------------------------------------------- /gifs/8_auto_code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/gifs/8_auto_code.gif -------------------------------------------------------------------------------- /input_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/input_block.py -------------------------------------------------------------------------------- /learning_rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/learning_rate.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/main.py -------------------------------------------------------------------------------- /menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/menu.py -------------------------------------------------------------------------------- /mnist.data/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/mnist.data/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /mnist.data/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/mnist.data/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /mnist.data/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/mnist.data/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /mnist.data/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/mnist.data/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /mnist_neural_net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/mnist_neural_net.png -------------------------------------------------------------------------------- /mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/mode.py -------------------------------------------------------------------------------- /spike_neural_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/spike_neural_net.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/test.py -------------------------------------------------------------------------------- /weight.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/weight.npz -------------------------------------------------------------------------------- /write_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry4897/Mango/HEAD/write_code.py --------------------------------------------------------------------------------