├── .gitignore ├── Autograd_sample.py ├── CMakeLists.txt ├── LICENSE ├── README.md ├── dynamic_graph.py ├── graph.md ├── include ├── Layer.h ├── Mat.h ├── Matrix.h └── Tensor.h ├── log └── plan.md ├── src ├── Layer.cpp ├── Matrix.cpp └── Tensor.cpp ├── static_graph.py └── test.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/.gitignore -------------------------------------------------------------------------------- /Autograd_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/Autograd_sample.py -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/README.md -------------------------------------------------------------------------------- /dynamic_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/dynamic_graph.py -------------------------------------------------------------------------------- /graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/graph.md -------------------------------------------------------------------------------- /include/Layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/include/Layer.h -------------------------------------------------------------------------------- /include/Mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/include/Mat.h -------------------------------------------------------------------------------- /include/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/include/Matrix.h -------------------------------------------------------------------------------- /include/Tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/include/Tensor.h -------------------------------------------------------------------------------- /log/plan.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/src/Layer.cpp -------------------------------------------------------------------------------- /src/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/src/Matrix.cpp -------------------------------------------------------------------------------- /src/Tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/src/Tensor.cpp -------------------------------------------------------------------------------- /static_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/static_graph.py -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arctanxy/ToyNet/HEAD/test.cpp --------------------------------------------------------------------------------