├── .gitattributes ├── README.md ├── custom_dataset └── readme.txt ├── dataset.py ├── environment.yml ├── losses.py ├── main.py ├── main.py.bak ├── mode.py ├── model └── readme.txt ├── ops.py ├── pretrained_models ├── SRGAN.pt └── SRResNet.pt ├── result ├── readme.txt ├── res_0000.png ├── res_0001.png ├── res_0002.png ├── res_0003.png ├── res_0004.png └── res_0005.png ├── srgan_model.py ├── test_data ├── cars │ ├── 1.jfif │ ├── 2.jfif │ ├── 3.jfif │ ├── 4.jpg │ ├── 5.jpg │ └── 6.jpg └── readme.txt └── vgg19.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/README.md -------------------------------------------------------------------------------- /custom_dataset/readme.txt: -------------------------------------------------------------------------------- 1 | place your custom dataset here -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/dataset.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/environment.yml -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/losses.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/main.py -------------------------------------------------------------------------------- /main.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/main.py.bak -------------------------------------------------------------------------------- /mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/mode.py -------------------------------------------------------------------------------- /model/readme.txt: -------------------------------------------------------------------------------- 1 | You will have your trained model in this folder -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/ops.py -------------------------------------------------------------------------------- /pretrained_models/SRGAN.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/pretrained_models/SRGAN.pt -------------------------------------------------------------------------------- /pretrained_models/SRResNet.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/pretrained_models/SRResNet.pt -------------------------------------------------------------------------------- /result/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/result/readme.txt -------------------------------------------------------------------------------- /result/res_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/result/res_0000.png -------------------------------------------------------------------------------- /result/res_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/result/res_0001.png -------------------------------------------------------------------------------- /result/res_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/result/res_0002.png -------------------------------------------------------------------------------- /result/res_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/result/res_0003.png -------------------------------------------------------------------------------- /result/res_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/result/res_0004.png -------------------------------------------------------------------------------- /result/res_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/result/res_0005.png -------------------------------------------------------------------------------- /srgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/srgan_model.py -------------------------------------------------------------------------------- /test_data/cars/1.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/test_data/cars/1.jfif -------------------------------------------------------------------------------- /test_data/cars/2.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/test_data/cars/2.jfif -------------------------------------------------------------------------------- /test_data/cars/3.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/test_data/cars/3.jfif -------------------------------------------------------------------------------- /test_data/cars/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/test_data/cars/4.jpg -------------------------------------------------------------------------------- /test_data/cars/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/test_data/cars/5.jpg -------------------------------------------------------------------------------- /test_data/cars/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/test_data/cars/6.jpg -------------------------------------------------------------------------------- /test_data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/test_data/readme.txt -------------------------------------------------------------------------------- /vgg19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/SRGAN_CustomDataset/HEAD/vgg19.py --------------------------------------------------------------------------------