├── .gitignore ├── LICENSE.txt ├── README.md ├── anim.sh ├── board.sh ├── circle.yml ├── clean.ch ├── data └── dsprites_ndarray_co1sh3sc6or40x32y32_64x64.npz ├── data_manager.py ├── data_manager_test.py ├── disentangle_anim ├── anim_z0.gif ├── anim_z1.gif ├── anim_z2.gif ├── anim_z3.gif ├── anim_z4.gif ├── anim_z5.gif ├── anim_z6.gif ├── anim_z7.gif ├── anim_z8.gif └── anim_z9.gif ├── main.py ├── model.py ├── model_test.py └── reconstr_img ├── org_0.png ├── org_1.png ├── org_2.png ├── org_3.png ├── org_4.png ├── org_5.png ├── org_6.png ├── org_7.png ├── org_8.png ├── org_9.png ├── reconstr_0.png ├── reconstr_1.png ├── reconstr_2.png ├── reconstr_3.png ├── reconstr_4.png ├── reconstr_5.png ├── reconstr_6.png ├── reconstr_7.png ├── reconstr_8.png └── reconstr_9.png /.gitignore: -------------------------------------------------------------------------------- 1 | checkpoints*/* 2 | *.pyc 3 | log/* 4 | disentangle_img 5 | 6 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/README.md -------------------------------------------------------------------------------- /anim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/anim.sh -------------------------------------------------------------------------------- /board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | tensorboard --logdir ./log 4 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/circle.yml -------------------------------------------------------------------------------- /clean.ch: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm checkpoints/* 4 | rm log/* -------------------------------------------------------------------------------- /data/dsprites_ndarray_co1sh3sc6or40x32y32_64x64.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/data/dsprites_ndarray_co1sh3sc6or40x32y32_64x64.npz -------------------------------------------------------------------------------- /data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/data_manager.py -------------------------------------------------------------------------------- /data_manager_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/data_manager_test.py -------------------------------------------------------------------------------- /disentangle_anim/anim_z0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/disentangle_anim/anim_z0.gif -------------------------------------------------------------------------------- /disentangle_anim/anim_z1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/disentangle_anim/anim_z1.gif -------------------------------------------------------------------------------- /disentangle_anim/anim_z2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/disentangle_anim/anim_z2.gif -------------------------------------------------------------------------------- /disentangle_anim/anim_z3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/disentangle_anim/anim_z3.gif -------------------------------------------------------------------------------- /disentangle_anim/anim_z4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/disentangle_anim/anim_z4.gif -------------------------------------------------------------------------------- /disentangle_anim/anim_z5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/disentangle_anim/anim_z5.gif -------------------------------------------------------------------------------- /disentangle_anim/anim_z6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/disentangle_anim/anim_z6.gif -------------------------------------------------------------------------------- /disentangle_anim/anim_z7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/disentangle_anim/anim_z7.gif -------------------------------------------------------------------------------- /disentangle_anim/anim_z8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/disentangle_anim/anim_z8.gif -------------------------------------------------------------------------------- /disentangle_anim/anim_z9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/disentangle_anim/anim_z9.gif -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/model.py -------------------------------------------------------------------------------- /model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/model_test.py -------------------------------------------------------------------------------- /reconstr_img/org_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/org_0.png -------------------------------------------------------------------------------- /reconstr_img/org_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/org_1.png -------------------------------------------------------------------------------- /reconstr_img/org_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/org_2.png -------------------------------------------------------------------------------- /reconstr_img/org_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/org_3.png -------------------------------------------------------------------------------- /reconstr_img/org_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/org_4.png -------------------------------------------------------------------------------- /reconstr_img/org_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/org_5.png -------------------------------------------------------------------------------- /reconstr_img/org_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/org_6.png -------------------------------------------------------------------------------- /reconstr_img/org_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/org_7.png -------------------------------------------------------------------------------- /reconstr_img/org_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/org_8.png -------------------------------------------------------------------------------- /reconstr_img/org_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/org_9.png -------------------------------------------------------------------------------- /reconstr_img/reconstr_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/reconstr_0.png -------------------------------------------------------------------------------- /reconstr_img/reconstr_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/reconstr_1.png -------------------------------------------------------------------------------- /reconstr_img/reconstr_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/reconstr_2.png -------------------------------------------------------------------------------- /reconstr_img/reconstr_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/reconstr_3.png -------------------------------------------------------------------------------- /reconstr_img/reconstr_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/reconstr_4.png -------------------------------------------------------------------------------- /reconstr_img/reconstr_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/reconstr_5.png -------------------------------------------------------------------------------- /reconstr_img/reconstr_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/reconstr_6.png -------------------------------------------------------------------------------- /reconstr_img/reconstr_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/reconstr_7.png -------------------------------------------------------------------------------- /reconstr_img/reconstr_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/reconstr_8.png -------------------------------------------------------------------------------- /reconstr_img/reconstr_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyosuda/disentangled_vae/HEAD/reconstr_img/reconstr_9.png --------------------------------------------------------------------------------