gitextract_bsk4agu9/ ├── AffectNet/ │ ├── train.txt │ └── val.txt ├── checkpoint/ │ ├── 87.73517581419489_96_2.pth │ ├── 92.75009731413002_1.pth │ ├── 95.45543012845465_32_2.pth │ └── 97_160_2.pth ├── datagen.py ├── flops_counter_pytorch/ │ ├── LICENSE │ ├── README.md │ ├── ptflops/ │ │ ├── __init__.py │ │ └── flops_counter.py │ ├── sample.py │ └── setup.py ├── loss.py ├── model/ │ ├── 97_160_2.pth │ └── haarcascade_frontalface_default.xml ├── net.py ├── pScores.mat ├── readme.md ├── result.csv ├── scripts/ │ └── get_state_dict.py ├── shufflenetv2.py ├── summary/ │ ├── __init__.py │ ├── example.py │ ├── model_hook.py │ ├── model_summary.py │ ├── module_mac.py │ └── summary_tree.py ├── test/ │ ├── model/ │ │ ├── 97_160_2.pth │ │ └── haarcascade_frontalface_default.xml │ ├── pScores.mat │ ├── shufflenetv2.py │ ├── test.py │ └── test_without_crop.py ├── test.py ├── test_convert_to_caffe/ │ ├── httpClient.py │ ├── model/ │ │ ├── 97_160_2.pth │ │ ├── fiiqa_shufflenetv2_1.0x.caffemodel │ │ ├── fiiqa_shufflenetv2_1.0x.prototxt │ │ └── haarcascade_frontalface_default.xml │ ├── pScores.mat │ ├── shufflenetv2.py │ ├── shufflenetv2_to_caffe.py │ ├── test.py │ └── utils/ │ ├── get_topk.py │ ├── load.py │ └── load_test_image.py ├── test_model.py ├── train.py └── train_affectnet.py