├── .gitignore ├── BernoulliRBM.m ├── DBN.m ├── RBM.m ├── README.md ├── SoftmaxRBM.m ├── images ├── 0.gif ├── 1.gif ├── 2.gif ├── 3.gif ├── 4.gif ├── 5.gif ├── 6.gif ├── 7.gif ├── 8.gif └── 9.gif ├── logsig.m ├── mnist_example.m ├── mnist_uint8.mat └── softmax.m /.gitignore: -------------------------------------------------------------------------------- 1 | models/ 2 | -------------------------------------------------------------------------------- /BernoulliRBM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/BernoulliRBM.m -------------------------------------------------------------------------------- /DBN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/DBN.m -------------------------------------------------------------------------------- /RBM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/RBM.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/README.md -------------------------------------------------------------------------------- /SoftmaxRBM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/SoftmaxRBM.m -------------------------------------------------------------------------------- /images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/images/0.gif -------------------------------------------------------------------------------- /images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/images/1.gif -------------------------------------------------------------------------------- /images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/images/2.gif -------------------------------------------------------------------------------- /images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/images/3.gif -------------------------------------------------------------------------------- /images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/images/4.gif -------------------------------------------------------------------------------- /images/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/images/5.gif -------------------------------------------------------------------------------- /images/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/images/6.gif -------------------------------------------------------------------------------- /images/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/images/7.gif -------------------------------------------------------------------------------- /images/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/images/8.gif -------------------------------------------------------------------------------- /images/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/images/9.gif -------------------------------------------------------------------------------- /logsig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/logsig.m -------------------------------------------------------------------------------- /mnist_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/mnist_example.m -------------------------------------------------------------------------------- /mnist_uint8.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/mnist_uint8.mat -------------------------------------------------------------------------------- /softmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspurdy/dbn/HEAD/softmax.m --------------------------------------------------------------------------------