├── .gitignore ├── EXPORT.md ├── LICENSE.md ├── README.md ├── RESULTS.md ├── TODO.md ├── cfg ├── baseline │ ├── r50-csp.yaml │ ├── x50-csp.yaml │ ├── yolor-csp-x.yaml │ ├── yolor-csp.yaml │ ├── yolor-d6.yaml │ ├── yolor-e6.yaml │ ├── yolor-p6.yaml │ ├── yolor-w6.yaml │ ├── yolov3-spp.yaml │ ├── yolov3.yaml │ └── yolov4-csp.yaml ├── deploy │ ├── yolov7-d6.yaml │ ├── yolov7-e6.yaml │ ├── yolov7-e6e.yaml │ ├── yolov7-tiny-silu.yaml │ ├── yolov7-tiny.yaml │ ├── yolov7-w6.yaml │ ├── yolov7.yaml │ └── yolov7x.yaml ├── training │ ├── yolov7-d6.yaml │ ├── yolov7-e6.yaml │ ├── yolov7-e6e.yaml │ ├── yolov7-tiny.yaml │ ├── yolov7-w6.yaml │ ├── yolov7.yaml │ └── yolov7x.yaml ├── yolov7-landmark.yaml ├── yolov7-tiny-landmark.yaml └── yolov7-tiny-silu-landmark.yaml ├── data ├── hyp.scratch.p5.yaml ├── hyp.scratch.tiny.yaml ├── widerface.dev.yaml ├── widerface.dragon.yaml ├── widerface.yaml ├── widerface_mtfl.dragon.yaml └── widerface_mtfl.yaml ├── deploy └── triton-inference-server │ ├── README.md │ ├── boundingbox.py │ ├── client.py │ ├── data │ ├── dog.jpg │ └── dog_result.jpg │ ├── labels.py │ ├── processing.py │ └── render.py ├── detect.py ├── eval.py ├── evaluation ├── box_overlaps.pyx ├── main.py └── setup.py ├── export.py ├── figure ├── 0_Parade_marchingband_1_100.jpg ├── 10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_1045.jpg ├── 7_Cheering_Cheering_7_543.jpg ├── face_detection_sample.jpg ├── image1.jpg ├── image2.jpg └── zidane.jpg ├── hubconf.py ├── inference └── images │ ├── 0_Parade_marchingband_1_100.jpg │ ├── 10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_1045.jpg │ ├── 7_Cheering_Cheering_7_543.jpg │ ├── face_detection_sample.jpg │ ├── image1.jpg │ ├── image2.jpg │ └── zidane.jpg ├── models ├── __init__.py ├── common.py ├── experimental.py └── yolo.py ├── paper └── yolov7.pdf ├── requirements.txt ├── scripts ├── convert_to_yolo.py └── get_coco.sh ├── test.py ├── tools ├── YOLOv7trt_mask.ipynb ├── Yolov7onnx_mask.ipynb ├── datasets.ipynb ├── reparameterization.ipynb └── visualization.ipynb ├── train.py └── utils ├── __init__.py ├── activations.py ├── add_nms.py ├── autoanchor.py ├── aws ├── __init__.py ├── mime.sh ├── resume.py └── userdata.sh ├── datasets.py ├── general.py ├── google_app_engine ├── Dockerfile ├── additional_requirements.txt └── app.yaml ├── google_utils.py ├── loss.py ├── metrics.py ├── plots.py ├── torch_utils.py └── wandb_logging ├── __init__.py ├── log_dataset.py └── wandb_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /EXPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/EXPORT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/README.md -------------------------------------------------------------------------------- /RESULTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/RESULTS.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/TODO.md -------------------------------------------------------------------------------- /cfg/baseline/r50-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/baseline/r50-csp.yaml -------------------------------------------------------------------------------- /cfg/baseline/x50-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/baseline/x50-csp.yaml -------------------------------------------------------------------------------- /cfg/baseline/yolor-csp-x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/baseline/yolor-csp-x.yaml -------------------------------------------------------------------------------- /cfg/baseline/yolor-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/baseline/yolor-csp.yaml -------------------------------------------------------------------------------- /cfg/baseline/yolor-d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/baseline/yolor-d6.yaml -------------------------------------------------------------------------------- /cfg/baseline/yolor-e6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/baseline/yolor-e6.yaml -------------------------------------------------------------------------------- /cfg/baseline/yolor-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/baseline/yolor-p6.yaml -------------------------------------------------------------------------------- /cfg/baseline/yolor-w6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/baseline/yolor-w6.yaml -------------------------------------------------------------------------------- /cfg/baseline/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/baseline/yolov3-spp.yaml -------------------------------------------------------------------------------- /cfg/baseline/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/baseline/yolov3.yaml -------------------------------------------------------------------------------- /cfg/baseline/yolov4-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/baseline/yolov4-csp.yaml -------------------------------------------------------------------------------- /cfg/deploy/yolov7-d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/deploy/yolov7-d6.yaml -------------------------------------------------------------------------------- /cfg/deploy/yolov7-e6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/deploy/yolov7-e6.yaml -------------------------------------------------------------------------------- /cfg/deploy/yolov7-e6e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/deploy/yolov7-e6e.yaml -------------------------------------------------------------------------------- /cfg/deploy/yolov7-tiny-silu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/deploy/yolov7-tiny-silu.yaml -------------------------------------------------------------------------------- /cfg/deploy/yolov7-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/deploy/yolov7-tiny.yaml -------------------------------------------------------------------------------- /cfg/deploy/yolov7-w6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/deploy/yolov7-w6.yaml -------------------------------------------------------------------------------- /cfg/deploy/yolov7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/deploy/yolov7.yaml -------------------------------------------------------------------------------- /cfg/deploy/yolov7x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/deploy/yolov7x.yaml -------------------------------------------------------------------------------- /cfg/training/yolov7-d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/training/yolov7-d6.yaml -------------------------------------------------------------------------------- /cfg/training/yolov7-e6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/training/yolov7-e6.yaml -------------------------------------------------------------------------------- /cfg/training/yolov7-e6e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/training/yolov7-e6e.yaml -------------------------------------------------------------------------------- /cfg/training/yolov7-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/training/yolov7-tiny.yaml -------------------------------------------------------------------------------- /cfg/training/yolov7-w6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/training/yolov7-w6.yaml -------------------------------------------------------------------------------- /cfg/training/yolov7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/training/yolov7.yaml -------------------------------------------------------------------------------- /cfg/training/yolov7x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/training/yolov7x.yaml -------------------------------------------------------------------------------- /cfg/yolov7-landmark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/yolov7-landmark.yaml -------------------------------------------------------------------------------- /cfg/yolov7-tiny-landmark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/yolov7-tiny-landmark.yaml -------------------------------------------------------------------------------- /cfg/yolov7-tiny-silu-landmark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/cfg/yolov7-tiny-silu-landmark.yaml -------------------------------------------------------------------------------- /data/hyp.scratch.p5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/data/hyp.scratch.p5.yaml -------------------------------------------------------------------------------- /data/hyp.scratch.tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/data/hyp.scratch.tiny.yaml -------------------------------------------------------------------------------- /data/widerface.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/data/widerface.dev.yaml -------------------------------------------------------------------------------- /data/widerface.dragon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/data/widerface.dragon.yaml -------------------------------------------------------------------------------- /data/widerface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/data/widerface.yaml -------------------------------------------------------------------------------- /data/widerface_mtfl.dragon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/data/widerface_mtfl.dragon.yaml -------------------------------------------------------------------------------- /data/widerface_mtfl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/data/widerface_mtfl.yaml -------------------------------------------------------------------------------- /deploy/triton-inference-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/deploy/triton-inference-server/README.md -------------------------------------------------------------------------------- /deploy/triton-inference-server/boundingbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/deploy/triton-inference-server/boundingbox.py -------------------------------------------------------------------------------- /deploy/triton-inference-server/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/deploy/triton-inference-server/client.py -------------------------------------------------------------------------------- /deploy/triton-inference-server/data/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/deploy/triton-inference-server/data/dog.jpg -------------------------------------------------------------------------------- /deploy/triton-inference-server/data/dog_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/deploy/triton-inference-server/data/dog_result.jpg -------------------------------------------------------------------------------- /deploy/triton-inference-server/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/deploy/triton-inference-server/labels.py -------------------------------------------------------------------------------- /deploy/triton-inference-server/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/deploy/triton-inference-server/processing.py -------------------------------------------------------------------------------- /deploy/triton-inference-server/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/deploy/triton-inference-server/render.py -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/detect.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/eval.py -------------------------------------------------------------------------------- /evaluation/box_overlaps.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/evaluation/box_overlaps.pyx -------------------------------------------------------------------------------- /evaluation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/evaluation/main.py -------------------------------------------------------------------------------- /evaluation/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/evaluation/setup.py -------------------------------------------------------------------------------- /export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/export.py -------------------------------------------------------------------------------- /figure/0_Parade_marchingband_1_100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/figure/0_Parade_marchingband_1_100.jpg -------------------------------------------------------------------------------- /figure/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_1045.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/figure/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_1045.jpg -------------------------------------------------------------------------------- /figure/7_Cheering_Cheering_7_543.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/figure/7_Cheering_Cheering_7_543.jpg -------------------------------------------------------------------------------- /figure/face_detection_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/figure/face_detection_sample.jpg -------------------------------------------------------------------------------- /figure/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/figure/image1.jpg -------------------------------------------------------------------------------- /figure/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/figure/image2.jpg -------------------------------------------------------------------------------- /figure/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/figure/zidane.jpg -------------------------------------------------------------------------------- /hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/hubconf.py -------------------------------------------------------------------------------- /inference/images/0_Parade_marchingband_1_100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/inference/images/0_Parade_marchingband_1_100.jpg -------------------------------------------------------------------------------- /inference/images/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_1045.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/inference/images/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_1045.jpg -------------------------------------------------------------------------------- /inference/images/7_Cheering_Cheering_7_543.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/inference/images/7_Cheering_Cheering_7_543.jpg -------------------------------------------------------------------------------- /inference/images/face_detection_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/inference/images/face_detection_sample.jpg -------------------------------------------------------------------------------- /inference/images/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/inference/images/image1.jpg -------------------------------------------------------------------------------- /inference/images/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/inference/images/image2.jpg -------------------------------------------------------------------------------- /inference/images/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/inference/images/zidane.jpg -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | # init 2 | -------------------------------------------------------------------------------- /models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/models/common.py -------------------------------------------------------------------------------- /models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/models/experimental.py -------------------------------------------------------------------------------- /models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/models/yolo.py -------------------------------------------------------------------------------- /paper/yolov7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/paper/yolov7.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/convert_to_yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/scripts/convert_to_yolo.py -------------------------------------------------------------------------------- /scripts/get_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/scripts/get_coco.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/test.py -------------------------------------------------------------------------------- /tools/YOLOv7trt_mask.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/tools/YOLOv7trt_mask.ipynb -------------------------------------------------------------------------------- /tools/Yolov7onnx_mask.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/tools/Yolov7onnx_mask.ipynb -------------------------------------------------------------------------------- /tools/datasets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/tools/datasets.ipynb -------------------------------------------------------------------------------- /tools/reparameterization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/tools/reparameterization.ipynb -------------------------------------------------------------------------------- /tools/visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/tools/visualization.ipynb -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | # init 2 | -------------------------------------------------------------------------------- /utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/activations.py -------------------------------------------------------------------------------- /utils/add_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/add_nms.py -------------------------------------------------------------------------------- /utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/autoanchor.py -------------------------------------------------------------------------------- /utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | # init 2 | -------------------------------------------------------------------------------- /utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/aws/mime.sh -------------------------------------------------------------------------------- /utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/aws/resume.py -------------------------------------------------------------------------------- /utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/aws/userdata.sh -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/general.py -------------------------------------------------------------------------------- /utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /utils/google_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/google_utils.py -------------------------------------------------------------------------------- /utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/loss.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/plots.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/torch_utils.py -------------------------------------------------------------------------------- /utils/wandb_logging/__init__.py: -------------------------------------------------------------------------------- 1 | # init 2 | -------------------------------------------------------------------------------- /utils/wandb_logging/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/wandb_logging/log_dataset.py -------------------------------------------------------------------------------- /utils/wandb_logging/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/yolov7-face-detection/HEAD/utils/wandb_logging/wandb_utils.py --------------------------------------------------------------------------------