├── .gitignore ├── LICENSE ├── README.md ├── Test └── Set5 │ ├── baby.png │ ├── bird.png │ ├── butterfly.png │ ├── head.png │ └── woman.png ├── checkpoint ├── rdn_16_8_64_x3 │ ├── RDN.model-1580000.data-00000-of-00001 │ ├── RDN.model-1580000.index │ ├── RDN.model-1580000.meta │ └── checkpoint └── rdn_5_3_64_x3 │ ├── RDN.model-1774200.data-00000-of-00001 │ ├── RDN.model-1774200.index │ ├── RDN.model-1774200.meta │ └── checkpoint ├── main.py ├── model.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | result/ 2 | Train/ 3 | *.pyc 4 | __pycache__ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/README.md -------------------------------------------------------------------------------- /Test/Set5/baby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/Test/Set5/baby.png -------------------------------------------------------------------------------- /Test/Set5/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/Test/Set5/bird.png -------------------------------------------------------------------------------- /Test/Set5/butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/Test/Set5/butterfly.png -------------------------------------------------------------------------------- /Test/Set5/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/Test/Set5/head.png -------------------------------------------------------------------------------- /Test/Set5/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/Test/Set5/woman.png -------------------------------------------------------------------------------- /checkpoint/rdn_16_8_64_x3/RDN.model-1580000.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/checkpoint/rdn_16_8_64_x3/RDN.model-1580000.data-00000-of-00001 -------------------------------------------------------------------------------- /checkpoint/rdn_16_8_64_x3/RDN.model-1580000.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/checkpoint/rdn_16_8_64_x3/RDN.model-1580000.index -------------------------------------------------------------------------------- /checkpoint/rdn_16_8_64_x3/RDN.model-1580000.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/checkpoint/rdn_16_8_64_x3/RDN.model-1580000.meta -------------------------------------------------------------------------------- /checkpoint/rdn_16_8_64_x3/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/checkpoint/rdn_16_8_64_x3/checkpoint -------------------------------------------------------------------------------- /checkpoint/rdn_5_3_64_x3/RDN.model-1774200.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/checkpoint/rdn_5_3_64_x3/RDN.model-1774200.data-00000-of-00001 -------------------------------------------------------------------------------- /checkpoint/rdn_5_3_64_x3/RDN.model-1774200.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/checkpoint/rdn_5_3_64_x3/RDN.model-1774200.index -------------------------------------------------------------------------------- /checkpoint/rdn_5_3_64_x3/RDN.model-1774200.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/checkpoint/rdn_5_3_64_x3/RDN.model-1774200.meta -------------------------------------------------------------------------------- /checkpoint/rdn_5_3_64_x3/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/checkpoint/rdn_5_3_64_x3/checkpoint -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/model.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengchuan/RDN-TensorFlow/HEAD/utils.py --------------------------------------------------------------------------------