├── DIQADataset.py ├── DataInfoLoader.py ├── Performance.py ├── README.md ├── checkpoints └── CNNDIQA-SOC-EXP916-lr=0.0001.pth ├── config.yaml ├── data └── gt_files │ └── SOC_gt.xlsx ├── demo_DIQA.py ├── main.py ├── models ├── CNNDIQAnet.py └── __init__.py └── requirements.txt /DIQADataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjchern/DIQA_CNN/HEAD/DIQADataset.py -------------------------------------------------------------------------------- /DataInfoLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjchern/DIQA_CNN/HEAD/DataInfoLoader.py -------------------------------------------------------------------------------- /Performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjchern/DIQA_CNN/HEAD/Performance.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjchern/DIQA_CNN/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/CNNDIQA-SOC-EXP916-lr=0.0001.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjchern/DIQA_CNN/HEAD/checkpoints/CNNDIQA-SOC-EXP916-lr=0.0001.pth -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjchern/DIQA_CNN/HEAD/config.yaml -------------------------------------------------------------------------------- /data/gt_files/SOC_gt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjchern/DIQA_CNN/HEAD/data/gt_files/SOC_gt.xlsx -------------------------------------------------------------------------------- /demo_DIQA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjchern/DIQA_CNN/HEAD/demo_DIQA.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjchern/DIQA_CNN/HEAD/main.py -------------------------------------------------------------------------------- /models/CNNDIQAnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjchern/DIQA_CNN/HEAD/models/CNNDIQAnet.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjchern/DIQA_CNN/HEAD/models/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjchern/DIQA_CNN/HEAD/requirements.txt --------------------------------------------------------------------------------