├── README.md ├── ccdnet_1 ├── faces │ ├── CMD_gan │ │ ├── CMD_1bt.sh │ │ ├── CMD_eval.sh │ │ ├── CMD_train.sh │ │ ├── CMD_vis.sh │ │ └── pretrained │ ├── CMD_nogan │ │ ├── CMD_eval.sh │ │ ├── CMD_train.sh │ │ ├── CMD_vis.sh │ │ └── pretrained │ ├── main.py │ └── utils.py └── moments │ ├── CMD_gan │ ├── CMD_1bt.sh │ ├── CMD_eval.sh │ ├── CMD_train.sh │ ├── CMD_vis.sh │ └── pretrained │ ├── CMD_nogan │ ├── CMD_eval.sh │ └── pretrained │ ├── main.py │ └── utils.py ├── ccdnet_k └── faces │ ├── CMD_gan │ ├── CMD_eval.sh │ ├── CMD_train_dither.sh │ ├── CMD_train_nodither.sh │ ├── CMD_vis.sh │ └── pretrained │ ├── CMD_nogan │ ├── CMD_eval.sh │ ├── CMD_train_dither.sh │ ├── CMD_train_nodither.sh │ ├── CMD_vis.sh │ └── pretrained │ ├── main.py │ └── utils.py ├── gif2video ├── faces │ ├── CMD_ccdnet1 │ │ ├── CMD_1batch.sh │ │ ├── CMD_eval.sh │ │ ├── CMD_train.sh │ │ ├── CMD_vis.sh │ │ └── pretrained │ ├── CMD_ccdnet1_seq │ │ ├── CMD_1batch.sh │ │ ├── CMD_eval.sh │ │ ├── CMD_train.sh │ │ ├── CMD_vis.sh │ │ └── pretrained │ ├── CMD_ccdnet2 │ │ ├── CMD_eval.sh │ │ └── pretrained │ ├── main.py │ ├── pretrained │ └── utils.py └── moments │ ├── CMD_ccdnet1 │ ├── CMD_eval.sh │ ├── CMD_train.sh │ ├── CMD_vis.sh │ └── pretrained │ ├── CMD_ccdnet2 │ ├── CMD_eval.sh │ └── pretrained │ ├── main.py │ ├── pretrained │ └── utils.py ├── pretrained ├── filelist.txt └── filelist_download.py └── pytoolkit ├── __init__.py ├── files.py ├── misc.py ├── torch_data ├── __init__.py └── gif2video │ ├── __init__.py │ ├── gif_faces.py │ ├── gif_faces_DithRec.py │ ├── gif_faces_ct.py │ ├── gif_moments.py │ ├── gif_moments_DithRec.py │ └── gif_moments_ct.py ├── torch_funcs.py └── torch_model ├── GAN ├── NLayerD.py └── __init__.py ├── UNet ├── UNet_flow.py ├── UNet_simple.pdf ├── UNet_simple.py ├── __init__.py └── netSlomo.py ├── __init__.py └── misc ├── drrn.py └── glcic.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/README.md -------------------------------------------------------------------------------- /ccdnet_1/faces/CMD_gan/CMD_1bt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/faces/CMD_gan/CMD_1bt.sh -------------------------------------------------------------------------------- /ccdnet_1/faces/CMD_gan/CMD_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/faces/CMD_gan/CMD_eval.sh -------------------------------------------------------------------------------- /ccdnet_1/faces/CMD_gan/CMD_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/faces/CMD_gan/CMD_train.sh -------------------------------------------------------------------------------- /ccdnet_1/faces/CMD_gan/CMD_vis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/faces/CMD_gan/CMD_vis.sh -------------------------------------------------------------------------------- /ccdnet_1/faces/CMD_gan/pretrained: -------------------------------------------------------------------------------- 1 | ../../../pretrained -------------------------------------------------------------------------------- /ccdnet_1/faces/CMD_nogan/CMD_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/faces/CMD_nogan/CMD_eval.sh -------------------------------------------------------------------------------- /ccdnet_1/faces/CMD_nogan/CMD_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/faces/CMD_nogan/CMD_train.sh -------------------------------------------------------------------------------- /ccdnet_1/faces/CMD_nogan/CMD_vis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/faces/CMD_nogan/CMD_vis.sh -------------------------------------------------------------------------------- /ccdnet_1/faces/CMD_nogan/pretrained: -------------------------------------------------------------------------------- 1 | ../../../pretrained/ -------------------------------------------------------------------------------- /ccdnet_1/faces/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/faces/main.py -------------------------------------------------------------------------------- /ccdnet_1/faces/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/faces/utils.py -------------------------------------------------------------------------------- /ccdnet_1/moments/CMD_gan/CMD_1bt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/moments/CMD_gan/CMD_1bt.sh -------------------------------------------------------------------------------- /ccdnet_1/moments/CMD_gan/CMD_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/moments/CMD_gan/CMD_eval.sh -------------------------------------------------------------------------------- /ccdnet_1/moments/CMD_gan/CMD_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/moments/CMD_gan/CMD_train.sh -------------------------------------------------------------------------------- /ccdnet_1/moments/CMD_gan/CMD_vis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/moments/CMD_gan/CMD_vis.sh -------------------------------------------------------------------------------- /ccdnet_1/moments/CMD_gan/pretrained: -------------------------------------------------------------------------------- 1 | ../../../pretrained/ -------------------------------------------------------------------------------- /ccdnet_1/moments/CMD_nogan/CMD_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/moments/CMD_nogan/CMD_eval.sh -------------------------------------------------------------------------------- /ccdnet_1/moments/CMD_nogan/pretrained: -------------------------------------------------------------------------------- 1 | ../../../pretrained/ -------------------------------------------------------------------------------- /ccdnet_1/moments/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/moments/main.py -------------------------------------------------------------------------------- /ccdnet_1/moments/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_1/moments/utils.py -------------------------------------------------------------------------------- /ccdnet_k/faces/CMD_gan/CMD_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_k/faces/CMD_gan/CMD_eval.sh -------------------------------------------------------------------------------- /ccdnet_k/faces/CMD_gan/CMD_train_dither.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_k/faces/CMD_gan/CMD_train_dither.sh -------------------------------------------------------------------------------- /ccdnet_k/faces/CMD_gan/CMD_train_nodither.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_k/faces/CMD_gan/CMD_train_nodither.sh -------------------------------------------------------------------------------- /ccdnet_k/faces/CMD_gan/CMD_vis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_k/faces/CMD_gan/CMD_vis.sh -------------------------------------------------------------------------------- /ccdnet_k/faces/CMD_gan/pretrained: -------------------------------------------------------------------------------- 1 | ../../../pretrained -------------------------------------------------------------------------------- /ccdnet_k/faces/CMD_nogan/CMD_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_k/faces/CMD_nogan/CMD_eval.sh -------------------------------------------------------------------------------- /ccdnet_k/faces/CMD_nogan/CMD_train_dither.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_k/faces/CMD_nogan/CMD_train_dither.sh -------------------------------------------------------------------------------- /ccdnet_k/faces/CMD_nogan/CMD_train_nodither.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_k/faces/CMD_nogan/CMD_train_nodither.sh -------------------------------------------------------------------------------- /ccdnet_k/faces/CMD_nogan/CMD_vis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_k/faces/CMD_nogan/CMD_vis.sh -------------------------------------------------------------------------------- /ccdnet_k/faces/CMD_nogan/pretrained: -------------------------------------------------------------------------------- 1 | ../../../pretrained -------------------------------------------------------------------------------- /ccdnet_k/faces/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_k/faces/main.py -------------------------------------------------------------------------------- /ccdnet_k/faces/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/ccdnet_k/faces/utils.py -------------------------------------------------------------------------------- /gif2video/faces/CMD_ccdnet1/CMD_1batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/faces/CMD_ccdnet1/CMD_1batch.sh -------------------------------------------------------------------------------- /gif2video/faces/CMD_ccdnet1/CMD_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/faces/CMD_ccdnet1/CMD_eval.sh -------------------------------------------------------------------------------- /gif2video/faces/CMD_ccdnet1/CMD_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/faces/CMD_ccdnet1/CMD_train.sh -------------------------------------------------------------------------------- /gif2video/faces/CMD_ccdnet1/CMD_vis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/faces/CMD_ccdnet1/CMD_vis.sh -------------------------------------------------------------------------------- /gif2video/faces/CMD_ccdnet1/pretrained: -------------------------------------------------------------------------------- 1 | ../../../pretrained/ -------------------------------------------------------------------------------- /gif2video/faces/CMD_ccdnet1_seq/CMD_1batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/faces/CMD_ccdnet1_seq/CMD_1batch.sh -------------------------------------------------------------------------------- /gif2video/faces/CMD_ccdnet1_seq/CMD_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/faces/CMD_ccdnet1_seq/CMD_eval.sh -------------------------------------------------------------------------------- /gif2video/faces/CMD_ccdnet1_seq/CMD_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/faces/CMD_ccdnet1_seq/CMD_train.sh -------------------------------------------------------------------------------- /gif2video/faces/CMD_ccdnet1_seq/CMD_vis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/faces/CMD_ccdnet1_seq/CMD_vis.sh -------------------------------------------------------------------------------- /gif2video/faces/CMD_ccdnet1_seq/pretrained: -------------------------------------------------------------------------------- 1 | ../../../pretrained -------------------------------------------------------------------------------- /gif2video/faces/CMD_ccdnet2/CMD_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/faces/CMD_ccdnet2/CMD_eval.sh -------------------------------------------------------------------------------- /gif2video/faces/CMD_ccdnet2/pretrained: -------------------------------------------------------------------------------- 1 | ../../../pretrained/ -------------------------------------------------------------------------------- /gif2video/faces/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/faces/main.py -------------------------------------------------------------------------------- /gif2video/faces/pretrained: -------------------------------------------------------------------------------- 1 | ../../pretrained -------------------------------------------------------------------------------- /gif2video/faces/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/faces/utils.py -------------------------------------------------------------------------------- /gif2video/moments/CMD_ccdnet1/CMD_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/moments/CMD_ccdnet1/CMD_eval.sh -------------------------------------------------------------------------------- /gif2video/moments/CMD_ccdnet1/CMD_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/moments/CMD_ccdnet1/CMD_train.sh -------------------------------------------------------------------------------- /gif2video/moments/CMD_ccdnet1/CMD_vis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/moments/CMD_ccdnet1/CMD_vis.sh -------------------------------------------------------------------------------- /gif2video/moments/CMD_ccdnet1/pretrained: -------------------------------------------------------------------------------- 1 | ../../../pretrained -------------------------------------------------------------------------------- /gif2video/moments/CMD_ccdnet2/CMD_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/moments/CMD_ccdnet2/CMD_eval.sh -------------------------------------------------------------------------------- /gif2video/moments/CMD_ccdnet2/pretrained: -------------------------------------------------------------------------------- 1 | ../../../pretrained/ -------------------------------------------------------------------------------- /gif2video/moments/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/moments/main.py -------------------------------------------------------------------------------- /gif2video/moments/pretrained: -------------------------------------------------------------------------------- 1 | ../../pretrained/ -------------------------------------------------------------------------------- /gif2video/moments/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/gif2video/moments/utils.py -------------------------------------------------------------------------------- /pretrained/filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pretrained/filelist.txt -------------------------------------------------------------------------------- /pretrained/filelist_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pretrained/filelist_download.py -------------------------------------------------------------------------------- /pytoolkit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/__init__.py -------------------------------------------------------------------------------- /pytoolkit/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/files.py -------------------------------------------------------------------------------- /pytoolkit/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/misc.py -------------------------------------------------------------------------------- /pytoolkit/torch_data/__init__.py: -------------------------------------------------------------------------------- 1 | from .gif2video import * 2 | -------------------------------------------------------------------------------- /pytoolkit/torch_data/gif2video/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_data/gif2video/__init__.py -------------------------------------------------------------------------------- /pytoolkit/torch_data/gif2video/gif_faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_data/gif2video/gif_faces.py -------------------------------------------------------------------------------- /pytoolkit/torch_data/gif2video/gif_faces_DithRec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_data/gif2video/gif_faces_DithRec.py -------------------------------------------------------------------------------- /pytoolkit/torch_data/gif2video/gif_faces_ct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_data/gif2video/gif_faces_ct.py -------------------------------------------------------------------------------- /pytoolkit/torch_data/gif2video/gif_moments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_data/gif2video/gif_moments.py -------------------------------------------------------------------------------- /pytoolkit/torch_data/gif2video/gif_moments_DithRec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_data/gif2video/gif_moments_DithRec.py -------------------------------------------------------------------------------- /pytoolkit/torch_data/gif2video/gif_moments_ct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_data/gif2video/gif_moments_ct.py -------------------------------------------------------------------------------- /pytoolkit/torch_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_funcs.py -------------------------------------------------------------------------------- /pytoolkit/torch_model/GAN/NLayerD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_model/GAN/NLayerD.py -------------------------------------------------------------------------------- /pytoolkit/torch_model/GAN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_model/GAN/__init__.py -------------------------------------------------------------------------------- /pytoolkit/torch_model/UNet/UNet_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_model/UNet/UNet_flow.py -------------------------------------------------------------------------------- /pytoolkit/torch_model/UNet/UNet_simple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_model/UNet/UNet_simple.pdf -------------------------------------------------------------------------------- /pytoolkit/torch_model/UNet/UNet_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_model/UNet/UNet_simple.py -------------------------------------------------------------------------------- /pytoolkit/torch_model/UNet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_model/UNet/__init__.py -------------------------------------------------------------------------------- /pytoolkit/torch_model/UNet/netSlomo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_model/UNet/netSlomo.py -------------------------------------------------------------------------------- /pytoolkit/torch_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_model/__init__.py -------------------------------------------------------------------------------- /pytoolkit/torch_model/misc/drrn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_model/misc/drrn.py -------------------------------------------------------------------------------- /pytoolkit/torch_model/misc/glcic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangwangx/gif2video_code/HEAD/pytoolkit/torch_model/misc/glcic.py --------------------------------------------------------------------------------