├── IQA_list ├── LIVE_IQA.txt ├── PIPAL.txt └── PIPAL_augment.txt ├── README.md ├── data ├── data_LIVE.py └── data_PIPAL.py ├── model ├── backbone.py └── model_main.py ├── option └── config.py ├── test.py ├── train.py ├── trainer.py ├── utils └── util.py └── weights ├── LIVE └── weights_are_saved.txt └── PIPAL └── epoch40.pth /IQA_list/LIVE_IQA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/IQA_list/LIVE_IQA.txt -------------------------------------------------------------------------------- /IQA_list/PIPAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/IQA_list/PIPAL.txt -------------------------------------------------------------------------------- /IQA_list/PIPAL_augment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/IQA_list/PIPAL_augment.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/README.md -------------------------------------------------------------------------------- /data/data_LIVE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/data/data_LIVE.py -------------------------------------------------------------------------------- /data/data_PIPAL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/data/data_PIPAL.py -------------------------------------------------------------------------------- /model/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/model/backbone.py -------------------------------------------------------------------------------- /model/model_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/model/model_main.py -------------------------------------------------------------------------------- /option/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/option/config.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/train.py -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/trainer.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/utils/util.py -------------------------------------------------------------------------------- /weights/LIVE/weights_are_saved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/weights/LIVE/weights_are_saved.txt -------------------------------------------------------------------------------- /weights/PIPAL/epoch40.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anse3832/IQT/HEAD/weights/PIPAL/epoch40.pth --------------------------------------------------------------------------------