├── .gitignore ├── readme.md └── source_code └── code_and_checkpoints ├── README.md ├── SORT_yolov5 ├── .gitmodules ├── SORT_tracker │ ├── association.py │ ├── estimation │ │ └── speed.py │ ├── kalman_filter.py │ ├── sort.py │ └── timer.py ├── tools │ ├── demo_track.py │ └── visualization.py └── yolov5 │ ├── .dockerignore │ ├── .gitattributes │ ├── .github │ ├── CODE_OF_CONDUCT.md │ ├── ISSUE_TEMPLATE │ │ ├── bug-report.yml │ │ ├── config.yml │ │ ├── feature-request.yml │ │ └── question.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── README_cn.md │ ├── SECURITY.md │ ├── dependabot.yml │ └── workflows │ │ ├── ci-testing.yml │ │ ├── codeql-analysis.yml │ │ ├── docker.yml │ │ ├── greetings.yml │ │ └── stale.yml │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── classify │ ├── predict.py │ ├── train.py │ └── val.py │ ├── data │ ├── Argoverse.yaml │ ├── GlobalWheat2020.yaml │ ├── ImageNet.yaml │ ├── Objects365.yaml │ ├── SKU-110K.yaml │ ├── VOC.yaml │ ├── VisDrone.yaml │ ├── coco.yaml │ ├── coco128.yaml │ ├── hyps │ │ ├── hyp.Objects365.yaml │ │ ├── hyp.VOC.yaml │ │ ├── hyp.scratch-high.yaml │ │ ├── hyp.scratch-low.yaml │ │ └── hyp.scratch-med.yaml │ ├── images │ │ ├── bus.jpg │ │ └── zidane.jpg │ ├── scripts │ │ ├── download_weights.sh │ │ ├── get_coco.sh │ │ ├── get_coco128.sh │ │ └── get_imagenet.sh │ └── xView.yaml │ ├── detect.py │ ├── export.py │ ├── hubconf.py │ ├── models │ ├── __init__.py │ ├── common.py │ ├── experimental.py │ ├── hub │ │ ├── anchors.yaml │ │ ├── yolov3-spp.yaml │ │ ├── yolov3-tiny.yaml │ │ ├── yolov3.yaml │ │ ├── yolov5-bifpn.yaml │ │ ├── yolov5-fpn.yaml │ │ ├── yolov5-p2.yaml │ │ ├── yolov5-p34.yaml │ │ ├── yolov5-p6.yaml │ │ ├── yolov5-p7.yaml │ │ ├── yolov5-panet.yaml │ │ ├── yolov5l6.yaml │ │ ├── yolov5m6.yaml │ │ ├── yolov5n6.yaml │ │ ├── yolov5s-ghost.yaml │ │ ├── yolov5s-transformer.yaml │ │ ├── yolov5s6.yaml │ │ └── yolov5x6.yaml │ ├── tf.py │ ├── yolo.py │ ├── yolov5l.yaml │ ├── yolov5m.yaml │ ├── yolov5n.yaml │ ├── yolov5s.yaml │ └── yolov5x.yaml │ ├── requirements.txt │ ├── setup.cfg │ ├── train.py │ ├── tutorial.ipynb │ ├── utils │ ├── __init__.py │ ├── activations.py │ ├── augmentations.py │ ├── autoanchor.py │ ├── autobatch.py │ ├── aws │ │ ├── __init__.py │ │ ├── mime.sh │ │ ├── resume.py │ │ └── userdata.sh │ ├── benchmarks.py │ ├── callbacks.py │ ├── dataloaders.py │ ├── docker │ │ ├── Dockerfile │ │ ├── Dockerfile-arm64 │ │ └── Dockerfile-cpu │ ├── downloads.py │ ├── flask_rest_api │ │ ├── README.md │ │ ├── example_request.py │ │ └── restapi.py │ ├── general.py │ ├── google_app_engine │ │ ├── Dockerfile │ │ ├── additional_requirements.txt │ │ └── app.yaml │ ├── loggers │ │ ├── __init__.py │ │ ├── clearml │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── clearml_utils.py │ │ │ └── hpo.py │ │ ├── comet │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── comet_utils.py │ │ │ └── hpo.py │ │ └── wandb │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── log_dataset.py │ │ │ ├── sweep.py │ │ │ ├── sweep.yaml │ │ │ └── wandb_utils.py │ ├── loss.py │ ├── metrics.py │ ├── plots.py │ └── torch_utils.py │ └── val.py ├── requirements.txt ├── run_detect.sh ├── run_track.sh ├── split_video.py ├── track.py ├── visem_utils.py └── yolov7 ├── .gitignore ├── LICENSE.md ├── README.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 ├── data ├── coco.yaml ├── hyp.scratch.custom.yaml ├── hyp.scratch.p5.yaml ├── hyp.scratch.p6.yaml └── hyp.scratch.tiny.yaml ├── deploy └── triton-inference-server │ ├── README.md │ ├── boundingbox.py │ ├── client.py │ ├── labels.py │ ├── processing.py │ └── render.py ├── detect.py ├── export.py ├── hubconf.py ├── models ├── __init__.py ├── common.py ├── experimental.py └── yolo.py ├── paper └── yolov7.pdf ├── requirements.txt ├── scripts └── get_coco.sh ├── test.py ├── tools ├── YOLOv7-Dynamic-Batch-ONNXRUNTIME.ipynb ├── YOLOv7-Dynamic-Batch-TENSORRT.ipynb ├── YOLOv7CoreML.ipynb ├── YOLOv7onnx.ipynb ├── YOLOv7trt.ipynb ├── compare_YOLOv7_vs_YOLOv5m6.ipynb ├── compare_YOLOv7_vs_YOLOv5m6_half.ipynb ├── compare_YOLOv7_vs_YOLOv5s6.ipynb ├── compare_YOLOv7e6_vs_YOLOv5x6.ipynb ├── compare_YOLOv7e6_vs_YOLOv5x6_half.ipynb ├── instance.ipynb ├── keypoint.ipynb ├── reparameterization.ipynb └── visualization.ipynb ├── train.py ├── train_aux.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/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/.gitignore -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/readme.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/README.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/.gitmodules -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/SORT_tracker/association.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/SORT_tracker/association.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/SORT_tracker/estimation/speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/SORT_tracker/estimation/speed.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/SORT_tracker/kalman_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/SORT_tracker/kalman_filter.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/SORT_tracker/sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/SORT_tracker/sort.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/SORT_tracker/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/SORT_tracker/timer.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/tools/demo_track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/tools/demo_track.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/tools/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/tools/visualization.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.dockerignore -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.gitattributes -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/README_cn.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/SECURITY.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/dependabot.yml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/workflows/ci-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/workflows/ci-testing.yml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/workflows/docker.yml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.github/workflows/stale.yml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.gitignore -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/.pre-commit-config.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/CONTRIBUTING.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/LICENSE -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/README.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/classify/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/classify/predict.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/classify/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/classify/train.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/classify/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/classify/val.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/Argoverse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/Argoverse.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/GlobalWheat2020.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/GlobalWheat2020.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/ImageNet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/ImageNet.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/Objects365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/Objects365.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/SKU-110K.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/SKU-110K.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/VOC.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/VisDrone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/VisDrone.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/coco.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/coco128.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/coco128.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/hyps/hyp.Objects365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/hyps/hyp.Objects365.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/hyps/hyp.VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/hyps/hyp.VOC.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/hyps/hyp.scratch-high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/hyps/hyp.scratch-high.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/hyps/hyp.scratch-low.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/hyps/hyp.scratch-low.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/hyps/hyp.scratch-med.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/hyps/hyp.scratch-med.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/images/bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/images/bus.jpg -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/images/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/images/zidane.jpg -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/scripts/download_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/scripts/download_weights.sh -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/scripts/get_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/scripts/get_coco.sh -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/scripts/get_coco128.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/scripts/get_coco128.sh -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/scripts/get_imagenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/scripts/get_imagenet.sh -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/xView.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/data/xView.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/detect.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/export.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/hubconf.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/common.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/experimental.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/anchors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/anchors.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov3-spp.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov3-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov3-tiny.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov3.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5-bifpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5-bifpn.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5-fpn.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5-p2.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5-p34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5-p34.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5-p6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5-p7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5-p7.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5-panet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5-panet.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5l6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5l6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5m6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5m6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5n6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5n6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5s-ghost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5s-ghost.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5s-transformer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5s-transformer.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5s6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5s6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5x6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/hub/yolov5x6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/tf.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/yolo.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/yolov5l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/yolov5l.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/yolov5m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/yolov5m.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/yolov5n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/yolov5n.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/yolov5s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/yolov5s.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/yolov5x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/models/yolov5x.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/requirements.txt -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/setup.cfg -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/train.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/tutorial.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/__init__.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/activations.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/augmentations.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/autoanchor.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/autobatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/autobatch.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/aws/mime.sh -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/aws/resume.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/aws/userdata.sh -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/benchmarks.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/callbacks.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/dataloaders.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/docker/Dockerfile -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/docker/Dockerfile-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/docker/Dockerfile-arm64 -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/docker/Dockerfile-cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/docker/Dockerfile-cpu -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/downloads.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/flask_rest_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/flask_rest_api/README.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/flask_rest_api/example_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/flask_rest_api/example_request.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/flask_rest_api/restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/flask_rest_api/restapi.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/general.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/__init__.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/clearml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/clearml/README.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/clearml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/clearml/clearml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/clearml/clearml_utils.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/clearml/hpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/clearml/hpo.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/comet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/comet/README.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/comet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/comet/__init__.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/comet/comet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/comet/comet_utils.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/comet/hpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/comet/hpo.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/wandb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/wandb/README.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/wandb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/wandb/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/wandb/log_dataset.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/wandb/sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/wandb/sweep.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/wandb/sweep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/wandb/sweep.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/wandb/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loggers/wandb/wandb_utils.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/loss.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/metrics.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/plots.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/utils/torch_utils.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/SORT_yolov5/yolov5/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/SORT_yolov5/yolov5/val.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/requirements.txt -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/run_detect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/run_detect.sh -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/run_track.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/run_track.sh -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/split_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/split_video.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/track.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/visem_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/visem_utils.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/.gitignore -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/LICENSE.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/README.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/baseline/r50-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/baseline/r50-csp.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/baseline/x50-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/baseline/x50-csp.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/baseline/yolor-csp-x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/baseline/yolor-csp-x.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/baseline/yolor-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/baseline/yolor-csp.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/baseline/yolor-d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/baseline/yolor-d6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/baseline/yolor-e6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/baseline/yolor-e6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/baseline/yolor-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/baseline/yolor-p6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/baseline/yolor-w6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/baseline/yolor-w6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/baseline/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/baseline/yolov3-spp.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/baseline/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/baseline/yolov3.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/baseline/yolov4-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/baseline/yolov4-csp.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7-d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7-d6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7-e6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7-e6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7-e6e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7-e6e.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7-tiny-silu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7-tiny-silu.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7-tiny.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7-w6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7-w6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/deploy/yolov7x.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/training/yolov7-d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/training/yolov7-d6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/training/yolov7-e6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/training/yolov7-e6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/training/yolov7-e6e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/training/yolov7-e6e.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/training/yolov7-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/training/yolov7-tiny.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/training/yolov7-w6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/training/yolov7-w6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/training/yolov7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/training/yolov7.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/cfg/training/yolov7x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/cfg/training/yolov7x.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/data/coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/data/coco.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/data/hyp.scratch.custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/data/hyp.scratch.custom.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/data/hyp.scratch.p5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/data/hyp.scratch.p5.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/data/hyp.scratch.p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/data/hyp.scratch.p6.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/data/hyp.scratch.tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/data/hyp.scratch.tiny.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/deploy/triton-inference-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/deploy/triton-inference-server/README.md -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/deploy/triton-inference-server/boundingbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/deploy/triton-inference-server/boundingbox.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/deploy/triton-inference-server/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/deploy/triton-inference-server/client.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/deploy/triton-inference-server/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/deploy/triton-inference-server/labels.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/deploy/triton-inference-server/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/deploy/triton-inference-server/processing.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/deploy/triton-inference-server/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/deploy/triton-inference-server/render.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/detect.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/export.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/hubconf.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/models/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/models/common.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/models/experimental.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/models/yolo.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/paper/yolov7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/paper/yolov7.pdf -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/requirements.txt -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/scripts/get_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/scripts/get_coco.sh -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/test.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/tools/YOLOv7-Dynamic-Batch-ONNXRUNTIME.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/tools/YOLOv7-Dynamic-Batch-ONNXRUNTIME.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/tools/YOLOv7-Dynamic-Batch-TENSORRT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/tools/YOLOv7-Dynamic-Batch-TENSORRT.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/tools/YOLOv7CoreML.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/tools/YOLOv7CoreML.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/tools/YOLOv7onnx.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/tools/YOLOv7onnx.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/tools/YOLOv7trt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/tools/YOLOv7trt.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/tools/compare_YOLOv7_vs_YOLOv5m6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/tools/compare_YOLOv7_vs_YOLOv5m6.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/tools/compare_YOLOv7_vs_YOLOv5m6_half.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/tools/compare_YOLOv7_vs_YOLOv5m6_half.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/tools/compare_YOLOv7_vs_YOLOv5s6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/tools/compare_YOLOv7_vs_YOLOv5s6.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/tools/compare_YOLOv7e6_vs_YOLOv5x6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/tools/compare_YOLOv7e6_vs_YOLOv5x6.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/tools/compare_YOLOv7e6_vs_YOLOv5x6_half.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/tools/compare_YOLOv7e6_vs_YOLOv5x6_half.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/tools/instance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/tools/instance.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/tools/keypoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/tools/keypoint.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/tools/reparameterization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/tools/reparameterization.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/tools/visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/tools/visualization.ipynb -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/train.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/train_aux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/train_aux.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/activations.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/add_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/add_nms.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/autoanchor.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | #init -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/aws/mime.sh -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/aws/resume.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/aws/userdata.sh -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/datasets.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/general.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/google_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/google_utils.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/loss.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/metrics.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/plots.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/torch_utils.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/wandb_logging/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/wandb_logging/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/wandb_logging/log_dataset.py -------------------------------------------------------------------------------- /source_code/code_and_checkpoints/yolov7/utils/wandb_logging/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisDo2108/MediaEval2022-TailAwareSpermDetection/HEAD/source_code/code_and_checkpoints/yolov7/utils/wandb_logging/wandb_utils.py --------------------------------------------------------------------------------