├── .gitignore ├── LICENSE ├── README.md ├── config.h ├── demo.gif ├── main.c └── make-gif.sh /.gitignore: -------------------------------------------------------------------------------- 1 | main 2 | data/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/perceptron/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/perceptron/HEAD/README.md -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/perceptron/HEAD/config.h -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/perceptron/HEAD/demo.gif -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/perceptron/HEAD/main.c -------------------------------------------------------------------------------- /make-gif.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/perceptron/HEAD/make-gif.sh --------------------------------------------------------------------------------