├── .gitignore ├── README.md ├── demo.py ├── export.py ├── requirements.txt ├── setup.py ├── whl └── yolo_detectAPI-5.7-py3-none-any.whl └── yolo_detectAPI ├── __init__.py ├── export.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-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 └── yolov5x.yaml └── utils ├── __init__.py ├── activations.py ├── augmentations.py ├── autoanchor.py ├── autobatch.py ├── aws ├── __init__.py ├── mime.sh ├── resume.py └── userdata.sh ├── callbacks.py ├── dataloaders.py ├── dataloaders_backup.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 │ └── optimizer_config.json └── wandb │ ├── README.md │ ├── __init__.py │ ├── log_dataset.py │ ├── sweep.py │ ├── sweep.yaml │ └── wandb_utils.py ├── loss.py ├── metrics.py ├── plots.py ├── segment ├── __init__.py ├── augmentations.py ├── dataloaders.py ├── general.py ├── loss.py ├── metrics.py └── plots.py ├── torch_utils.py └── triton.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/README.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/demo.py -------------------------------------------------------------------------------- /export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/export.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/setup.py -------------------------------------------------------------------------------- /whl/yolo_detectAPI-5.7-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/whl/yolo_detectAPI-5.7-py3-none-any.whl -------------------------------------------------------------------------------- /yolo_detectAPI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/__init__.py -------------------------------------------------------------------------------- /yolo_detectAPI/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/export.py -------------------------------------------------------------------------------- /yolo_detectAPI/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolo_detectAPI/models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/common.py -------------------------------------------------------------------------------- /yolo_detectAPI/models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/experimental.py -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/anchors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/anchors.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov3-spp.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov3-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov3-tiny.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov3.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5-bifpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5-bifpn.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5-fpn.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5-p2.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5-p34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5-p34.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5-p6.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5-p7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5-p7.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5-panet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5-panet.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5l6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5l6.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5m6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5m6.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5n6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5n6.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5s-LeakyReLU.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5s-LeakyReLU.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5s-ghost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5s-ghost.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5s-transformer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5s-transformer.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5s6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5s6.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/hub/yolov5x6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/hub/yolov5x6.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/segment/yolov5l-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/segment/yolov5l-seg.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/segment/yolov5m-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/segment/yolov5m-seg.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/segment/yolov5n-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/segment/yolov5n-seg.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/segment/yolov5s-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/segment/yolov5s-seg.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/segment/yolov5x-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/segment/yolov5x-seg.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/tf.py -------------------------------------------------------------------------------- /yolo_detectAPI/models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/yolo.py -------------------------------------------------------------------------------- /yolo_detectAPI/models/yolov5l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/yolov5l.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/yolov5m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/yolov5m.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/yolov5n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/yolov5n.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/yolov5s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/yolov5s.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/models/yolov5x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/models/yolov5x.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/__init__.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/activations.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/augmentations.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/autoanchor.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/autobatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/autobatch.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolo_detectAPI/utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/aws/mime.sh -------------------------------------------------------------------------------- /yolo_detectAPI/utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/aws/resume.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/aws/userdata.sh -------------------------------------------------------------------------------- /yolo_detectAPI/utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/callbacks.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/dataloaders.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/dataloaders_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/dataloaders_backup.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/docker/Dockerfile -------------------------------------------------------------------------------- /yolo_detectAPI/utils/docker/Dockerfile-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/docker/Dockerfile-arm64 -------------------------------------------------------------------------------- /yolo_detectAPI/utils/docker/Dockerfile-cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/docker/Dockerfile-cpu -------------------------------------------------------------------------------- /yolo_detectAPI/utils/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/downloads.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/flask_rest_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/flask_rest_api/README.md -------------------------------------------------------------------------------- /yolo_detectAPI/utils/flask_rest_api/example_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/flask_rest_api/example_request.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/flask_rest_api/restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/flask_rest_api/restapi.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/general.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /yolo_detectAPI/utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /yolo_detectAPI/utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loggers/__init__.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/clearml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loggers/clearml/README.md -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/clearml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/clearml/clearml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loggers/clearml/clearml_utils.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/clearml/hpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loggers/clearml/hpo.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/comet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loggers/comet/README.md -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/comet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loggers/comet/__init__.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/comet/comet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loggers/comet/comet_utils.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/comet/hpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loggers/comet/hpo.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/comet/optimizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loggers/comet/optimizer_config.json -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/wandb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loggers/wandb/README.md -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/wandb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/wandb/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loggers/wandb/log_dataset.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/wandb/sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loggers/wandb/sweep.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/wandb/sweep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loggers/wandb/sweep.yaml -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loggers/wandb/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loggers/wandb/wandb_utils.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/loss.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/metrics.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/plots.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/segment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolo_detectAPI/utils/segment/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/segment/augmentations.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/segment/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/segment/dataloaders.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/segment/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/segment/general.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/segment/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/segment/loss.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/segment/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/segment/metrics.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/segment/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/segment/plots.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/torch_utils.py -------------------------------------------------------------------------------- /yolo_detectAPI/utils/triton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ender-William/YoloDetectAPI/HEAD/yolo_detectAPI/utils/triton.py --------------------------------------------------------------------------------