├── LICENSE ├── README.md ├── checkpoints └── experiment_name │ └── opt.txt ├── data ├── __init__.py ├── __init__.pyc ├── aligned_dataset.py ├── base_data_loader.py ├── base_data_loader.pyc ├── base_dataset.py ├── base_dataset.pyc ├── custom_dataset_data_loader.py ├── custom_dataset_data_loader.pyc ├── data_loader.py ├── data_loader.pyc ├── depth_dataset.py ├── depth_dataset.pyc ├── depth_dataset_old.py ├── image_folder.py ├── image_folder.pyc ├── single_dataset.py ├── unaligned_dataset.py └── unaligned_dataset.pyc ├── models ├── __init__.py ├── __init__.pyc ├── base_model.py ├── base_model.pyc ├── cycle_gan_model.py ├── cycle_gan_model.pyc ├── debug.py ├── debug.pyc ├── disentangled_LB.py ├── disentangled_LB.pyc ├── disentangled_LB_old.py ├── disentangled_LB_old.pyc ├── disentangled_extra.py ├── disentangled_extra.pyc ├── disentangled_final.py ├── disentangled_final.pyc ├── disentangled_model.py ├── disentangled_model.pyc ├── disentangled_model2.py ├── disentangled_model2.pyc ├── disentangled_multi.py ├── disentangled_multi.pyc ├── models.py ├── models.pyc ├── networks.py ├── networks.pyc ├── networks_16.py ├── networks_old.py ├── networks_old.pyc ├── pix2pix_model.py ├── recon_content_model.py ├── recon_content_model.pyc ├── recon_model.py ├── recon_model.pyc ├── recon_model2.py ├── test_model.py ├── vgg16.py ├── vgg16.pyc └── vgg16.weight ├── options ├── __init__.py ├── __init__.pyc ├── base_options.py ├── base_options.pyc ├── test_options.py ├── test_options.pyc ├── train_options.py └── train_options.pyc ├── scripts ├── batch_local.sh ├── batch_local2.sh ├── cycle_gan.sh ├── cycle_gan_local.sh ├── cycle_gan_multigpu.sh ├── cycle_nolsgan.sh ├── debug.sh ├── disentangled.sh ├── disentangled2_resnet.sh ├── disentangledLB_filter.sh ├── disentangledLB_filter_local.sh ├── disentangledLB_multi_local.sh ├── disentangledLB_old.sh ├── disentangledLB_resnet.sh ├── disentangledLB_resnet_local.sh ├── disentangledLB_separate.sh ├── disentangledUnet_local.sh ├── disentangled_extra_local.sh ├── disentangled_final.sh ├── disentangled_final_local.sh ├── disentangled_nyu_local.sh ├── disentangled_resnet.sh ├── disentangled_resnet_local.sh ├── evaluate_all1.sh ├── evaluate_all2.sh ├── log1.txt ├── log10.txt ├── log11.txt ├── log12.txt ├── log13.txt ├── log14.txt ├── log15.txt ├── log16.txt ├── log17.txt ├── log18.txt ├── log19.txt ├── log2.txt ├── log20.txt ├── log21.txt ├── log22.txt ├── log23.txt ├── log24.txt ├── log25.txt ├── log26.txt ├── log27.txt ├── log28.txt ├── log29.txt ├── log3.txt ├── log30.txt ├── log31.txt ├── log32.txt ├── log33.txt ├── log34.txt ├── log35.txt ├── log36.txt ├── log37.txt ├── log38.txt ├── log39.txt ├── log4.txt ├── log40.txt ├── log41.txt ├── log42.txt ├── log43.txt ├── log44.txt ├── log45.txt ├── log46.txt ├── log47.txt ├── log48.txt ├── log49.txt ├── log5.txt ├── log50.txt ├── log51.txt ├── log52.txt ├── log53.txt ├── log54.txt ├── log55.txt ├── log56.txt ├── log57.txt ├── log58.txt ├── log59.txt ├── log6.txt ├── log60.txt ├── log61.txt ├── log62.txt ├── log63.txt ├── log64.txt ├── log65.txt ├── log66.txt ├── log67.txt ├── log68.txt ├── log69.txt ├── log7.txt ├── log70.txt ├── log71.txt ├── log72.txt ├── log73.txt ├── log74.txt ├── log75.txt ├── log76.txt ├── log77.txt ├── log78.txt ├── log79.txt ├── log8.txt ├── log80.txt ├── log81.txt ├── log82.txt ├── log83.txt ├── log84.txt ├── log85.txt ├── log86.txt ├── log87.txt ├── log9.txt ├── log_old │ ├── log1.txt │ ├── log2.txt │ ├── log3.txt │ ├── log4.txt │ ├── log5.txt │ ├── log6.txt │ └── log7.txt ├── recon10_gan.sh ├── recon10_resnet_gan.sh ├── recon_cont_gan.sh ├── recon_gan.sh ├── recon_resnet_gan.sh ├── reconcont_resnet_gan.sh ├── test.sh ├── test_cyclegan.sh ├── test_pix2pix.sh ├── test_single.sh ├── train_cyclegan.sh └── train_pix2pix.sh ├── test.py ├── tools ├── DehazeNet_main.m ├── check_depth_distrib.py ├── check_eval.py ├── dcp_main.m ├── deltaE2000.m ├── demo │ ├── app │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── templates │ │ │ ├── Check_evaluation_disentangled_shuffle_resnet_9blocks_sigmoid_A100_TV1_lr0.0002.html │ │ │ ├── Dehaze_disentangled_shuffle_resnet_9blocks_sigmoid_A100_TV1_lr0.0002.html │ │ │ └── Transmition_disentangled_shuffle_resnet_9blocks_sigmoid_A100_TV1_lr0.0002.html │ │ ├── views.py │ │ └── views.pyc │ └── run.py ├── download_result.sh ├── evaluation.m ├── evaluation_server.m ├── get_free_depth.py ├── log71.txt ├── log72.txt ├── log73.txt ├── log74.txt ├── log75.txt ├── log76.txt ├── log81.txt ├── log82.txt ├── post_process.py ├── receptive_field_size.m ├── sigma_filter.py ├── sigma_filter.pyc ├── upload_result.sh └── visualize.py ├── train.py └── util ├── __init__.py ├── __init__.pyc ├── get_data.py ├── html.py ├── html.pyc ├── image_pool.py ├── image_pool.pyc ├── png.py ├── synthesize.pyc ├── util.py ├── util.pyc ├── visualizer.py └── visualizer.pyc /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/experiment_name/opt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/checkpoints/experiment_name/opt.txt -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/__init__.pyc -------------------------------------------------------------------------------- /data/aligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/aligned_dataset.py -------------------------------------------------------------------------------- /data/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/base_data_loader.py -------------------------------------------------------------------------------- /data/base_data_loader.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/base_data_loader.pyc -------------------------------------------------------------------------------- /data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/base_dataset.py -------------------------------------------------------------------------------- /data/base_dataset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/base_dataset.pyc -------------------------------------------------------------------------------- /data/custom_dataset_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/custom_dataset_data_loader.py -------------------------------------------------------------------------------- /data/custom_dataset_data_loader.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/custom_dataset_data_loader.pyc -------------------------------------------------------------------------------- /data/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/data_loader.py -------------------------------------------------------------------------------- /data/data_loader.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/data_loader.pyc -------------------------------------------------------------------------------- /data/depth_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/depth_dataset.py -------------------------------------------------------------------------------- /data/depth_dataset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/depth_dataset.pyc -------------------------------------------------------------------------------- /data/depth_dataset_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/depth_dataset_old.py -------------------------------------------------------------------------------- /data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/image_folder.py -------------------------------------------------------------------------------- /data/image_folder.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/image_folder.pyc -------------------------------------------------------------------------------- /data/single_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/single_dataset.py -------------------------------------------------------------------------------- /data/unaligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/unaligned_dataset.py -------------------------------------------------------------------------------- /data/unaligned_dataset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/data/unaligned_dataset.pyc -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/__init__.pyc -------------------------------------------------------------------------------- /models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/base_model.py -------------------------------------------------------------------------------- /models/base_model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/base_model.pyc -------------------------------------------------------------------------------- /models/cycle_gan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/cycle_gan_model.py -------------------------------------------------------------------------------- /models/cycle_gan_model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/cycle_gan_model.pyc -------------------------------------------------------------------------------- /models/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/debug.py -------------------------------------------------------------------------------- /models/debug.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/debug.pyc -------------------------------------------------------------------------------- /models/disentangled_LB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/disentangled_LB.py -------------------------------------------------------------------------------- /models/disentangled_LB.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/disentangled_LB.pyc -------------------------------------------------------------------------------- /models/disentangled_LB_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/disentangled_LB_old.py -------------------------------------------------------------------------------- /models/disentangled_LB_old.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/disentangled_LB_old.pyc -------------------------------------------------------------------------------- /models/disentangled_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/disentangled_extra.py -------------------------------------------------------------------------------- /models/disentangled_extra.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/disentangled_extra.pyc -------------------------------------------------------------------------------- /models/disentangled_final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/disentangled_final.py -------------------------------------------------------------------------------- /models/disentangled_final.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/disentangled_final.pyc -------------------------------------------------------------------------------- /models/disentangled_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/disentangled_model.py -------------------------------------------------------------------------------- /models/disentangled_model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/disentangled_model.pyc -------------------------------------------------------------------------------- /models/disentangled_model2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/disentangled_model2.py -------------------------------------------------------------------------------- /models/disentangled_model2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/disentangled_model2.pyc -------------------------------------------------------------------------------- /models/disentangled_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/disentangled_multi.py -------------------------------------------------------------------------------- /models/disentangled_multi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/disentangled_multi.pyc -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/models.py -------------------------------------------------------------------------------- /models/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/models.pyc -------------------------------------------------------------------------------- /models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/networks.py -------------------------------------------------------------------------------- /models/networks.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/networks.pyc -------------------------------------------------------------------------------- /models/networks_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/networks_16.py -------------------------------------------------------------------------------- /models/networks_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/networks_old.py -------------------------------------------------------------------------------- /models/networks_old.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/networks_old.pyc -------------------------------------------------------------------------------- /models/pix2pix_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/pix2pix_model.py -------------------------------------------------------------------------------- /models/recon_content_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/recon_content_model.py -------------------------------------------------------------------------------- /models/recon_content_model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/recon_content_model.pyc -------------------------------------------------------------------------------- /models/recon_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/recon_model.py -------------------------------------------------------------------------------- /models/recon_model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/recon_model.pyc -------------------------------------------------------------------------------- /models/recon_model2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/recon_model2.py -------------------------------------------------------------------------------- /models/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/test_model.py -------------------------------------------------------------------------------- /models/vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/vgg16.py -------------------------------------------------------------------------------- /models/vgg16.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/vgg16.pyc -------------------------------------------------------------------------------- /models/vgg16.weight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/models/vgg16.weight -------------------------------------------------------------------------------- /options/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /options/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/options/__init__.pyc -------------------------------------------------------------------------------- /options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/options/base_options.py -------------------------------------------------------------------------------- /options/base_options.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/options/base_options.pyc -------------------------------------------------------------------------------- /options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/options/test_options.py -------------------------------------------------------------------------------- /options/test_options.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/options/test_options.pyc -------------------------------------------------------------------------------- /options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/options/train_options.py -------------------------------------------------------------------------------- /options/train_options.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/options/train_options.pyc -------------------------------------------------------------------------------- /scripts/batch_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/batch_local.sh -------------------------------------------------------------------------------- /scripts/batch_local2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/batch_local2.sh -------------------------------------------------------------------------------- /scripts/cycle_gan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/cycle_gan.sh -------------------------------------------------------------------------------- /scripts/cycle_gan_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/cycle_gan_local.sh -------------------------------------------------------------------------------- /scripts/cycle_gan_multigpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/cycle_gan_multigpu.sh -------------------------------------------------------------------------------- /scripts/cycle_nolsgan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/cycle_nolsgan.sh -------------------------------------------------------------------------------- /scripts/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/debug.sh -------------------------------------------------------------------------------- /scripts/disentangled.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangled.sh -------------------------------------------------------------------------------- /scripts/disentangled2_resnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangled2_resnet.sh -------------------------------------------------------------------------------- /scripts/disentangledLB_filter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangledLB_filter.sh -------------------------------------------------------------------------------- /scripts/disentangledLB_filter_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangledLB_filter_local.sh -------------------------------------------------------------------------------- /scripts/disentangledLB_multi_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangledLB_multi_local.sh -------------------------------------------------------------------------------- /scripts/disentangledLB_old.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangledLB_old.sh -------------------------------------------------------------------------------- /scripts/disentangledLB_resnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangledLB_resnet.sh -------------------------------------------------------------------------------- /scripts/disentangledLB_resnet_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangledLB_resnet_local.sh -------------------------------------------------------------------------------- /scripts/disentangledLB_separate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangledLB_separate.sh -------------------------------------------------------------------------------- /scripts/disentangledUnet_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangledUnet_local.sh -------------------------------------------------------------------------------- /scripts/disentangled_extra_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangled_extra_local.sh -------------------------------------------------------------------------------- /scripts/disentangled_final.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangled_final.sh -------------------------------------------------------------------------------- /scripts/disentangled_final_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangled_final_local.sh -------------------------------------------------------------------------------- /scripts/disentangled_nyu_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangled_nyu_local.sh -------------------------------------------------------------------------------- /scripts/disentangled_resnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangled_resnet.sh -------------------------------------------------------------------------------- /scripts/disentangled_resnet_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/disentangled_resnet_local.sh -------------------------------------------------------------------------------- /scripts/evaluate_all1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/evaluate_all1.sh -------------------------------------------------------------------------------- /scripts/evaluate_all2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/evaluate_all2.sh -------------------------------------------------------------------------------- /scripts/log1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log1.txt -------------------------------------------------------------------------------- /scripts/log10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log10.txt -------------------------------------------------------------------------------- /scripts/log11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log11.txt -------------------------------------------------------------------------------- /scripts/log12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log12.txt -------------------------------------------------------------------------------- /scripts/log13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log13.txt -------------------------------------------------------------------------------- /scripts/log14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log14.txt -------------------------------------------------------------------------------- /scripts/log15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log15.txt -------------------------------------------------------------------------------- /scripts/log16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log16.txt -------------------------------------------------------------------------------- /scripts/log17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log17.txt -------------------------------------------------------------------------------- /scripts/log18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log18.txt -------------------------------------------------------------------------------- /scripts/log19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log19.txt -------------------------------------------------------------------------------- /scripts/log2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log2.txt -------------------------------------------------------------------------------- /scripts/log20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log20.txt -------------------------------------------------------------------------------- /scripts/log21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log21.txt -------------------------------------------------------------------------------- /scripts/log22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log22.txt -------------------------------------------------------------------------------- /scripts/log23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log23.txt -------------------------------------------------------------------------------- /scripts/log24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log24.txt -------------------------------------------------------------------------------- /scripts/log25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log25.txt -------------------------------------------------------------------------------- /scripts/log26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log26.txt -------------------------------------------------------------------------------- /scripts/log27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log27.txt -------------------------------------------------------------------------------- /scripts/log28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log28.txt -------------------------------------------------------------------------------- /scripts/log29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log29.txt -------------------------------------------------------------------------------- /scripts/log3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log3.txt -------------------------------------------------------------------------------- /scripts/log30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log30.txt -------------------------------------------------------------------------------- /scripts/log31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log31.txt -------------------------------------------------------------------------------- /scripts/log32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log32.txt -------------------------------------------------------------------------------- /scripts/log33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log33.txt -------------------------------------------------------------------------------- /scripts/log34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log34.txt -------------------------------------------------------------------------------- /scripts/log35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log35.txt -------------------------------------------------------------------------------- /scripts/log36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log36.txt -------------------------------------------------------------------------------- /scripts/log37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log37.txt -------------------------------------------------------------------------------- /scripts/log38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log38.txt -------------------------------------------------------------------------------- /scripts/log39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log39.txt -------------------------------------------------------------------------------- /scripts/log4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log4.txt -------------------------------------------------------------------------------- /scripts/log40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log40.txt -------------------------------------------------------------------------------- /scripts/log41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log41.txt -------------------------------------------------------------------------------- /scripts/log42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log42.txt -------------------------------------------------------------------------------- /scripts/log43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log43.txt -------------------------------------------------------------------------------- /scripts/log44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log44.txt -------------------------------------------------------------------------------- /scripts/log45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log45.txt -------------------------------------------------------------------------------- /scripts/log46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log46.txt -------------------------------------------------------------------------------- /scripts/log47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log47.txt -------------------------------------------------------------------------------- /scripts/log48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log48.txt -------------------------------------------------------------------------------- /scripts/log49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log49.txt -------------------------------------------------------------------------------- /scripts/log5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log5.txt -------------------------------------------------------------------------------- /scripts/log50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log50.txt -------------------------------------------------------------------------------- /scripts/log51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log51.txt -------------------------------------------------------------------------------- /scripts/log52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log52.txt -------------------------------------------------------------------------------- /scripts/log53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log53.txt -------------------------------------------------------------------------------- /scripts/log54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log54.txt -------------------------------------------------------------------------------- /scripts/log55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log55.txt -------------------------------------------------------------------------------- /scripts/log56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log56.txt -------------------------------------------------------------------------------- /scripts/log57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log57.txt -------------------------------------------------------------------------------- /scripts/log58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log58.txt -------------------------------------------------------------------------------- /scripts/log59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log59.txt -------------------------------------------------------------------------------- /scripts/log6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log6.txt -------------------------------------------------------------------------------- /scripts/log60.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log60.txt -------------------------------------------------------------------------------- /scripts/log61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log61.txt -------------------------------------------------------------------------------- /scripts/log62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log62.txt -------------------------------------------------------------------------------- /scripts/log63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log63.txt -------------------------------------------------------------------------------- /scripts/log64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log64.txt -------------------------------------------------------------------------------- /scripts/log65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log65.txt -------------------------------------------------------------------------------- /scripts/log66.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log66.txt -------------------------------------------------------------------------------- /scripts/log67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log67.txt -------------------------------------------------------------------------------- /scripts/log68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log68.txt -------------------------------------------------------------------------------- /scripts/log69.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log69.txt -------------------------------------------------------------------------------- /scripts/log7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log7.txt -------------------------------------------------------------------------------- /scripts/log70.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log70.txt -------------------------------------------------------------------------------- /scripts/log71.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log71.txt -------------------------------------------------------------------------------- /scripts/log72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log72.txt -------------------------------------------------------------------------------- /scripts/log73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log73.txt -------------------------------------------------------------------------------- /scripts/log74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log74.txt -------------------------------------------------------------------------------- /scripts/log75.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log75.txt -------------------------------------------------------------------------------- /scripts/log76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log76.txt -------------------------------------------------------------------------------- /scripts/log77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log77.txt -------------------------------------------------------------------------------- /scripts/log78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log78.txt -------------------------------------------------------------------------------- /scripts/log79.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log79.txt -------------------------------------------------------------------------------- /scripts/log8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log8.txt -------------------------------------------------------------------------------- /scripts/log80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log80.txt -------------------------------------------------------------------------------- /scripts/log81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log81.txt -------------------------------------------------------------------------------- /scripts/log82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log82.txt -------------------------------------------------------------------------------- /scripts/log83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log83.txt -------------------------------------------------------------------------------- /scripts/log84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log84.txt -------------------------------------------------------------------------------- /scripts/log85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log85.txt -------------------------------------------------------------------------------- /scripts/log86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log86.txt -------------------------------------------------------------------------------- /scripts/log87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log87.txt -------------------------------------------------------------------------------- /scripts/log9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log9.txt -------------------------------------------------------------------------------- /scripts/log_old/log1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log_old/log1.txt -------------------------------------------------------------------------------- /scripts/log_old/log2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log_old/log2.txt -------------------------------------------------------------------------------- /scripts/log_old/log3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log_old/log3.txt -------------------------------------------------------------------------------- /scripts/log_old/log4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log_old/log4.txt -------------------------------------------------------------------------------- /scripts/log_old/log5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log_old/log5.txt -------------------------------------------------------------------------------- /scripts/log_old/log6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log_old/log6.txt -------------------------------------------------------------------------------- /scripts/log_old/log7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/log_old/log7.txt -------------------------------------------------------------------------------- /scripts/recon10_gan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/recon10_gan.sh -------------------------------------------------------------------------------- /scripts/recon10_resnet_gan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/recon10_resnet_gan.sh -------------------------------------------------------------------------------- /scripts/recon_cont_gan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/recon_cont_gan.sh -------------------------------------------------------------------------------- /scripts/recon_gan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/recon_gan.sh -------------------------------------------------------------------------------- /scripts/recon_resnet_gan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/recon_resnet_gan.sh -------------------------------------------------------------------------------- /scripts/reconcont_resnet_gan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/reconcont_resnet_gan.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/test_cyclegan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/test_cyclegan.sh -------------------------------------------------------------------------------- /scripts/test_pix2pix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/test_pix2pix.sh -------------------------------------------------------------------------------- /scripts/test_single.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/test_single.sh -------------------------------------------------------------------------------- /scripts/train_cyclegan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/train_cyclegan.sh -------------------------------------------------------------------------------- /scripts/train_pix2pix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/scripts/train_pix2pix.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/test.py -------------------------------------------------------------------------------- /tools/DehazeNet_main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/DehazeNet_main.m -------------------------------------------------------------------------------- /tools/check_depth_distrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/check_depth_distrib.py -------------------------------------------------------------------------------- /tools/check_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/check_eval.py -------------------------------------------------------------------------------- /tools/dcp_main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/dcp_main.m -------------------------------------------------------------------------------- /tools/deltaE2000.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/deltaE2000.m -------------------------------------------------------------------------------- /tools/demo/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/demo/app/__init__.py -------------------------------------------------------------------------------- /tools/demo/app/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/demo/app/__init__.pyc -------------------------------------------------------------------------------- /tools/demo/app/templates/Check_evaluation_disentangled_shuffle_resnet_9blocks_sigmoid_A100_TV1_lr0.0002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/demo/app/templates/Check_evaluation_disentangled_shuffle_resnet_9blocks_sigmoid_A100_TV1_lr0.0002.html -------------------------------------------------------------------------------- /tools/demo/app/templates/Dehaze_disentangled_shuffle_resnet_9blocks_sigmoid_A100_TV1_lr0.0002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/demo/app/templates/Dehaze_disentangled_shuffle_resnet_9blocks_sigmoid_A100_TV1_lr0.0002.html -------------------------------------------------------------------------------- /tools/demo/app/templates/Transmition_disentangled_shuffle_resnet_9blocks_sigmoid_A100_TV1_lr0.0002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/demo/app/templates/Transmition_disentangled_shuffle_resnet_9blocks_sigmoid_A100_TV1_lr0.0002.html -------------------------------------------------------------------------------- /tools/demo/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/demo/app/views.py -------------------------------------------------------------------------------- /tools/demo/app/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/demo/app/views.pyc -------------------------------------------------------------------------------- /tools/demo/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/demo/run.py -------------------------------------------------------------------------------- /tools/download_result.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/download_result.sh -------------------------------------------------------------------------------- /tools/evaluation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/evaluation.m -------------------------------------------------------------------------------- /tools/evaluation_server.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/evaluation_server.m -------------------------------------------------------------------------------- /tools/get_free_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/get_free_depth.py -------------------------------------------------------------------------------- /tools/log71.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/log71.txt -------------------------------------------------------------------------------- /tools/log72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/log72.txt -------------------------------------------------------------------------------- /tools/log73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/log73.txt -------------------------------------------------------------------------------- /tools/log74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/log74.txt -------------------------------------------------------------------------------- /tools/log75.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/log75.txt -------------------------------------------------------------------------------- /tools/log76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/log76.txt -------------------------------------------------------------------------------- /tools/log81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/log81.txt -------------------------------------------------------------------------------- /tools/log82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/log82.txt -------------------------------------------------------------------------------- /tools/post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/post_process.py -------------------------------------------------------------------------------- /tools/receptive_field_size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/receptive_field_size.m -------------------------------------------------------------------------------- /tools/sigma_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/sigma_filter.py -------------------------------------------------------------------------------- /tools/sigma_filter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/sigma_filter.pyc -------------------------------------------------------------------------------- /tools/upload_result.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/upload_result.sh -------------------------------------------------------------------------------- /tools/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/tools/visualize.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/train.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/util/__init__.pyc -------------------------------------------------------------------------------- /util/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/util/get_data.py -------------------------------------------------------------------------------- /util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/util/html.py -------------------------------------------------------------------------------- /util/html.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/util/html.pyc -------------------------------------------------------------------------------- /util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/util/image_pool.py -------------------------------------------------------------------------------- /util/image_pool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/util/image_pool.pyc -------------------------------------------------------------------------------- /util/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/util/png.py -------------------------------------------------------------------------------- /util/synthesize.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/util/synthesize.pyc -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/util/util.py -------------------------------------------------------------------------------- /util/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/util/util.pyc -------------------------------------------------------------------------------- /util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/util/visualizer.py -------------------------------------------------------------------------------- /util/visualizer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyang35/Disentangled-GAN/HEAD/util/visualizer.pyc --------------------------------------------------------------------------------