├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── animalai.gif ├── architecture.png ├── dsprites.gif ├── graphs ├── __init__.py ├── generate_traversals.py ├── reconstructions_plot.py └── stats_plot.py ├── requirements.txt ├── src ├── __init__.py ├── causal_model.py ├── game_environment.py ├── mcts.py ├── torchloss.py ├── torchloss_causal.py ├── torchmodel.py ├── torchutils.py ├── util.py └── util_causal.py ├── test_demo.py ├── train.py └── train_causal.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/README.md -------------------------------------------------------------------------------- /animalai.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/animalai.gif -------------------------------------------------------------------------------- /architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/architecture.png -------------------------------------------------------------------------------- /dsprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/dsprites.gif -------------------------------------------------------------------------------- /graphs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphs/generate_traversals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/graphs/generate_traversals.py -------------------------------------------------------------------------------- /graphs/reconstructions_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/graphs/reconstructions_plot.py -------------------------------------------------------------------------------- /graphs/stats_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/graphs/stats_plot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | matplotlib 3 | scipy 4 | tensorflow-gpu>=2.0.0 5 | opencv-python 6 | -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/causal_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/src/causal_model.py -------------------------------------------------------------------------------- /src/game_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/src/game_environment.py -------------------------------------------------------------------------------- /src/mcts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/src/mcts.py -------------------------------------------------------------------------------- /src/torchloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/src/torchloss.py -------------------------------------------------------------------------------- /src/torchloss_causal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/src/torchloss_causal.py -------------------------------------------------------------------------------- /src/torchmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/src/torchmodel.py -------------------------------------------------------------------------------- /src/torchutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/src/torchutils.py -------------------------------------------------------------------------------- /src/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/src/util.py -------------------------------------------------------------------------------- /src/util_causal.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/test_demo.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/train.py -------------------------------------------------------------------------------- /train_causal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfountas/deep-active-inference-mc/HEAD/train_causal.py --------------------------------------------------------------------------------