├── README.md ├── README.orig.md ├── mnist └── mnist.go ├── neural ├── hardtanh.go ├── hardtanh_test.go ├── layer.go ├── layer_test.go ├── linear.go └── linear_test.go ├── old └── neural.go └── xor └── xor.go /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schuyler/neural-go/HEAD/README.md -------------------------------------------------------------------------------- /README.orig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schuyler/neural-go/HEAD/README.orig.md -------------------------------------------------------------------------------- /mnist/mnist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schuyler/neural-go/HEAD/mnist/mnist.go -------------------------------------------------------------------------------- /neural/hardtanh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schuyler/neural-go/HEAD/neural/hardtanh.go -------------------------------------------------------------------------------- /neural/hardtanh_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schuyler/neural-go/HEAD/neural/hardtanh_test.go -------------------------------------------------------------------------------- /neural/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schuyler/neural-go/HEAD/neural/layer.go -------------------------------------------------------------------------------- /neural/layer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schuyler/neural-go/HEAD/neural/layer_test.go -------------------------------------------------------------------------------- /neural/linear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schuyler/neural-go/HEAD/neural/linear.go -------------------------------------------------------------------------------- /neural/linear_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schuyler/neural-go/HEAD/neural/linear_test.go -------------------------------------------------------------------------------- /old/neural.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schuyler/neural-go/HEAD/old/neural.go -------------------------------------------------------------------------------- /xor/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schuyler/neural-go/HEAD/xor/xor.go --------------------------------------------------------------------------------