├── .gitattributes ├── README.md ├── image_demo ├── README.md ├── main.py ├── model.py ├── model_resnet.py ├── spectral_normalization.py └── spectral_normalization_nondiff.py ├── results ├── hq_results.png ├── image_results.png └── toy.png └── toy_demo ├── 1d_GMM_exp.ipynb ├── README.md ├── data_loader.py ├── loss.py ├── main.py └── training.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /image_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/image_demo/README.md -------------------------------------------------------------------------------- /image_demo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/image_demo/main.py -------------------------------------------------------------------------------- /image_demo/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/image_demo/model.py -------------------------------------------------------------------------------- /image_demo/model_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/image_demo/model_resnet.py -------------------------------------------------------------------------------- /image_demo/spectral_normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/image_demo/spectral_normalization.py -------------------------------------------------------------------------------- /image_demo/spectral_normalization_nondiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/image_demo/spectral_normalization_nondiff.py -------------------------------------------------------------------------------- /results/hq_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/results/hq_results.png -------------------------------------------------------------------------------- /results/image_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/results/image_results.png -------------------------------------------------------------------------------- /results/toy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/results/toy.png -------------------------------------------------------------------------------- /toy_demo/1d_GMM_exp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/toy_demo/1d_GMM_exp.ipynb -------------------------------------------------------------------------------- /toy_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/toy_demo/README.md -------------------------------------------------------------------------------- /toy_demo/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/toy_demo/data_loader.py -------------------------------------------------------------------------------- /toy_demo/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/toy_demo/loss.py -------------------------------------------------------------------------------- /toy_demo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/toy_demo/main.py -------------------------------------------------------------------------------- /toy_demo/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JegZheng/CT-pytorch/HEAD/toy_demo/training.py --------------------------------------------------------------------------------