├── README.md ├── classify ├── predict.py ├── train.py ├── tutorial.ipynb └── val.py ├── deep_sort_pytorch └── configs │ └── deep_sort.yaml ├── detect_ebike.py ├── dockers ├── Dockerfile.gpu └── dockerfile ├── export.py ├── graphs.py ├── hubconf.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── common.cpython-38.pyc │ ├── experimental.cpython-38.pyc │ └── yolo.cpython-38.pyc ├── 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-LeakyReLU.yaml │ ├── yolov5s-ghost.yaml │ ├── yolov5s-transformer.yaml │ ├── yolov5s6.yaml │ └── yolov5x6.yaml ├── segment │ ├── yolov5l-seg.yaml │ ├── yolov5m-seg.yaml │ ├── yolov5n-seg.yaml │ ├── yolov5s-seg.yaml │ └── yolov5x-seg.yaml ├── tf.py ├── yolo.py ├── yolov5l.yaml ├── yolov5m.yaml ├── yolov5n.yaml ├── yolov5s.yaml ├── yolov5s_ebike.yaml └── yolov5x.yaml ├── requirements.txt ├── runs ├── exp_detection │ ├── detect_0.png │ ├── detect_1.png │ ├── detect_10.png │ ├── detect_2.png │ ├── detect_3.png │ ├── detect_4.png │ ├── detect_5.png │ ├── detect_6.png │ ├── detect_7.png │ ├── detect_8.png │ └── detect_9.png ├── exp_tracking │ └── detect_2.png └── train │ └── exp8 │ ├── F1_curve.png │ ├── PR_curve.png │ ├── P_curve.png │ ├── R_curve.png │ ├── confusion_matrix.png │ ├── events.out.tfevents.1706189714.cll-System-Product-Name.1535430.0 │ ├── hyp.yaml │ ├── labels.jpg │ ├── labels_correlogram.jpg │ ├── opt.yaml │ ├── results.csv │ ├── results.png │ ├── train_batch0.jpg │ ├── train_batch1.jpg │ ├── train_batch2.jpg │ ├── val_batch0_labels.jpg │ ├── val_batch0_pred.jpg │ ├── val_batch1_labels.jpg │ ├── val_batch1_pred.jpg │ ├── val_batch2_labels.jpg │ └── val_batch2_pred.jpg ├── segment ├── predict.py ├── train.py ├── tutorial.ipynb └── val.py ├── test_samples ├── 2020(5000).jpg ├── 2020(5001).jpg ├── 2020(5002).jpg ├── 2020(5003).jpg ├── 2020(5004).jpg ├── 2020(5005).jpg ├── 2020(5006).jpg ├── 2020(5007).jpg ├── 2020(5008).jpg ├── 2020(5009).jpg ├── 2020(5010).jpg └── 2020(5011).jpg ├── track_ebike.py └── utils ├── activations.py ├── augmentations.py ├── autoanchor.py ├── autobatch.py ├── aws ├── __init__.py ├── mime.sh ├── resume.py └── userdata.sh ├── callbacks.py ├── dataloaders.py ├── dataloaders_rtps.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 ├── clearml ├── README.md ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ └── clearml_utils.cpython-38.pyc ├── clearml_utils.py └── hpo.py └── comet ├── README.md ├── comet_utils.py ├── hpo.py └── optimizer_config.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/README.md -------------------------------------------------------------------------------- /classify/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/classify/predict.py -------------------------------------------------------------------------------- /classify/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/classify/train.py -------------------------------------------------------------------------------- /classify/tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/classify/tutorial.ipynb -------------------------------------------------------------------------------- /classify/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/classify/val.py -------------------------------------------------------------------------------- /deep_sort_pytorch/configs/deep_sort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/deep_sort_pytorch/configs/deep_sort.yaml -------------------------------------------------------------------------------- /detect_ebike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/detect_ebike.py -------------------------------------------------------------------------------- /dockers/Dockerfile.gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/dockers/Dockerfile.gpu -------------------------------------------------------------------------------- /dockers/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/dockers/dockerfile -------------------------------------------------------------------------------- /export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/export.py -------------------------------------------------------------------------------- /graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/graphs.py -------------------------------------------------------------------------------- /hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/hubconf.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/__pycache__/common.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/experimental.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/__pycache__/experimental.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/yolo.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/__pycache__/yolo.cpython-38.pyc -------------------------------------------------------------------------------- /models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/common.py -------------------------------------------------------------------------------- /models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/experimental.py -------------------------------------------------------------------------------- /models/hub/anchors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/anchors.yaml -------------------------------------------------------------------------------- /models/hub/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov3-spp.yaml -------------------------------------------------------------------------------- /models/hub/yolov3-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov3-tiny.yaml -------------------------------------------------------------------------------- /models/hub/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov3.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-bifpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5-bifpn.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5-fpn.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5-p2.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5-p34.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5-p6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5-p7.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-panet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5-panet.yaml -------------------------------------------------------------------------------- /models/hub/yolov5l6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5l6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5m6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5m6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5n6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5n6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5s-LeakyReLU.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5s-LeakyReLU.yaml -------------------------------------------------------------------------------- /models/hub/yolov5s-ghost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5s-ghost.yaml -------------------------------------------------------------------------------- /models/hub/yolov5s-transformer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5s-transformer.yaml -------------------------------------------------------------------------------- /models/hub/yolov5s6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5s6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5x6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/hub/yolov5x6.yaml -------------------------------------------------------------------------------- /models/segment/yolov5l-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/segment/yolov5l-seg.yaml -------------------------------------------------------------------------------- /models/segment/yolov5m-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/segment/yolov5m-seg.yaml -------------------------------------------------------------------------------- /models/segment/yolov5n-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/segment/yolov5n-seg.yaml -------------------------------------------------------------------------------- /models/segment/yolov5s-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/segment/yolov5s-seg.yaml -------------------------------------------------------------------------------- /models/segment/yolov5x-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/segment/yolov5x-seg.yaml -------------------------------------------------------------------------------- /models/tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/tf.py -------------------------------------------------------------------------------- /models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/yolo.py -------------------------------------------------------------------------------- /models/yolov5l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/yolov5l.yaml -------------------------------------------------------------------------------- /models/yolov5m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/yolov5m.yaml -------------------------------------------------------------------------------- /models/yolov5n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/yolov5n.yaml -------------------------------------------------------------------------------- /models/yolov5s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/yolov5s.yaml -------------------------------------------------------------------------------- /models/yolov5s_ebike.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/yolov5s_ebike.yaml -------------------------------------------------------------------------------- /models/yolov5x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/models/yolov5x.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/requirements.txt -------------------------------------------------------------------------------- /runs/exp_detection/detect_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/exp_detection/detect_0.png -------------------------------------------------------------------------------- /runs/exp_detection/detect_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/exp_detection/detect_1.png -------------------------------------------------------------------------------- /runs/exp_detection/detect_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/exp_detection/detect_10.png -------------------------------------------------------------------------------- /runs/exp_detection/detect_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/exp_detection/detect_2.png -------------------------------------------------------------------------------- /runs/exp_detection/detect_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/exp_detection/detect_3.png -------------------------------------------------------------------------------- /runs/exp_detection/detect_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/exp_detection/detect_4.png -------------------------------------------------------------------------------- /runs/exp_detection/detect_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/exp_detection/detect_5.png -------------------------------------------------------------------------------- /runs/exp_detection/detect_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/exp_detection/detect_6.png -------------------------------------------------------------------------------- /runs/exp_detection/detect_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/exp_detection/detect_7.png -------------------------------------------------------------------------------- /runs/exp_detection/detect_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/exp_detection/detect_8.png -------------------------------------------------------------------------------- /runs/exp_detection/detect_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/exp_detection/detect_9.png -------------------------------------------------------------------------------- /runs/exp_tracking/detect_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/exp_tracking/detect_2.png -------------------------------------------------------------------------------- /runs/train/exp8/F1_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/F1_curve.png -------------------------------------------------------------------------------- /runs/train/exp8/PR_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/PR_curve.png -------------------------------------------------------------------------------- /runs/train/exp8/P_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/P_curve.png -------------------------------------------------------------------------------- /runs/train/exp8/R_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/R_curve.png -------------------------------------------------------------------------------- /runs/train/exp8/confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/confusion_matrix.png -------------------------------------------------------------------------------- /runs/train/exp8/events.out.tfevents.1706189714.cll-System-Product-Name.1535430.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/events.out.tfevents.1706189714.cll-System-Product-Name.1535430.0 -------------------------------------------------------------------------------- /runs/train/exp8/hyp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/hyp.yaml -------------------------------------------------------------------------------- /runs/train/exp8/labels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/labels.jpg -------------------------------------------------------------------------------- /runs/train/exp8/labels_correlogram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/labels_correlogram.jpg -------------------------------------------------------------------------------- /runs/train/exp8/opt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/opt.yaml -------------------------------------------------------------------------------- /runs/train/exp8/results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/results.csv -------------------------------------------------------------------------------- /runs/train/exp8/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/results.png -------------------------------------------------------------------------------- /runs/train/exp8/train_batch0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/train_batch0.jpg -------------------------------------------------------------------------------- /runs/train/exp8/train_batch1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/train_batch1.jpg -------------------------------------------------------------------------------- /runs/train/exp8/train_batch2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/train_batch2.jpg -------------------------------------------------------------------------------- /runs/train/exp8/val_batch0_labels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/val_batch0_labels.jpg -------------------------------------------------------------------------------- /runs/train/exp8/val_batch0_pred.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/val_batch0_pred.jpg -------------------------------------------------------------------------------- /runs/train/exp8/val_batch1_labels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/val_batch1_labels.jpg -------------------------------------------------------------------------------- /runs/train/exp8/val_batch1_pred.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/val_batch1_pred.jpg -------------------------------------------------------------------------------- /runs/train/exp8/val_batch2_labels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/val_batch2_labels.jpg -------------------------------------------------------------------------------- /runs/train/exp8/val_batch2_pred.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/runs/train/exp8/val_batch2_pred.jpg -------------------------------------------------------------------------------- /segment/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/segment/predict.py -------------------------------------------------------------------------------- /segment/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/segment/train.py -------------------------------------------------------------------------------- /segment/tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/segment/tutorial.ipynb -------------------------------------------------------------------------------- /segment/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/segment/val.py -------------------------------------------------------------------------------- /test_samples/2020(5000).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/test_samples/2020(5000).jpg -------------------------------------------------------------------------------- /test_samples/2020(5001).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/test_samples/2020(5001).jpg -------------------------------------------------------------------------------- /test_samples/2020(5002).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/test_samples/2020(5002).jpg -------------------------------------------------------------------------------- /test_samples/2020(5003).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/test_samples/2020(5003).jpg -------------------------------------------------------------------------------- /test_samples/2020(5004).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/test_samples/2020(5004).jpg -------------------------------------------------------------------------------- /test_samples/2020(5005).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/test_samples/2020(5005).jpg -------------------------------------------------------------------------------- /test_samples/2020(5006).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/test_samples/2020(5006).jpg -------------------------------------------------------------------------------- /test_samples/2020(5007).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/test_samples/2020(5007).jpg -------------------------------------------------------------------------------- /test_samples/2020(5008).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/test_samples/2020(5008).jpg -------------------------------------------------------------------------------- /test_samples/2020(5009).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/test_samples/2020(5009).jpg -------------------------------------------------------------------------------- /test_samples/2020(5010).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/test_samples/2020(5010).jpg -------------------------------------------------------------------------------- /test_samples/2020(5011).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/test_samples/2020(5011).jpg -------------------------------------------------------------------------------- /track_ebike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/track_ebike.py -------------------------------------------------------------------------------- /utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/activations.py -------------------------------------------------------------------------------- /utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/augmentations.py -------------------------------------------------------------------------------- /utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/autoanchor.py -------------------------------------------------------------------------------- /utils/autobatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/autobatch.py -------------------------------------------------------------------------------- /utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/aws/mime.sh -------------------------------------------------------------------------------- /utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/aws/resume.py -------------------------------------------------------------------------------- /utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/aws/userdata.sh -------------------------------------------------------------------------------- /utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/callbacks.py -------------------------------------------------------------------------------- /utils/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/dataloaders.py -------------------------------------------------------------------------------- /utils/dataloaders_rtps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/dataloaders_rtps.py -------------------------------------------------------------------------------- /utils/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/docker/Dockerfile -------------------------------------------------------------------------------- /utils/docker/Dockerfile-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/docker/Dockerfile-arm64 -------------------------------------------------------------------------------- /utils/docker/Dockerfile-cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/docker/Dockerfile-cpu -------------------------------------------------------------------------------- /utils/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/downloads.py -------------------------------------------------------------------------------- /utils/flask_rest_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/flask_rest_api/README.md -------------------------------------------------------------------------------- /utils/flask_rest_api/example_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/flask_rest_api/example_request.py -------------------------------------------------------------------------------- /utils/flask_rest_api/restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/flask_rest_api/restapi.py -------------------------------------------------------------------------------- /utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/general.py -------------------------------------------------------------------------------- /utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /utils/loggers/clearml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/loggers/clearml/README.md -------------------------------------------------------------------------------- /utils/loggers/clearml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/loggers/clearml/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/loggers/clearml/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/clearml/__pycache__/clearml_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/loggers/clearml/__pycache__/clearml_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/clearml/clearml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/loggers/clearml/clearml_utils.py -------------------------------------------------------------------------------- /utils/loggers/clearml/hpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/loggers/clearml/hpo.py -------------------------------------------------------------------------------- /utils/loggers/comet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/loggers/comet/README.md -------------------------------------------------------------------------------- /utils/loggers/comet/comet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/loggers/comet/comet_utils.py -------------------------------------------------------------------------------- /utils/loggers/comet/hpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/loggers/comet/hpo.py -------------------------------------------------------------------------------- /utils/loggers/comet/optimizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lily-Le/ebikedetection/HEAD/utils/loggers/comet/optimizer_config.json --------------------------------------------------------------------------------