├── .gitignore ├── README.md ├── checkpoints └── readme.txt ├── dagan_trainer.py ├── dataset.py ├── datasets └── readme.txt ├── discriminator.py ├── generator.py ├── notebook.ipynb ├── resources ├── dagan_tracking_images.png └── dagan_training_progress.gif ├── train_dagan.py ├── train_omniglot_classifier.py └── utils ├── classifier_utils.py ├── gif_maker.py └── parser.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amurthy1/dagan_torch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amurthy1/dagan_torch/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/readme.txt: -------------------------------------------------------------------------------- 1 | Store intermediate model checkpoints here 2 | -------------------------------------------------------------------------------- /dagan_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amurthy1/dagan_torch/HEAD/dagan_trainer.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amurthy1/dagan_torch/HEAD/dataset.py -------------------------------------------------------------------------------- /datasets/readme.txt: -------------------------------------------------------------------------------- 1 | Store datasets here 2 | -------------------------------------------------------------------------------- /discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amurthy1/dagan_torch/HEAD/discriminator.py -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amurthy1/dagan_torch/HEAD/generator.py -------------------------------------------------------------------------------- /notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amurthy1/dagan_torch/HEAD/notebook.ipynb -------------------------------------------------------------------------------- /resources/dagan_tracking_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amurthy1/dagan_torch/HEAD/resources/dagan_tracking_images.png -------------------------------------------------------------------------------- /resources/dagan_training_progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amurthy1/dagan_torch/HEAD/resources/dagan_training_progress.gif -------------------------------------------------------------------------------- /train_dagan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amurthy1/dagan_torch/HEAD/train_dagan.py -------------------------------------------------------------------------------- /train_omniglot_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amurthy1/dagan_torch/HEAD/train_omniglot_classifier.py -------------------------------------------------------------------------------- /utils/classifier_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amurthy1/dagan_torch/HEAD/utils/classifier_utils.py -------------------------------------------------------------------------------- /utils/gif_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amurthy1/dagan_torch/HEAD/utils/gif_maker.py -------------------------------------------------------------------------------- /utils/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amurthy1/dagan_torch/HEAD/utils/parser.py --------------------------------------------------------------------------------