├── LICENSE ├── README.md ├── __pycache__ ├── export.cpython-38.pyc └── val.cpython-38.pyc ├── classify ├── predict.py ├── train.py └── val.py ├── data ├── coco.yaml ├── custom.yaml ├── hyp.scratch-high.yaml ├── hyps │ ├── hyp.scratch-high.yaml │ ├── hyp.scratch-low.yaml │ └── hyp.scratch-med.yaml ├── scripts │ ├── get_coco.sh │ └── get_imagenet.sh └── yolov7-seg.yaml ├── dataset.mp4 ├── detect.py ├── export.py ├── extract_frames_opencv.py ├── figure └── yolov7-seg-example.png ├── hubconf.py ├── labelme2yolov7seg.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 │ ├── yolov3-spp.yaml │ ├── yolov3-tiny.yaml │ └── yolov3.yaml ├── segment │ └── yolov7-seg.yaml ├── tf.py └── yolo.py ├── requirements.txt ├── segment ├── __pycache__ │ └── val.cpython-38.pyc ├── predict.py ├── train.py └── val.py ├── setup.cfg ├── test.gif ├── test.mp4 ├── train.py ├── utils ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── augmentations.cpython-38.pyc │ ├── autoanchor.cpython-38.pyc │ ├── autobatch.cpython-38.pyc │ ├── callbacks.cpython-38.pyc │ ├── dataloaders.cpython-38.pyc │ ├── downloads.cpython-38.pyc │ ├── general.cpython-38.pyc │ ├── loss.cpython-38.pyc │ ├── metrics.cpython-38.pyc │ ├── plots.cpython-38.pyc │ └── torch_utils.cpython-38.pyc ├── 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 │ ├── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── clearml │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── clearml_utils.cpython-38.pyc │ │ ├── clearml_utils.py │ │ └── hpo.py │ └── wandb │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── wandb_utils.cpython-38.pyc │ │ ├── log_dataset.py │ │ ├── sweep.py │ │ ├── sweep.yaml │ │ └── wandb_utils.py ├── loss.py ├── metrics.py ├── plots.py ├── segment │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── augmentations.cpython-38.pyc │ │ ├── dataloaders.cpython-38.pyc │ │ ├── general.cpython-38.pyc │ │ ├── loss.cpython-38.pyc │ │ ├── metrics.cpython-38.pyc │ │ └── plots.cpython-38.pyc │ ├── augmentations.py │ ├── dataloaders.py │ ├── general.py │ ├── loss.py │ ├── metrics.py │ └── plots.py └── torch_utils.py └── val.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/export.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/__pycache__/export.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/val.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/__pycache__/val.cpython-38.pyc -------------------------------------------------------------------------------- /classify/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/classify/predict.py -------------------------------------------------------------------------------- /classify/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/classify/train.py -------------------------------------------------------------------------------- /classify/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/classify/val.py -------------------------------------------------------------------------------- /data/coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/data/coco.yaml -------------------------------------------------------------------------------- /data/custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/data/custom.yaml -------------------------------------------------------------------------------- /data/hyp.scratch-high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/data/hyp.scratch-high.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.scratch-high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/data/hyps/hyp.scratch-high.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.scratch-low.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/data/hyps/hyp.scratch-low.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.scratch-med.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/data/hyps/hyp.scratch-med.yaml -------------------------------------------------------------------------------- /data/scripts/get_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/data/scripts/get_coco.sh -------------------------------------------------------------------------------- /data/scripts/get_imagenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/data/scripts/get_imagenet.sh -------------------------------------------------------------------------------- /data/yolov7-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/data/yolov7-seg.yaml -------------------------------------------------------------------------------- /dataset.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/dataset.mp4 -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/detect.py -------------------------------------------------------------------------------- /export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/export.py -------------------------------------------------------------------------------- /extract_frames_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/extract_frames_opencv.py -------------------------------------------------------------------------------- /figure/yolov7-seg-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/figure/yolov7-seg-example.png -------------------------------------------------------------------------------- /hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/hubconf.py -------------------------------------------------------------------------------- /labelme2yolov7seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/labelme2yolov7seg.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/models/__pycache__/common.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/experimental.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/models/__pycache__/experimental.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/yolo.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/models/__pycache__/yolo.cpython-38.pyc -------------------------------------------------------------------------------- /models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/models/common.py -------------------------------------------------------------------------------- /models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/models/experimental.py -------------------------------------------------------------------------------- /models/hub/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/models/hub/yolov3-spp.yaml -------------------------------------------------------------------------------- /models/hub/yolov3-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/models/hub/yolov3-tiny.yaml -------------------------------------------------------------------------------- /models/hub/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/models/hub/yolov3.yaml -------------------------------------------------------------------------------- /models/segment/yolov7-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/models/segment/yolov7-seg.yaml -------------------------------------------------------------------------------- /models/tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/models/tf.py -------------------------------------------------------------------------------- /models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/models/yolo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/requirements.txt -------------------------------------------------------------------------------- /segment/__pycache__/val.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/segment/__pycache__/val.cpython-38.pyc -------------------------------------------------------------------------------- /segment/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/segment/predict.py -------------------------------------------------------------------------------- /segment/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/segment/train.py -------------------------------------------------------------------------------- /segment/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/segment/val.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/setup.cfg -------------------------------------------------------------------------------- /test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/test.gif -------------------------------------------------------------------------------- /test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/test.mp4 -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/__pycache__/augmentations.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autoanchor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/__pycache__/autoanchor.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autobatch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/__pycache__/autobatch.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/callbacks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/__pycache__/callbacks.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dataloaders.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/__pycache__/dataloaders.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/downloads.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/__pycache__/downloads.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/general.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/__pycache__/general.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/__pycache__/loss.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/metrics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/__pycache__/metrics.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/plots.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/__pycache__/plots.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/torch_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/__pycache__/torch_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/activations.py -------------------------------------------------------------------------------- /utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/augmentations.py -------------------------------------------------------------------------------- /utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/autoanchor.py -------------------------------------------------------------------------------- /utils/autobatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/autobatch.py -------------------------------------------------------------------------------- /utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/aws/mime.sh -------------------------------------------------------------------------------- /utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/aws/resume.py -------------------------------------------------------------------------------- /utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/aws/userdata.sh -------------------------------------------------------------------------------- /utils/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/benchmarks.py -------------------------------------------------------------------------------- /utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/callbacks.py -------------------------------------------------------------------------------- /utils/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/dataloaders.py -------------------------------------------------------------------------------- /utils/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/docker/Dockerfile -------------------------------------------------------------------------------- /utils/docker/Dockerfile-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/docker/Dockerfile-arm64 -------------------------------------------------------------------------------- /utils/docker/Dockerfile-cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/docker/Dockerfile-cpu -------------------------------------------------------------------------------- /utils/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/downloads.py -------------------------------------------------------------------------------- /utils/flask_rest_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/flask_rest_api/README.md -------------------------------------------------------------------------------- /utils/flask_rest_api/example_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/flask_rest_api/example_request.py -------------------------------------------------------------------------------- /utils/flask_rest_api/restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/flask_rest_api/restapi.py -------------------------------------------------------------------------------- /utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/general.py -------------------------------------------------------------------------------- /utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /utils/loggers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loggers/__init__.py -------------------------------------------------------------------------------- /utils/loggers/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loggers/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/clearml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loggers/clearml/README.md -------------------------------------------------------------------------------- /utils/loggers/clearml/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /utils/loggers/clearml/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loggers/clearml/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/clearml/__pycache__/clearml_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loggers/clearml/__pycache__/clearml_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/clearml/clearml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loggers/clearml/clearml_utils.py -------------------------------------------------------------------------------- /utils/loggers/clearml/hpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loggers/clearml/hpo.py -------------------------------------------------------------------------------- /utils/loggers/wandb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loggers/wandb/README.md -------------------------------------------------------------------------------- /utils/loggers/wandb/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /utils/loggers/wandb/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loggers/wandb/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/__pycache__/wandb_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loggers/wandb/__pycache__/wandb_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loggers/wandb/log_dataset.py -------------------------------------------------------------------------------- /utils/loggers/wandb/sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loggers/wandb/sweep.py -------------------------------------------------------------------------------- /utils/loggers/wandb/sweep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loggers/wandb/sweep.yaml -------------------------------------------------------------------------------- /utils/loggers/wandb/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loggers/wandb/wandb_utils.py -------------------------------------------------------------------------------- /utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/loss.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/plots.py -------------------------------------------------------------------------------- /utils/segment/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /utils/segment/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/segment/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/segment/__pycache__/augmentations.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/segment/__pycache__/augmentations.cpython-38.pyc -------------------------------------------------------------------------------- /utils/segment/__pycache__/dataloaders.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/segment/__pycache__/dataloaders.cpython-38.pyc -------------------------------------------------------------------------------- /utils/segment/__pycache__/general.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/segment/__pycache__/general.cpython-38.pyc -------------------------------------------------------------------------------- /utils/segment/__pycache__/loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/segment/__pycache__/loss.cpython-38.pyc -------------------------------------------------------------------------------- /utils/segment/__pycache__/metrics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/segment/__pycache__/metrics.cpython-38.pyc -------------------------------------------------------------------------------- /utils/segment/__pycache__/plots.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/segment/__pycache__/plots.cpython-38.pyc -------------------------------------------------------------------------------- /utils/segment/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/segment/augmentations.py -------------------------------------------------------------------------------- /utils/segment/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/segment/dataloaders.py -------------------------------------------------------------------------------- /utils/segment/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/segment/general.py -------------------------------------------------------------------------------- /utils/segment/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/segment/loss.py -------------------------------------------------------------------------------- /utils/segment/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/segment/metrics.py -------------------------------------------------------------------------------- /utils/segment/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/segment/plots.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/utils/torch_utils.py -------------------------------------------------------------------------------- /val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laitathei/YOLOv7-Pytorch-Segmentation/HEAD/val.py --------------------------------------------------------------------------------