├── .DS_Store ├── LICENSE ├── README.md ├── TFLite ├── model.tflite ├── model_none.tflite └── model_none_float.tflite ├── calculate_PSNR.py ├── ckpt ├── .DS_Store └── basenet │ └── .DS_Store ├── div2k.py ├── eval.py ├── figs ├── .DS_Store ├── speed.png └── ts.png ├── generate_tflite.py ├── main.py ├── model ├── __init__.py ├── basenet.py └── common.py ├── test_tflite.py ├── torch_code ├── .DS_Store ├── lr_0803x3.png ├── ncnet.py ├── out.png └── test.py ├── train.py └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/README.md -------------------------------------------------------------------------------- /TFLite/model.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/TFLite/model.tflite -------------------------------------------------------------------------------- /TFLite/model_none.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/TFLite/model_none.tflite -------------------------------------------------------------------------------- /TFLite/model_none_float.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/TFLite/model_none_float.tflite -------------------------------------------------------------------------------- /calculate_PSNR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/calculate_PSNR.py -------------------------------------------------------------------------------- /ckpt/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/ckpt/.DS_Store -------------------------------------------------------------------------------- /ckpt/basenet/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/ckpt/basenet/.DS_Store -------------------------------------------------------------------------------- /div2k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/div2k.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/eval.py -------------------------------------------------------------------------------- /figs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/figs/.DS_Store -------------------------------------------------------------------------------- /figs/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/figs/speed.png -------------------------------------------------------------------------------- /figs/ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/figs/ts.png -------------------------------------------------------------------------------- /generate_tflite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/generate_tflite.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/main.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/model/__init__.py -------------------------------------------------------------------------------- /model/basenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/model/basenet.py -------------------------------------------------------------------------------- /model/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/model/common.py -------------------------------------------------------------------------------- /test_tflite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/test_tflite.py -------------------------------------------------------------------------------- /torch_code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/torch_code/.DS_Store -------------------------------------------------------------------------------- /torch_code/lr_0803x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/torch_code/lr_0803x3.png -------------------------------------------------------------------------------- /torch_code/ncnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/torch_code/ncnet.py -------------------------------------------------------------------------------- /torch_code/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/torch_code/out.png -------------------------------------------------------------------------------- /torch_code/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/torch_code/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algolzw/NCNet/HEAD/utils.py --------------------------------------------------------------------------------