├── LICENSE ├── README.md ├── config_train.py ├── dataset ├── .DS_Store ├── __init__.py └── dataset_txt_list.py ├── docs ├── .DS_Store └── Framework.png ├── generate_labels.py ├── inference.py ├── model ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── clip.cpython-38.pyc │ ├── iresnet.cpython-37.pyc │ ├── losses.cpython-37.pyc │ ├── losses.cpython-38.pyc │ ├── mfnet.cpython-37.pyc │ ├── models.cpython-38.pyc │ ├── simple_tokenizer.cpython-38.pyc │ └── weight_methods.cpython-38.pyc ├── bpe_simple_vocab_16e6.txt.gz ├── clip.py ├── iresnet.py ├── losses.py ├── mfnet.py ├── models.py ├── simple_tokenizer.py └── weight_methods.py ├── samples ├── .DS_Store ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg └── 6.jpg ├── train.py └── utilities.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/README.md -------------------------------------------------------------------------------- /config_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/config_train.py -------------------------------------------------------------------------------- /dataset/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/dataset/.DS_Store -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/dataset_txt_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/dataset/dataset_txt_list.py -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/Framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/docs/Framework.png -------------------------------------------------------------------------------- /generate_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/generate_labels.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/inference.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/clip.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/__pycache__/clip.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/iresnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/__pycache__/iresnet.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/losses.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/__pycache__/losses.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/losses.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/__pycache__/losses.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/mfnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/__pycache__/mfnet.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/simple_tokenizer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/__pycache__/simple_tokenizer.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/weight_methods.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/__pycache__/weight_methods.cpython-38.pyc -------------------------------------------------------------------------------- /model/bpe_simple_vocab_16e6.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/bpe_simple_vocab_16e6.txt.gz -------------------------------------------------------------------------------- /model/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/clip.py -------------------------------------------------------------------------------- /model/iresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/iresnet.py -------------------------------------------------------------------------------- /model/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/losses.py -------------------------------------------------------------------------------- /model/mfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/mfnet.py -------------------------------------------------------------------------------- /model/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/models.py -------------------------------------------------------------------------------- /model/simple_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/simple_tokenizer.py -------------------------------------------------------------------------------- /model/weight_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/model/weight_methods.py -------------------------------------------------------------------------------- /samples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/samples/.DS_Store -------------------------------------------------------------------------------- /samples/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/samples/1.jpg -------------------------------------------------------------------------------- /samples/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/samples/2.jpg -------------------------------------------------------------------------------- /samples/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/samples/3.jpg -------------------------------------------------------------------------------- /samples/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/samples/4.jpg -------------------------------------------------------------------------------- /samples/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/samples/5.jpg -------------------------------------------------------------------------------- /samples/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/samples/6.jpg -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/train.py -------------------------------------------------------------------------------- /utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oufuzhao/CLIB-FIQA/HEAD/utilities.py --------------------------------------------------------------------------------