├── .gitignore ├── Dataset.py ├── Figures ├── .DS_Store ├── Figure1.pdf ├── Figure1.svg ├── Figure2.pdf ├── Figure2.svg ├── Figure3.pdf ├── Figure3.svg ├── Figure4.pdf ├── Figure4.svg ├── Figure5.pdf ├── Figure5.svg └── networks │ └── .DS_Store ├── ModelState.py ├── Network.py ├── README.md ├── cifar.py ├── fig2_network_performance.py ├── fig3_unit_taxonomy.py ├── fig4_lesion_study.py ├── fig5_cifar10_exp.py ├── functions.py ├── helper.py ├── mnist.py ├── models ├── .DS_Store └── patterns_rev │ └── seeded_mnist │ └── .gitignore ├── paper_results.ipynb ├── plot.py ├── requirements.txt ├── results.sh ├── supplement.py ├── test.py ├── train.py └── train_models.py /.gitignore: -------------------------------------------------------------------------------- 1 | models/patterns_rev/seeded_mnist/* 2 | -------------------------------------------------------------------------------- /Dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/Dataset.py -------------------------------------------------------------------------------- /Figures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/Figures/.DS_Store -------------------------------------------------------------------------------- /Figures/Figure1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/Figures/Figure1.pdf -------------------------------------------------------------------------------- /Figures/Figure1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/Figures/Figure1.svg -------------------------------------------------------------------------------- /Figures/Figure2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/Figures/Figure2.pdf -------------------------------------------------------------------------------- /Figures/Figure2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/Figures/Figure2.svg -------------------------------------------------------------------------------- /Figures/Figure3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/Figures/Figure3.pdf -------------------------------------------------------------------------------- /Figures/Figure3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/Figures/Figure3.svg -------------------------------------------------------------------------------- /Figures/Figure4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/Figures/Figure4.pdf -------------------------------------------------------------------------------- /Figures/Figure4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/Figures/Figure4.svg -------------------------------------------------------------------------------- /Figures/Figure5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/Figures/Figure5.pdf -------------------------------------------------------------------------------- /Figures/Figure5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/Figures/Figure5.svg -------------------------------------------------------------------------------- /Figures/networks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/Figures/networks/.DS_Store -------------------------------------------------------------------------------- /ModelState.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/ModelState.py -------------------------------------------------------------------------------- /Network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/Network.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/README.md -------------------------------------------------------------------------------- /cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/cifar.py -------------------------------------------------------------------------------- /fig2_network_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/fig2_network_performance.py -------------------------------------------------------------------------------- /fig3_unit_taxonomy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/fig3_unit_taxonomy.py -------------------------------------------------------------------------------- /fig4_lesion_study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/fig4_lesion_study.py -------------------------------------------------------------------------------- /fig5_cifar10_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/fig5_cifar10_exp.py -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/functions.py -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/helper.py -------------------------------------------------------------------------------- /mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/mnist.py -------------------------------------------------------------------------------- /models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/models/.DS_Store -------------------------------------------------------------------------------- /models/patterns_rev/seeded_mnist/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paper_results.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/paper_results.ipynb -------------------------------------------------------------------------------- /plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/plot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/requirements.txt -------------------------------------------------------------------------------- /results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/results.sh -------------------------------------------------------------------------------- /supplement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/supplement.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/train.py -------------------------------------------------------------------------------- /train_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KietzmannLab/EmergentPredictiveCoding/HEAD/train_models.py --------------------------------------------------------------------------------