├── DEPICT.py ├── README.md ├── functions.py ├── matlab └── approaches │ ├── ac-mpi │ └── predict_ac_mpi.m │ └── common │ └── gactoolbox-master │ ├── LICENSE │ ├── README.md │ ├── compileMexFiles.m │ ├── gacCluster.m │ └── gacfiles │ ├── gacBuildDigraph.m │ ├── gacMerging.m │ ├── gacNNMerge.m │ ├── gacPathCondEntropy.m │ ├── gacPathEntropy.m │ ├── gacZetaCondEntropy.m │ └── gacZetaEntropy.m ├── results └── DEPICT │ └── params │ ├── params_MNIST-test_values_best.pickle │ └── predMNIST-test.pickle └── theano_config └── .theanorc /DEPICT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/DEPICT.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/README.md -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/functions.py -------------------------------------------------------------------------------- /matlab/approaches/ac-mpi/predict_ac_mpi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/matlab/approaches/ac-mpi/predict_ac_mpi.m -------------------------------------------------------------------------------- /matlab/approaches/common/gactoolbox-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/matlab/approaches/common/gactoolbox-master/LICENSE -------------------------------------------------------------------------------- /matlab/approaches/common/gactoolbox-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/matlab/approaches/common/gactoolbox-master/README.md -------------------------------------------------------------------------------- /matlab/approaches/common/gactoolbox-master/compileMexFiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/matlab/approaches/common/gactoolbox-master/compileMexFiles.m -------------------------------------------------------------------------------- /matlab/approaches/common/gactoolbox-master/gacCluster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/matlab/approaches/common/gactoolbox-master/gacCluster.m -------------------------------------------------------------------------------- /matlab/approaches/common/gactoolbox-master/gacfiles/gacBuildDigraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/matlab/approaches/common/gactoolbox-master/gacfiles/gacBuildDigraph.m -------------------------------------------------------------------------------- /matlab/approaches/common/gactoolbox-master/gacfiles/gacMerging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/matlab/approaches/common/gactoolbox-master/gacfiles/gacMerging.m -------------------------------------------------------------------------------- /matlab/approaches/common/gactoolbox-master/gacfiles/gacNNMerge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/matlab/approaches/common/gactoolbox-master/gacfiles/gacNNMerge.m -------------------------------------------------------------------------------- /matlab/approaches/common/gactoolbox-master/gacfiles/gacPathCondEntropy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/matlab/approaches/common/gactoolbox-master/gacfiles/gacPathCondEntropy.m -------------------------------------------------------------------------------- /matlab/approaches/common/gactoolbox-master/gacfiles/gacPathEntropy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/matlab/approaches/common/gactoolbox-master/gacfiles/gacPathEntropy.m -------------------------------------------------------------------------------- /matlab/approaches/common/gactoolbox-master/gacfiles/gacZetaCondEntropy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/matlab/approaches/common/gactoolbox-master/gacfiles/gacZetaCondEntropy.m -------------------------------------------------------------------------------- /matlab/approaches/common/gactoolbox-master/gacfiles/gacZetaEntropy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/matlab/approaches/common/gactoolbox-master/gacfiles/gacZetaEntropy.m -------------------------------------------------------------------------------- /results/DEPICT/params/params_MNIST-test_values_best.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/results/DEPICT/params/params_MNIST-test_values_best.pickle -------------------------------------------------------------------------------- /results/DEPICT/params/predMNIST-test.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/results/DEPICT/params/predMNIST-test.pickle -------------------------------------------------------------------------------- /theano_config/.theanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herandy/DEPICT/HEAD/theano_config/.theanorc --------------------------------------------------------------------------------