├── .flake8 ├── .gitignore ├── LICENSE ├── README.md ├── experiments └── .gitkeep ├── images ├── demonstrative_figure.png └── sparsity.png ├── requirements.txt ├── scripts ├── gen_pinwheel_small.sh └── pinwheel.m └── src ├── analyse.py ├── distributions ├── __init__.py ├── normal_mixture.py └── sparse.py ├── experimental_settings ├── clustering.sh ├── independance.sh └── sparsity.sh ├── main.py ├── metrics.py ├── models ├── __init__.py ├── datasets.py ├── vae.py ├── vae_dsprites.py ├── vae_fashion_mnist.py └── vae_pinwheel.py ├── objectives.py ├── regularisers.py ├── utils.py └── vis.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/README.md -------------------------------------------------------------------------------- /experiments/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/demonstrative_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/images/demonstrative_figure.png -------------------------------------------------------------------------------- /images/sparsity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/images/sparsity.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/gen_pinwheel_small.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/scripts/gen_pinwheel_small.sh -------------------------------------------------------------------------------- /scripts/pinwheel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/scripts/pinwheel.m -------------------------------------------------------------------------------- /src/analyse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/analyse.py -------------------------------------------------------------------------------- /src/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/distributions/normal_mixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/distributions/normal_mixture.py -------------------------------------------------------------------------------- /src/distributions/sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/distributions/sparse.py -------------------------------------------------------------------------------- /src/experimental_settings/clustering.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/experimental_settings/clustering.sh -------------------------------------------------------------------------------- /src/experimental_settings/independance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/experimental_settings/independance.sh -------------------------------------------------------------------------------- /src/experimental_settings/sparsity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/experimental_settings/sparsity.sh -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/main.py -------------------------------------------------------------------------------- /src/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/metrics.py -------------------------------------------------------------------------------- /src/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/models/__init__.py -------------------------------------------------------------------------------- /src/models/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/models/datasets.py -------------------------------------------------------------------------------- /src/models/vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/models/vae.py -------------------------------------------------------------------------------- /src/models/vae_dsprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/models/vae_dsprites.py -------------------------------------------------------------------------------- /src/models/vae_fashion_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/models/vae_fashion_mnist.py -------------------------------------------------------------------------------- /src/models/vae_pinwheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/models/vae_pinwheel.py -------------------------------------------------------------------------------- /src/objectives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/objectives.py -------------------------------------------------------------------------------- /src/regularisers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/regularisers.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffsid/disentangling-disentanglement/HEAD/src/vis.py --------------------------------------------------------------------------------