.gitignore
.pre-commit-config.yaml
LICENSE
README.md
requirements.txt
setup.py
.github/dependabot.yaml
.github/ISSUE_TEMPLATE/bug-report.yaml
.github/ISSUE_TEMPLATE/config.yaml
.github/ISSUE_TEMPLATE/documentation.yaml
.github/ISSUE_TEMPLATE/feature-request.yaml
.github/ISSUE_TEMPLATE/question.yaml
.github/workflows/ci.yaml
autocare_dlt/__init__.py
autocare_dlt.egg-info/PKG-INFO
autocare_dlt.egg-info/SOURCES.txt
autocare_dlt.egg-info/dependency_links.txt
autocare_dlt.egg-info/requires.txt
autocare_dlt.egg-info/top_level.txt
autocare_dlt/core/__init__.py
autocare_dlt/core/dataset/__init__.py
autocare_dlt/core/dataset/coco_base_dataset.py
autocare_dlt/core/dataset/coco_classification_dataset.py
autocare_dlt/core/dataset/coco_detection_dataset.py
autocare_dlt/core/dataset/coco_pose_dataset.py
autocare_dlt/core/dataset/coco_text_recognition_dataset.py
autocare_dlt/core/dataset/utils/__init__.py
autocare_dlt/core/dataset/utils/builder.py
autocare_dlt/core/dataset/utils/classification_eval.py
autocare_dlt/core/dataset/utils/coco_eval.py
autocare_dlt/core/dataset/utils/functions.py
autocare_dlt/core/dataset/utils/pose_eval.py
autocare_dlt/core/dataset/utils/regression_eval.py
autocare_dlt/core/dataset/utils/text_recognition_eval.py
autocare_dlt/core/dataset/utils/transforms.py
autocare_dlt/core/loss/__init__.py
autocare_dlt/core/loss/class_balance_loss.py
autocare_dlt/core/loss/ctc_loss.py
autocare_dlt/core/loss/focal_loss.py
autocare_dlt/core/loss/iou_loss.py
autocare_dlt/core/loss/loss_manager.py
autocare_dlt/core/loss/lpr_loss.py
autocare_dlt/core/loss/pose_loss.py
autocare_dlt/core/loss/retinanet_loss.py
autocare_dlt/core/loss/ssd4point_loss.py
autocare_dlt/core/loss/ssd_loss.py
autocare_dlt/core/loss/yolo_loss.py
autocare_dlt/core/model/__init__.py
autocare_dlt/core/model/backbone/VGG_16_backbone.py
autocare_dlt/core/model/backbone/__init__.py
autocare_dlt/core/model/backbone/yolov5_backbone.py
autocare_dlt/core/model/classifier/__init__.py
autocare_dlt/core/model/classifier/base_classifier.py
autocare_dlt/core/model/classifier/classifier.py
autocare_dlt/core/model/detector/__init__.py
autocare_dlt/core/model/detector/base_detector.py
autocare_dlt/core/model/detector/retinanet.py
autocare_dlt/core/model/detector/ssd.py
autocare_dlt/core/model/detector/yolov5.py
autocare_dlt/core/model/head/__init__.py
autocare_dlt/core/model/head/cls_head.py
autocare_dlt/core/model/head/pose_head.py
autocare_dlt/core/model/head/reg_head.py
autocare_dlt/core/model/head/retinanet_head.py
autocare_dlt/core/model/head/ssd_head.py
autocare_dlt/core/model/head/ssd_head_4Point.py
autocare_dlt/core/model/head/yolov5_head.py
autocare_dlt/core/model/neck/__init__.py
autocare_dlt/core/model/neck/deconv_neck.py
autocare_dlt/core/model/neck/fpn.py
autocare_dlt/core/model/neck/gap.py
autocare_dlt/core/model/neck/identity.py
autocare_dlt/core/model/neck/ssd_neck.py
autocare_dlt/core/model/neck/yolov5_neck.py
autocare_dlt/core/model/pose_estimation/__init__.py
autocare_dlt/core/model/pose_estimation/base_pose_estimation.py
autocare_dlt/core/model/pose_estimation/pose_estimation.py
autocare_dlt/core/model/regressor/__init__.py
autocare_dlt/core/model/regressor/base_regressor.py
autocare_dlt/core/model/regressor/regressor.py
autocare_dlt/core/model/text_recognition/__init__.py
autocare_dlt/core/model/text_recognition/base_text_recognition.py
autocare_dlt/core/model/text_recognition/lpr.py
autocare_dlt/core/model/text_recognition/modules/attention.py
autocare_dlt/core/model/text_recognition/modules/bilstm.py
autocare_dlt/core/model/utils/builder.py
autocare_dlt/core/model/utils/ema.py
autocare_dlt/core/model/utils/functions.py
autocare_dlt/core/model/utils/yolov5_blocks.py
autocare_dlt/core/trainer/__init__.py
autocare_dlt/core/trainer/base_trainer.py
autocare_dlt/core/trainer/cls_trainer.py
autocare_dlt/core/trainer/det_trainer.py
autocare_dlt/core/trainer/pose_trainer.py
autocare_dlt/core/trainer/reg_trainer.py
autocare_dlt/core/trainer/str_trainer.py
autocare_dlt/core/utils/__init__.py
autocare_dlt/core/utils/boxes.py
autocare_dlt/core/utils/checkpoint.py
autocare_dlt/core/utils/dist.py
autocare_dlt/core/utils/functions.py
autocare_dlt/core/utils/inference.py
autocare_dlt/core/utils/lr_scheduler.py
autocare_dlt/core/utils/smart_dict.py
autocare_dlt/tools/__init__.py
autocare_dlt/tools/eval.py
autocare_dlt/tools/export_onnx.py
autocare_dlt/tools/inference.py
autocare_dlt/tools/train.py
autocare_dlt/utils/__init__.py
autocare_dlt/utils/config.py
autocare_dlt/utils/debugging.py
autocare_dlt/utils/visualization.py
tests/__init__.py
tests/assets/README.md
tests/assets/classification/cat_and_dog/project.json
tests/assets/classification/cat_and_dog/coco/coco.json
tests/assets/classification/cat_and_dog/images/cat.0.jpg
tests/assets/classification/cat_and_dog/images/cat.1.jpg
tests/assets/classification/cat_and_dog/images/cat.10.jpg
tests/assets/classification/cat_and_dog/images/cat.11.jpg
tests/assets/classification/cat_and_dog/images/cat.12.jpg
tests/assets/classification/cat_and_dog/images/cat.13.jpg
tests/assets/classification/cat_and_dog/images/cat.14.jpg
tests/assets/classification/cat_and_dog/images/cat.15.jpg
tests/assets/classification/cat_and_dog/images/cat.16.jpg
tests/assets/classification/cat_and_dog/images/cat.17.jpg
tests/assets/classification/cat_and_dog/images/cat.18.jpg
tests/assets/classification/cat_and_dog/images/cat.19.jpg
tests/assets/classification/cat_and_dog/images/cat.2.jpg
tests/assets/classification/cat_and_dog/images/cat.3.jpg
tests/assets/classification/cat_and_dog/images/cat.4.jpg
tests/assets/classification/cat_and_dog/images/cat.5.jpg
tests/assets/classification/cat_and_dog/images/cat.6.jpg
tests/assets/classification/cat_and_dog/images/cat.7.jpg
tests/assets/classification/cat_and_dog/images/cat.8.jpg
tests/assets/classification/cat_and_dog/images/cat.9.jpg
tests/assets/classification/cat_and_dog/images/dog.0.jpg
tests/assets/classification/cat_and_dog/images/dog.1.jpg
tests/assets/classification/cat_and_dog/images/dog.10.jpg
tests/assets/classification/cat_and_dog/images/dog.11.jpg
tests/assets/classification/cat_and_dog/images/dog.12.jpg
tests/assets/classification/cat_and_dog/images/dog.13.jpg
tests/assets/classification/cat_and_dog/images/dog.14.jpg
tests/assets/classification/cat_and_dog/images/dog.15.jpg
tests/assets/classification/cat_and_dog/images/dog.16.jpg
tests/assets/classification/cat_and_dog/images/dog.17.jpg
tests/assets/classification/cat_and_dog/images/dog.18.jpg
tests/assets/classification/cat_and_dog/images/dog.19.jpg
tests/assets/classification/cat_and_dog/images/dog.2.jpg
tests/assets/classification/cat_and_dog/images/dog.3.jpg
tests/assets/classification/cat_and_dog/images/dog.4.jpg
tests/assets/classification/cat_and_dog/images/dog.5.jpg
tests/assets/classification/cat_and_dog/images/dog.6.jpg
tests/assets/classification/cat_and_dog/images/dog.7.jpg
tests/assets/classification/cat_and_dog/images/dog.8.jpg
tests/assets/classification/cat_and_dog/images/dog.9.jpg
tests/assets/classification/cat_and_dog/labels/038dfba4-659f-405a-9cc1-63f0dd1e0276.json
tests/assets/classification/cat_and_dog/labels/03f86f70-36e6-4470-a031-51b5676dea47.json
tests/assets/classification/cat_and_dog/labels/0e0d3e2f-ac88-406e-ab29-e4aeda6cefa7.json
tests/assets/classification/cat_and_dog/labels/0ec94231-fd22-45b1-9aa2-537678c1e4cb.json
tests/assets/classification/cat_and_dog/labels/1a0eff65-f091-4258-8013-4e802d8dc8c4.json
tests/assets/classification/cat_and_dog/labels/236259f8-dd56-4dd1-936f-eafe9e6533f3.json
tests/assets/classification/cat_and_dog/labels/2ee9e334-c730-470e-a767-b5466cb39e58.json
tests/assets/classification/cat_and_dog/labels/319662d8-069f-4cd2-9c87-5ee2c453f75a.json
tests/assets/classification/cat_and_dog/labels/338f29b0-1df4-4160-bc49-335f7f692ad9.json
tests/assets/classification/cat_and_dog/labels/351e7d6a-2eca-417b-8c8a-b2c5cf473cad.json
tests/assets/classification/cat_and_dog/labels/36b97bf2-756a-4f82-8929-f99664447e15.json
tests/assets/classification/cat_and_dog/labels/43a386f0-0f5d-44a9-a1d3-b81df2e8f4c2.json
tests/assets/classification/cat_and_dog/labels/468948b0-78c4-42bf-aad8-a02eaced4c58.json
tests/assets/classification/cat_and_dog/labels/4bf3d3b4-921a-4afe-bab7-32b5a7e52b16.json
tests/assets/classification/cat_and_dog/labels/4ebcb5c3-b361-42ec-8261-b375bc79a13a.json
tests/assets/classification/cat_and_dog/labels/501024d1-2733-4a72-9196-bc1ecac2748d.json
tests/assets/classification/cat_and_dog/labels/559bf8f2-a21d-42f4-9d0a-754316cd2e22.json
tests/assets/classification/cat_and_dog/labels/5aade67a-fbd8-47ea-afa5-83bf94663909.json
tests/assets/classification/cat_and_dog/labels/5e600860-db90-4545-b44f-70176882406d.json
tests/assets/classification/cat_and_dog/labels/68bf76b1-a3d5-4c70-86a1-5572d8d1b45e.json
tests/assets/classification/cat_and_dog/labels/6acbc432-5356-4479-a1bd-6a80615ec7f5.json
tests/assets/classification/cat_and_dog/labels/75b16d4e-affc-4f58-9d10-74225edd21b6.json
tests/assets/classification/cat_and_dog/labels/7b0a34da-19c7-43e7-9842-7ee91cc9f028.json
tests/assets/classification/cat_and_dog/labels/81bec265-bb4b-49cd-b008-927543e76b85.json
tests/assets/classification/cat_and_dog/labels/8a326c4f-3543-4cb6-a30e-c0055bdfcb61.json
tests/assets/classification/cat_and_dog/labels/8d11c4f7-63b0-4692-a0f5-a972614748b8.json
tests/assets/classification/cat_and_dog/labels/953b1c3b-1b66-4a61-8926-366d424741e2.json
tests/assets/classification/cat_and_dog/labels/96a10770-80e5-4a9a-b22b-7b1ffea04e47.json
tests/assets/classification/cat_and_dog/labels/9f926aa9-275b-43f2-87de-81f33a90223d.json
tests/assets/classification/cat_and_dog/labels/b83d52ea-71eb-49fd-8770-713b952e8541.json
tests/assets/classification/cat_and_dog/labels/b93b5e9d-7c3f-4929-bb96-742e9a5fae01.json
tests/assets/classification/cat_and_dog/labels/bcb23733-6e3a-452a-b7d2-61654ea78702.json
tests/assets/classification/cat_and_dog/labels/bea5fe05-8326-4df4-a323-20d3d1b41118.json
tests/assets/classification/cat_and_dog/labels/e144034e-60f9-4588-ad43-3bcfe722a038.json
tests/assets/classification/cat_and_dog/labels/e1d0362a-1ff6-46ef-b7b8-cb5f9d0813fa.json
tests/assets/classification/cat_and_dog/labels/e5db4cf7-7947-4081-a9fb-c91c3a2cca79.json
tests/assets/classification/cat_and_dog/labels/e5e5bdf9-7c46-4869-8bd3-43f30e5a6ed9.json
tests/assets/classification/cat_and_dog/labels/f5e587ab-99c7-4e61-b216-2891886a7e84.json
tests/assets/classification/cat_and_dog/labels/f64252bf-e9d1-4c3a-9bcd-988836a367c2.json
tests/assets/classification/cat_and_dog/labels/fa60a373-554b-4cdb-b35b-35f4c6ea8478.json
tests/assets/classification/cat_and_dog/meta/train/cat.0.jpg.json
tests/assets/classification/cat_and_dog/meta/train/cat.1.jpg.json
tests/assets/classification/cat_and_dog/meta/train/cat.10.jpg.json
tests/assets/classification/cat_and_dog/meta/train/cat.11.jpg.json
tests/assets/classification/cat_and_dog/meta/train/cat.12.jpg.json
tests/assets/classification/cat_and_dog/meta/train/cat.13.jpg.json
tests/assets/classification/cat_and_dog/meta/train/cat.14.jpg.json
tests/assets/classification/cat_and_dog/meta/train/cat.2.jpg.json
tests/assets/classification/cat_and_dog/meta/train/cat.3.jpg.json
tests/assets/classification/cat_and_dog/meta/train/cat.4.jpg.json
tests/assets/classification/cat_and_dog/meta/train/cat.5.jpg.json
tests/assets/classification/cat_and_dog/meta/train/cat.6.jpg.json
tests/assets/classification/cat_and_dog/meta/train/cat.7.jpg.json
tests/assets/classification/cat_and_dog/meta/train/cat.8.jpg.json
tests/assets/classification/cat_and_dog/meta/train/cat.9.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.0.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.1.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.10.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.11.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.12.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.13.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.14.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.2.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.3.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.4.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.5.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.6.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.7.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.8.jpg.json
tests/assets/classification/cat_and_dog/meta/train/dog.9.jpg.json
tests/assets/classification/cat_and_dog/meta/val/cat.15.jpg.json
tests/assets/classification/cat_and_dog/meta/val/cat.16.jpg.json
tests/assets/classification/cat_and_dog/meta/val/cat.17.jpg.json
tests/assets/classification/cat_and_dog/meta/val/cat.18.jpg.json
tests/assets/classification/cat_and_dog/meta/val/cat.19.jpg.json
tests/assets/classification/cat_and_dog/meta/val/dog.15.jpg.json
tests/assets/classification/cat_and_dog/meta/val/dog.16.jpg.json
tests/assets/classification/cat_and_dog/meta/val/dog.17.jpg.json
tests/assets/classification/cat_and_dog/meta/val/dog.18.jpg.json
tests/assets/classification/cat_and_dog/meta/val/dog.19.jpg.json
tests/assets/classification/configs/cat_and_dog_coco.json
tests/assets/classification/configs/cat_and_dog_superb.json
tests/assets/classification/configs/classifier.json
tests/assets/detection/configs/.gitkeep
tests/assets/detection/configs/coco_small.json
tests/assets/detection/configs/retinanet_resnet18.json
tests/assets/detection/configs/retinanet_resnet18_ema.json
tests/assets/detection/configs/retinanet_resnet18_ssl.json
tests/assets/detection/configs/ssd.json
tests/assets/detection/configs/yolov5-s.json
tests/assets/detection/configs/yolov5-s_ssl.json
tests/assets/detection/small_coco/SSD_res18_base_inf_result.json
tests/assets/detection/small_coco/annotation.json
tests/assets/detection/small_coco/img/000000005802.jpg
tests/assets/detection/small_coco/img/000000060623.jpg
tests/assets/detection/small_coco/img/000000118113.jpg
tests/assets/detection/small_coco/img/000000184613.jpg
tests/assets/detection/small_coco/img/000000193271.jpg
tests/assets/detection/small_coco/img/000000222564.jpg
tests/assets/detection/small_coco/img/000000224736.jpg
tests/assets/detection/small_coco/img/000000309022.jpg
tests/assets/detection/small_coco/img/000000318219.jpg
tests/assets/detection/small_coco/img/000000374628.jpg
tests/assets/detection/small_coco/img/000000391895.jpg
tests/assets/detection/small_coco/img/000000403013.jpg
tests/assets/detection/small_coco/img/000000483108.jpg
tests/assets/detection/small_coco/img/000000522418.jpg
tests/assets/detection/small_coco/img/000000554625.jpg
tests/assets/detection/small_coco/img/000000574769.jpg
tests/assets/pose/configs/.gitkeep
tests/assets/pose/configs/HumanPoseNet.json
tests/assets/pose/configs/pose_small.json
tests/assets/pose/small_coco_pose/annotation.json
tests/assets/pose/small_coco_pose/fake_labels.json
tests/assets/pose/small_coco_pose/fake_preds.json
tests/assets/pose/small_coco_pose/fake_targets.json
tests/assets/pose/small_coco_pose/fake_wrong_targets.json
tests/assets/pose/small_coco_pose/img/000000091797.jpg
tests/assets/pose/small_coco_pose/img/000000122438.jpg
tests/assets/pose/small_coco_pose/img/000000137366.jpg
tests/assets/pose/small_coco_pose/img/000000184697.jpg
tests/assets/pose/small_coco_pose/img/000000186883.jpg
tests/assets/pose/small_coco_pose/img/000000331126.jpg
tests/assets/pose/small_coco_pose/img/000000356092.jpg
tests/assets/pose/small_coco_pose/img/000000404801.jpg
tests/assets/pose/small_coco_pose/img/000000449657.jpg
tests/assets/pose/small_coco_pose/img/000000454478.jpg
tests/assets/pose/small_coco_pose/img/000000508286.jpg
tests/assets/pose/small_coco_pose/img/000000517306.jpg
tests/assets/pose/small_coco_pose/img/000000534406.jpg
tests/assets/pose/small_coco_pose/img/000000543392.jpg
tests/assets/pose/small_coco_pose/img/000000566992.jpg
tests/assets/pose/small_coco_pose/img/000000567437.jpg
tests/assets/regression/configs/regressor_efficientnetv2.json
tests/assets/regression/configs/rs_age.json
tests/assets/regression/test_regression_dataset/project.json
tests/assets/regression/test_regression_dataset/images/RS_2021_12_17_08_00_00_29288_0.7824_0.0954_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_17_08_00_00_77224_0.8966_0.0888_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_17_08_00_00_87444_0.9134_0.0505_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_17_13_00_00_95004_0.8876_0.0512_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_17_13_00_00_99988_0.9276_0.0621_1.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_17_16_30_00_80248_0.9095_0.1045_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_17_16_30_00_84560_0.8657_0.0510_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_18_08_00_00_26880_0.9001_0.0551_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_18_08_00_00_30436_0.9183_0.0623_1.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_18_16_30_00_22792_0.9131_0.0723_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_19_08_00_00_71036_0.9323_0.0664_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_19_08_00_00_88648_0.9079_0.0634_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_20_16_30_00_40936_0.9162_0.0523_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_21_08_00_00_9156_0.9153_0.1236_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_22_08_00_00_37100_0.8516_0.2016_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_22_13_00_00_73304_0.9175_0.0658_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_23_08_00_00_34356_0.9137_0.1100_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_23_08_00_00_57764_0.8969_0.0675_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_24_08_00_00_1620_0.9108_0.0896_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_24_08_00_00_26860_0.9344_0.0876_2.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_24_08_00_00_41580_0.9241_0.1472_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_24_08_00_00_63560_0.9045_0.0541_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_24_13_00_00_11880_0.9251_0.0705_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_24_13_00_00_64860_0.9360_0.0813_1.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_24_16_30_00_65760_0.9206_0.0755_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_25_08_00_00_52540_0.9299_0.0511_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_25_16_30_00_17580_0.9370_0.0749_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_25_16_30_00_32020_0.9174_0.0540_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_25_16_30_00_37760_0.8403_0.1537_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_25_16_30_00_41320_0.9381_0.0750_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_26_16_30_00_58220_0.9272_0.0612_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_26_16_30_00_69020_0.9115_0.0511_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_28_08_00_00_7200_0.9075_0.0762_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_30_08_00_00_37800_0.9019_0.0605_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_30_13_00_00_15040_0.9273_0.0846_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_31_08_00_00_70840_0.9172_0.0739_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_31_16_30_00_34520_0.9449_0.0752_0.png
tests/assets/regression/test_regression_dataset/images/RS_2021_12_31_16_30_00_41040_0.9113_0.0601_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_01_08_00_00_12640_0.9083_0.0554_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_01_08_00_00_15440_0.8926_0.1061_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_01_08_00_00_38420_0.9287_0.0639_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_01_16_30_00_60280_0.9023_0.0529_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_02_08_00_00_19880_0.9092_0.1328_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_02_08_00_00_5500_0.5869_0.3166_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_02_16_30_00_28680_0.9224_0.0546_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_02_16_30_00_51940_0.9181_0.0853_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_02_16_30_00_52100_0.9250_0.0589_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_02_16_30_00_56640_0.9026_0.1225_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_03_08_00_00_9540_0.9125_0.0736_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_03_16_30_00_31960_0.9288_0.0901_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_03_16_30_00_65440_0.9021_0.0556_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_04_08_00_00_31360_0.9256_0.1295_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_04_16_30_00_7240_0.9188_0.0543_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_06_08_00_00_64680_0.9452_0.0697_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_06_16_30_00_15060_0.9124_0.0850_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_06_16_30_00_4720_0.9223_0.0558_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_08_08_00_00_61780_0.9347_0.0609_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_08_08_00_00_71780_0.9240_0.0530_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_08_16_30_00_47580_0.9321_0.0560_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_09_13_00_00_55280_0.8799_0.0567_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_11_13_00_00_71060_0.9129_0.0701_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_11_13_00_00_7520_0.9228_0.0577_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_11_16_30_00_10060_0.9315_0.0860_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_11_16_30_00_51620_0.9426_0.0839_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_12_08_00_00_16740_0.9134_0.1071_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_12_08_00_00_4280_0.9116_0.0701_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_13_08_00_00_45140_0.9346_0.0594_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_13_16_30_00_34180_0.9091_0.0676_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_13_16_30_00_44240_0.9083_0.0503_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_13_16_30_00_71420_0.9125_0.1203_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_13_16_30_00_7160_0.9305_0.0752_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_14_16_30_00_47580_0.9303_0.1027_1.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_15_08_00_00_31300_0.9333_0.1033_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_16_13_00_00_5480_0.9310_0.0649_1.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_17_08_00_00_27720_0.9342_0.0512_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_17_16_30_00_22680_0.9288_0.0716_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_19_08_00_00_26520_0.9138_0.0517_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_19_08_00_00_45960_0.8903_0.0539_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_19_16_30_00_54860_0.9337_0.0741_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_20_13_00_00_12340_0.9155_0.0554_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_23_16_30_00_49860_0.9115_0.1734_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_24_13_00_00_21320_0.9423_0.0630_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_25_16_30_00_50040_0.9197_0.0712_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_26_16_30_00_25520_0.8570_0.1734_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_27_16_30_00_44940_0.9427_0.0634_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_01_30_16_30_00_36120_0.9108_0.1391_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_02_01_13_00_00_53780_0.8837_0.1468_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_02_02_13_00_00_7740_0.9401_0.0815_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_02_04_07_00_00_384660_0.9264_0.1280_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_02_07_13_00_00_43220_0.7981_0.0683_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_02_07_15_30_00_23140_0.7007_0.0500_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_02_08_15_30_00_43681_0.8208_0.0511_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_02_08_15_30_00_60686_0.8379_0.0920_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_02_19_15_30_00_1340_0.8386_0.0540_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_02_19_15_30_00_14000_0.9522_0.0873_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_02_19_15_30_00_52020_0.9297_0.0550_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_02_19_15_30_00_68480_0.9310_0.0881_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_02_26_15_30_00_23000_0.8854_0.0574_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_03_08_07_00_00_755520_0.6733_0.1464_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_03_09_07_00_00_734220_0.7943_0.0528_0.png
tests/assets/regression/test_regression_dataset/images/RS_2022_03_09_07_00_00_768300_0.7254_0.1403_0.png
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_17_08_00_00_29288_0.7824_0.0954_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_17_08_00_00_77224_0.8966_0.0888_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_17_08_00_00_87444_0.9134_0.0505_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_17_13_00_00_95004_0.8876_0.0512_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_17_13_00_00_99988_0.9276_0.0621_1.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_17_16_30_00_80248_0.9095_0.1045_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_17_16_30_00_84560_0.8657_0.0510_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_18_08_00_00_26880_0.9001_0.0551_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_18_08_00_00_30436_0.9183_0.0623_1.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_18_16_30_00_22792_0.9131_0.0723_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_19_08_00_00_71036_0.9323_0.0664_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_19_08_00_00_88648_0.9079_0.0634_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_20_16_30_00_40936_0.9162_0.0523_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_21_08_00_00_9156_0.9153_0.1236_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_22_08_00_00_37100_0.8516_0.2016_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_22_13_00_00_73304_0.9175_0.0658_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_23_08_00_00_34356_0.9137_0.1100_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_23_08_00_00_57764_0.8969_0.0675_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_24_08_00_00_1620_0.9108_0.0896_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_24_08_00_00_26860_0.9344_0.0876_2.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_24_08_00_00_41580_0.9241_0.1472_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_24_08_00_00_63560_0.9045_0.0541_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_24_13_00_00_11880_0.9251_0.0705_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_24_13_00_00_64860_0.9360_0.0813_1.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_24_16_30_00_65760_0.9206_0.0755_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_25_08_00_00_52540_0.9299_0.0511_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_25_16_30_00_17580_0.9370_0.0749_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_25_16_30_00_32020_0.9174_0.0540_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_25_16_30_00_37760_0.8403_0.1537_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_25_16_30_00_41320_0.9381_0.0750_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_26_16_30_00_58220_0.9272_0.0612_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_26_16_30_00_69020_0.9115_0.0511_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_28_08_00_00_7200_0.9075_0.0762_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_30_08_00_00_37800_0.9019_0.0605_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_30_13_00_00_15040_0.9273_0.0846_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_31_08_00_00_70840_0.9172_0.0739_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_31_16_30_00_34520_0.9449_0.0752_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2021_12_31_16_30_00_41040_0.9113_0.0601_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_01_08_00_00_12640_0.9083_0.0554_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_01_08_00_00_15440_0.8926_0.1061_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_01_08_00_00_38420_0.9287_0.0639_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_01_16_30_00_60280_0.9023_0.0529_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_02_08_00_00_19880_0.9092_0.1328_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_02_08_00_00_5500_0.5869_0.3166_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_02_16_30_00_28680_0.9224_0.0546_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_02_16_30_00_51940_0.9181_0.0853_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_02_16_30_00_52100_0.9250_0.0589_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_02_16_30_00_56640_0.9026_0.1225_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_03_08_00_00_9540_0.9125_0.0736_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_03_16_30_00_31960_0.9288_0.0901_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_03_16_30_00_65440_0.9021_0.0556_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_04_08_00_00_31360_0.9256_0.1295_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_04_16_30_00_7240_0.9188_0.0543_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_06_08_00_00_64680_0.9452_0.0697_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_06_16_30_00_15060_0.9124_0.0850_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_06_16_30_00_4720_0.9223_0.0558_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_08_08_00_00_61780_0.9347_0.0609_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_08_08_00_00_71780_0.9240_0.0530_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_08_16_30_00_47580_0.9321_0.0560_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_09_13_00_00_55280_0.8799_0.0567_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_11_13_00_00_71060_0.9129_0.0701_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_11_13_00_00_7520_0.9228_0.0577_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_11_16_30_00_10060_0.9315_0.0860_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_11_16_30_00_51620_0.9426_0.0839_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_12_08_00_00_16740_0.9134_0.1071_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_12_08_00_00_4280_0.9116_0.0701_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_13_08_00_00_45140_0.9346_0.0594_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_13_16_30_00_34180_0.9091_0.0676_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_13_16_30_00_44240_0.9083_0.0503_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_13_16_30_00_71420_0.9125_0.1203_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_13_16_30_00_7160_0.9305_0.0752_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_14_16_30_00_47580_0.9303_0.1027_1.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_15_08_00_00_31300_0.9333_0.1033_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_16_13_00_00_5480_0.9310_0.0649_1.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_17_08_00_00_27720_0.9342_0.0512_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_17_16_30_00_22680_0.9288_0.0716_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_19_08_00_00_26520_0.9138_0.0517_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_19_08_00_00_45960_0.8903_0.0539_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_19_16_30_00_54860_0.9337_0.0741_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_20_13_00_00_12340_0.9155_0.0554_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_23_16_30_00_49860_0.9115_0.1734_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_24_13_00_00_21320_0.9423_0.0630_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_25_16_30_00_50040_0.9197_0.0712_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_26_16_30_00_25520_0.8570_0.1734_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_27_16_30_00_44940_0.9427_0.0634_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_01_30_16_30_00_36120_0.9108_0.1391_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_02_01_13_00_00_53780_0.8837_0.1468_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_02_02_13_00_00_7740_0.9401_0.0815_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_02_04_07_00_00_384660_0.9264_0.1280_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_02_07_13_00_00_43220_0.7981_0.0683_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_02_07_15_30_00_23140_0.7007_0.0500_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_02_08_15_30_00_43681_0.8208_0.0511_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_02_08_15_30_00_60686_0.8379_0.0920_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_02_19_15_30_00_1340_0.8386_0.0540_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_02_19_15_30_00_14000_0.9522_0.0873_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_02_19_15_30_00_52020_0.9297_0.0550_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_02_19_15_30_00_68480_0.9310_0.0881_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_02_26_15_30_00_23000_0.8854_0.0574_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_03_08_07_00_00_755520_0.6733_0.1464_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_03_09_07_00_00_734220_0.7943_0.0528_0.png.json
tests/assets/regression/test_regression_dataset/labels/RS_2022_03_09_07_00_00_768300_0.7254_0.1403_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_17_08_00_00_29288_0.7824_0.0954_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_17_08_00_00_77224_0.8966_0.0888_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_17_13_00_00_95004_0.8876_0.0512_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_17_13_00_00_99988_0.9276_0.0621_1.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_17_16_30_00_84560_0.8657_0.0510_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_18_08_00_00_26880_0.9001_0.0551_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_18_08_00_00_30436_0.9183_0.0623_1.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_18_16_30_00_22792_0.9131_0.0723_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_20_16_30_00_40936_0.9162_0.0523_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_21_08_00_00_9156_0.9153_0.1236_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_22_08_00_00_37100_0.8516_0.2016_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_22_13_00_00_73304_0.9175_0.0658_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_23_08_00_00_34356_0.9137_0.1100_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_23_08_00_00_57764_0.8969_0.0675_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_24_08_00_00_26860_0.9344_0.0876_2.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_24_08_00_00_41580_0.9241_0.1472_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_24_08_00_00_63560_0.9045_0.0541_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_24_13_00_00_11880_0.9251_0.0705_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_24_13_00_00_64860_0.9360_0.0813_1.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_25_16_30_00_17580_0.9370_0.0749_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_25_16_30_00_32020_0.9174_0.0540_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_25_16_30_00_41320_0.9381_0.0750_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_26_16_30_00_58220_0.9272_0.0612_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_28_08_00_00_7200_0.9075_0.0762_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_30_08_00_00_37800_0.9019_0.0605_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_30_13_00_00_15040_0.9273_0.0846_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_31_16_30_00_34520_0.9449_0.0752_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2021_12_31_16_30_00_41040_0.9113_0.0601_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_01_08_00_00_15440_0.8926_0.1061_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_01_16_30_00_60280_0.9023_0.0529_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_02_08_00_00_19880_0.9092_0.1328_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_02_16_30_00_28680_0.9224_0.0546_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_02_16_30_00_56640_0.9026_0.1225_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_03_08_00_00_9540_0.9125_0.0736_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_03_16_30_00_31960_0.9288_0.0901_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_03_16_30_00_65440_0.9021_0.0556_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_04_08_00_00_31360_0.9256_0.1295_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_04_16_30_00_7240_0.9188_0.0543_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_06_16_30_00_15060_0.9124_0.0850_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_06_16_30_00_4720_0.9223_0.0558_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_08_08_00_00_61780_0.9347_0.0609_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_08_08_00_00_71780_0.9240_0.0530_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_08_16_30_00_47580_0.9321_0.0560_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_09_13_00_00_55280_0.8799_0.0567_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_11_13_00_00_71060_0.9129_0.0701_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_11_16_30_00_51620_0.9426_0.0839_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_13_08_00_00_45140_0.9346_0.0594_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_13_16_30_00_71420_0.9125_0.1203_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_13_16_30_00_7160_0.9305_0.0752_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_14_16_30_00_47580_0.9303_0.1027_1.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_15_08_00_00_31300_0.9333_0.1033_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_16_13_00_00_5480_0.9310_0.0649_1.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_17_08_00_00_27720_0.9342_0.0512_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_19_08_00_00_26520_0.9138_0.0517_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_19_08_00_00_45960_0.8903_0.0539_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_19_16_30_00_54860_0.9337_0.0741_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_20_13_00_00_12340_0.9155_0.0554_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_23_16_30_00_49860_0.9115_0.1734_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_26_16_30_00_25520_0.8570_0.1734_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_01_27_16_30_00_44940_0.9427_0.0634_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_02_01_13_00_00_53780_0.8837_0.1468_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_02_04_07_00_00_384660_0.9264_0.1280_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_02_07_15_30_00_23140_0.7007_0.0500_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_02_08_15_30_00_43681_0.8208_0.0511_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_02_08_15_30_00_60686_0.8379_0.0920_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_02_19_15_30_00_1340_0.8386_0.0540_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_02_19_15_30_00_14000_0.9522_0.0873_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_02_19_15_30_00_52020_0.9297_0.0550_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_02_19_15_30_00_68480_0.9310_0.0881_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_02_26_15_30_00_23000_0.8854_0.0574_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_03_08_07_00_00_755520_0.6733_0.1464_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_03_09_07_00_00_734220_0.7943_0.0528_0.png.json
tests/assets/regression/test_regression_dataset/meta/train/RS_2022_03_09_07_00_00_768300_0.7254_0.1403_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2021_12_17_08_00_00_87444_0.9134_0.0505_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2021_12_17_16_30_00_80248_0.9095_0.1045_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2021_12_19_08_00_00_71036_0.9323_0.0664_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2021_12_19_08_00_00_88648_0.9079_0.0634_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2021_12_24_08_00_00_1620_0.9108_0.0896_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2021_12_24_16_30_00_65760_0.9206_0.0755_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2021_12_25_08_00_00_52540_0.9299_0.0511_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2021_12_25_16_30_00_37760_0.8403_0.1537_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2021_12_26_16_30_00_69020_0.9115_0.0511_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2021_12_31_08_00_00_70840_0.9172_0.0739_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_01_08_00_00_12640_0.9083_0.0554_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_01_08_00_00_38420_0.9287_0.0639_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_02_08_00_00_5500_0.5869_0.3166_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_02_16_30_00_51940_0.9181_0.0853_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_02_16_30_00_52100_0.9250_0.0589_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_06_08_00_00_64680_0.9452_0.0697_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_11_13_00_00_7520_0.9228_0.0577_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_11_16_30_00_10060_0.9315_0.0860_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_12_08_00_00_16740_0.9134_0.1071_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_12_08_00_00_4280_0.9116_0.0701_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_13_16_30_00_34180_0.9091_0.0676_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_13_16_30_00_44240_0.9083_0.0503_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_17_16_30_00_22680_0.9288_0.0716_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_24_13_00_00_21320_0.9423_0.0630_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_25_16_30_00_50040_0.9197_0.0712_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_01_30_16_30_00_36120_0.9108_0.1391_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_02_02_13_00_00_7740_0.9401_0.0815_0.png.json
tests/assets/regression/test_regression_dataset/meta/val/RS_2022_02_07_13_00_00_43220_0.7981_0.0683_0.png.json
tests/core/__init__.py
tests/core/dataset/__init__.py
tests/core/dataset/test_coco_base_dataset.py
tests/core/dataset/test_coco_classification_dataset.py
tests/core/dataset/test_coco_dataset.py
tests/core/dataset/test_coco_pose_dataset.py
tests/core/dataset/test_mosaic_dataset.py
tests/core/dataset/utils/__init__.py
tests/core/dataset/utils/test_coco_eval.py
tests/core/dataset/utils/test_pose_eval.py
tests/core/dataset/utils/test_regression_eval.py
tests/core/dataset/utils/test_transforms.py
tests/core/loss/__init__.py
tests/core/loss/test_focal_loss.py
tests/core/loss/test_iou_loss.py
tests/core/loss/test_pose_loss.py
tests/core/model/__init__.py
tests/core/model/classifier/__init__.py
tests/core/model/classifier/test_base_classifier.py
tests/core/model/classifier/test_classifier.py
tests/core/model/detector/__init__.py
tests/core/model/detector/test_base_detector.py
tests/core/model/detector/test_retinanet.py
tests/core/model/detector/test_ssd.py
tests/core/model/detector/test_yolov5.py
tests/core/model/head/__init__.py
tests/core/model/head/test_cls_head.py
tests/core/model/head/test_pose_head.py
tests/core/model/head/test_reg_head.py
tests/core/model/head/test_retinanet_head.py
tests/core/model/head/test_ssd_head.py
tests/core/model/head/test_ssd_head_4Point.py
tests/core/model/head/test_yolov5_head.py
tests/core/model/neck/__init__.py
tests/core/model/neck/test_fpn.py
tests/core/model/neck/test_ssd_neck.py
tests/core/model/neck/test_yolov5_neck.py
tests/core/model/pose_estimation/__init__.py
tests/core/model/pose_estimation/test_base_pose_estimation.py
tests/core/model/pose_estimation/test_pose_estimation.py
tests/core/model/regressor/test_regressor.py
tests/core/model/utils/__init__.py
tests/core/model/utils/test_ema.py
tests/core/trainer/__init__.py
tests/core/trainer/test_base_trainer.py
tests/core/trainer/test_cls_trainer.py
tests/core/trainer/test_det_trainer.py
tests/core/trainer/test_pose_trainer.py
tests/core/utils/__init__.py
tests/core/utils/test_functions.py
tests/core/utils/test_lr_scheduler.py
tests/utils/__init__.py
tests/utils/test_inference.py