gitextract_c042vuns/ ├── .gitignore ├── .replit ├── CycleGAN.ipynb ├── LICENSE ├── README.md ├── data/ │ ├── __init__.py │ ├── aligned_dataset.py │ ├── base_dataset.py │ ├── colorization_dataset.py │ ├── image_folder.py │ ├── single_dataset.py │ ├── template_dataset.py │ └── unaligned_dataset.py ├── docs/ │ ├── Dockerfile │ ├── README_es.md │ ├── datasets.md │ ├── docker.md │ ├── overview.md │ ├── qa.md │ └── tips.md ├── environment.yml ├── models/ │ ├── __init__.py │ ├── base_model.py │ ├── colorization_model.py │ ├── cycle_gan_model.py │ ├── networks.py │ ├── pix2pix_model.py │ ├── template_model.py │ └── test_model.py ├── options/ │ ├── __init__.py │ ├── base_options.py │ ├── test_options.py │ └── train_options.py ├── pix2pix.ipynb ├── scripts/ │ ├── conda_deps.sh │ ├── download_cyclegan_model.sh │ ├── download_pix2pix_model.sh │ ├── edges/ │ │ ├── PostprocessHED.m │ │ └── batch_hed.py │ ├── eval_cityscapes/ │ │ ├── caffemodel/ │ │ │ └── deploy.prototxt │ │ ├── cityscapes.py │ │ ├── download_fcn8s.sh │ │ ├── evaluate.py │ │ └── util.py │ ├── install_deps.sh │ ├── test_before_push.py │ ├── test_colorization.sh │ ├── test_cyclegan.sh │ ├── test_pix2pix.sh │ ├── test_single.sh │ ├── train_colorization.sh │ ├── train_cyclegan.sh │ └── train_pix2pix.sh ├── test.py ├── train.py └── util/ ├── __init__.py ├── get_data.py ├── html.py ├── image_pool.py ├── util.py └── visualizer.py