├── .gitignore ├── FAQ.md ├── README.md ├── aicrowd.json ├── aicrowd_helpers.py ├── apt.txt ├── evaluate.py ├── extra_metrics_configs └── irs.gin ├── local_evaluation.py ├── numpy └── train_numpy.py ├── pytorch └── train_pytorch.py ├── requirements.txt ├── requirements_nogpu.txt ├── run.sh ├── runtime.txt ├── scratch ├── .gitkeep ├── dataset │ └── .gitkeep └── shared │ └── .gitkeep ├── tensorflow ├── model.gin ├── postprocess.gin └── train_tensorflow.py ├── train_environ.sh ├── utils_numpy.py └── utils_pytorch.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/.gitignore -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/FAQ.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/README.md -------------------------------------------------------------------------------- /aicrowd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/aicrowd.json -------------------------------------------------------------------------------- /aicrowd_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/aicrowd_helpers.py -------------------------------------------------------------------------------- /apt.txt: -------------------------------------------------------------------------------- 1 | curl 2 | gcc 3 | git 4 | vim 5 | ssh 6 | -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/evaluate.py -------------------------------------------------------------------------------- /extra_metrics_configs/irs.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/extra_metrics_configs/irs.gin -------------------------------------------------------------------------------- /local_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/local_evaluation.py -------------------------------------------------------------------------------- /numpy/train_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/numpy/train_numpy.py -------------------------------------------------------------------------------- /pytorch/train_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/pytorch/train_pytorch.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_nogpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/requirements_nogpu.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/run.sh -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6 2 | -------------------------------------------------------------------------------- /scratch/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scratch/dataset/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scratch/shared/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/model.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/tensorflow/model.gin -------------------------------------------------------------------------------- /tensorflow/postprocess.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/tensorflow/postprocess.gin -------------------------------------------------------------------------------- /tensorflow/train_tensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/tensorflow/train_tensorflow.py -------------------------------------------------------------------------------- /train_environ.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/train_environ.sh -------------------------------------------------------------------------------- /utils_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/utils_numpy.py -------------------------------------------------------------------------------- /utils_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/neurips2019_disentanglement_challenge_starter_kit/HEAD/utils_pytorch.py --------------------------------------------------------------------------------