gitextract_3ffpn665/ ├── LICENSE ├── README.md ├── drawing_and_style_transfer/ │ ├── data/ │ │ ├── __init__.py │ │ ├── aligned_dataset.py │ │ ├── base_data_loader.py │ │ ├── base_dataset.py │ │ ├── image_folder.py │ │ ├── single_dataset.py │ │ └── unaligned_dataset.py │ ├── datasets/ │ │ ├── combine_A_and_B.py │ │ ├── download_cyclegan_dataset.sh │ │ └── make_dataset_aligned.py │ ├── environment.yml │ ├── models/ │ │ ├── __init__.py │ │ ├── autoencoder_model.py │ │ ├── base_model.py │ │ ├── networks.py │ │ ├── ost.py │ │ └── test_model.py │ ├── options/ │ │ ├── __init__.py │ │ ├── base_options.py │ │ ├── test_options.py │ │ └── train_options.py │ ├── scripts/ │ │ ├── test_ost.sh │ │ ├── train_autoencoder.sh │ │ └── train_ost.sh │ ├── test.py │ ├── train.py │ └── util/ │ ├── __init__.py │ ├── get_data.py │ ├── html.py │ ├── image_pool.py │ ├── util.py │ └── visualizer.py └── mnist_to_svhn/ ├── data_loader.py ├── download.sh ├── main_autoencoder.py ├── main_mnist_to_svhn.py ├── main_svhn_to_mnist.py ├── model.py ├── solver_autoencoder.py ├── solver_mnist_to_svhn.py └── solver_svhn_to_mnist.py