├── .DS_Store ├── LICENSE ├── README.md ├── cfg ├── .DS_Store └── training │ ├── .DS_Store │ └── citrus-yolov7.yaml ├── data ├── coco.yaml ├── hyp.scratch.custom.yaml ├── hyp.scratch.p5.yaml ├── hyp.scratch.p6.yaml └── hyp.scratch.tiny.yaml ├── detect.py ├── export.py ├── hubconf.py ├── models ├── .DS_Store ├── __init__.py ├── cfg.txt ├── common.py ├── experimental.py └── yolo.py ├── requirements.txt ├── scripts └── get_coco.sh ├── test.py ├── train.py └── utils ├── .DS_Store ├── __init__.py ├── activations.py ├── add_nms.py ├── autoanchor.py ├── aws ├── __init__.py ├── mime.sh ├── resume.py └── userdata.sh ├── datasets.py ├── general.py ├── google_app_engine ├── Dockerfile ├── additional_requirements.txt └── app.yaml ├── google_utils.py ├── loss.py ├── metrics.py ├── plots.py ├── torch_utils.py └── wandb_logging ├── __init__.py ├── log_dataset.py └── wandb_utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/README.md -------------------------------------------------------------------------------- /cfg/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/cfg/.DS_Store -------------------------------------------------------------------------------- /cfg/training/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/cfg/training/.DS_Store -------------------------------------------------------------------------------- /cfg/training/citrus-yolov7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/cfg/training/citrus-yolov7.yaml -------------------------------------------------------------------------------- /data/coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/data/coco.yaml -------------------------------------------------------------------------------- /data/hyp.scratch.custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/data/hyp.scratch.custom.yaml -------------------------------------------------------------------------------- /data/hyp.scratch.p5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/data/hyp.scratch.p5.yaml -------------------------------------------------------------------------------- /data/hyp.scratch.p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/data/hyp.scratch.p6.yaml -------------------------------------------------------------------------------- /data/hyp.scratch.tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/data/hyp.scratch.tiny.yaml -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/detect.py -------------------------------------------------------------------------------- /export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/export.py -------------------------------------------------------------------------------- /hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/hubconf.py -------------------------------------------------------------------------------- /models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/models/.DS_Store -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /models/cfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/models/cfg.txt -------------------------------------------------------------------------------- /models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/models/common.py -------------------------------------------------------------------------------- /models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/models/experimental.py -------------------------------------------------------------------------------- /models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/models/yolo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/get_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/scripts/get_coco.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/train.py -------------------------------------------------------------------------------- /utils/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/.DS_Store -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/activations.py -------------------------------------------------------------------------------- /utils/add_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/add_nms.py -------------------------------------------------------------------------------- /utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/autoanchor.py -------------------------------------------------------------------------------- /utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | #init -------------------------------------------------------------------------------- /utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/aws/mime.sh -------------------------------------------------------------------------------- /utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/aws/resume.py -------------------------------------------------------------------------------- /utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/aws/userdata.sh -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/general.py -------------------------------------------------------------------------------- /utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /utils/google_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/google_utils.py -------------------------------------------------------------------------------- /utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/loss.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/plots.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/torch_utils.py -------------------------------------------------------------------------------- /utils/wandb_logging/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /utils/wandb_logging/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/wandb_logging/log_dataset.py -------------------------------------------------------------------------------- /utils/wandb_logging/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorfulandcjy0806/Citrus-YOLOv7/HEAD/utils/wandb_logging/wandb_utils.py --------------------------------------------------------------------------------