├── .dockerignore ├── .github └── workflows │ └── cicd.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── data ├── .gitkeep ├── inputImage.jpg └── test.jpeg ├── flowcharts ├── Data Ingetions.png ├── Data validation.png ├── Model Pusher.png ├── Model trainer.png └── deployment.jpeg ├── isd ├── __init__.py ├── components │ ├── __init__.py │ ├── data_ingestion.py │ ├── data_validation.py │ ├── model_pusher.py │ └── model_trainer.py ├── configuration │ ├── __init__.py │ └── s3_operations.py ├── constant │ ├── __init__.py │ ├── application.py │ └── training_pipeline │ │ └── __init__.py ├── entity │ ├── __init__.py │ ├── artifacts_entity.py │ └── config_entity.py ├── exception │ └── __init__.py ├── logger │ └── __init__.py ├── pipeline │ ├── __init__.py │ └── training_pipeline.py └── utils │ ├── __init__.py │ └── main_utils.py ├── notebook ├── YOLOv7_on_Custom_Data.ipynb └── custom.yaml ├── requirements.txt ├── setup.py ├── template.py ├── templates └── index.html └── yolov7 ├── .gitignore ├── LICENSE.md ├── README.md ├── cfg ├── baseline │ ├── r50-csp.yaml │ ├── x50-csp.yaml │ ├── yolor-csp-x.yaml │ ├── yolor-csp.yaml │ ├── yolor-d6.yaml │ ├── yolor-e6.yaml │ ├── yolor-p6.yaml │ ├── yolor-w6.yaml │ ├── yolov3-spp.yaml │ ├── yolov3.yaml │ └── yolov4-csp.yaml ├── deploy │ ├── yolov7-d6.yaml │ ├── yolov7-e6.yaml │ ├── yolov7-e6e.yaml │ ├── yolov7-tiny-silu.yaml │ ├── yolov7-tiny.yaml │ ├── yolov7-w6.yaml │ ├── yolov7.yaml │ └── yolov7x.yaml └── training │ ├── custom_yolov7.yaml │ ├── yolov7-d6.yaml │ ├── yolov7-e6.yaml │ ├── yolov7-e6e.yaml │ ├── yolov7-tiny.yaml │ ├── yolov7-w6.yaml │ ├── yolov7.yaml │ └── yolov7x.yaml ├── data ├── coco.yaml ├── custom.yaml ├── hyp.scratch.custom.yaml ├── hyp.scratch.p5.yaml ├── hyp.scratch.p6.yaml └── hyp.scratch.tiny.yaml ├── deploy └── triton-inference-server │ ├── README.md │ ├── boundingbox.py │ ├── client.py │ ├── labels.py │ ├── processing.py │ └── render.py ├── detect.py ├── export.py ├── hubconf.py ├── models ├── __init__.py ├── common.py ├── experimental.py └── yolo.py ├── paper └── yolov7.pdf ├── requirements.txt ├── scripts └── get_coco.sh ├── test.py ├── tools ├── YOLOv7-Dynamic-Batch-ONNXRUNTIME.ipynb ├── YOLOv7-Dynamic-Batch-TENSORRT.ipynb ├── YOLOv7CoreML.ipynb ├── YOLOv7onnx.ipynb ├── YOLOv7trt.ipynb ├── compare_YOLOv7_vs_YOLOv5m6.ipynb ├── compare_YOLOv7_vs_YOLOv5m6_half.ipynb ├── compare_YOLOv7_vs_YOLOv5s6.ipynb ├── compare_YOLOv7e6_vs_YOLOv5x6.ipynb ├── compare_YOLOv7e6_vs_YOLOv5x6_half.ipynb ├── instance.ipynb ├── keypoint.ipynb ├── reparameterization.ipynb └── visualization.ipynb ├── train.py ├── train_aux.py └── utils ├── __init__.py ├── activations.py ├── add_nms.py ├── autoanchor.py ├── aws ├── __init__.py ├── mime.sh ├── resume.py └── userdata.sh ├── datasets.py ├── general.py ├── google_app_engine ├── Dockerfile ├── additional_requirements.txt └── app.yaml ├── google_utils.py ├── loss.py ├── metrics.py ├── plots.py ├── torch_utils.py └── wandb_logging ├── __init__.py ├── log_dataset.py └── wandb_utils.py /.dockerignore: -------------------------------------------------------------------------------- 1 | artifacts 2 | env 3 | log 4 | notebook 5 | flowcharts -------------------------------------------------------------------------------- /.github/workflows/cicd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/.github/workflows/cicd.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/app.py -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/inputImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/data/inputImage.jpg -------------------------------------------------------------------------------- /data/test.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/data/test.jpeg -------------------------------------------------------------------------------- /flowcharts/Data Ingetions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/flowcharts/Data Ingetions.png -------------------------------------------------------------------------------- /flowcharts/Data validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/flowcharts/Data validation.png -------------------------------------------------------------------------------- /flowcharts/Model Pusher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/flowcharts/Model Pusher.png -------------------------------------------------------------------------------- /flowcharts/Model trainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/flowcharts/Model trainer.png -------------------------------------------------------------------------------- /flowcharts/deployment.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/flowcharts/deployment.jpeg -------------------------------------------------------------------------------- /isd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /isd/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /isd/components/data_ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/isd/components/data_ingestion.py -------------------------------------------------------------------------------- /isd/components/data_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/isd/components/data_validation.py -------------------------------------------------------------------------------- /isd/components/model_pusher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/isd/components/model_pusher.py -------------------------------------------------------------------------------- /isd/components/model_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/isd/components/model_trainer.py -------------------------------------------------------------------------------- /isd/configuration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /isd/configuration/s3_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/isd/configuration/s3_operations.py -------------------------------------------------------------------------------- /isd/constant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /isd/constant/application.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /isd/constant/training_pipeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/isd/constant/training_pipeline/__init__.py -------------------------------------------------------------------------------- /isd/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /isd/entity/artifacts_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/isd/entity/artifacts_entity.py -------------------------------------------------------------------------------- /isd/entity/config_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/isd/entity/config_entity.py -------------------------------------------------------------------------------- /isd/exception/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/isd/exception/__init__.py -------------------------------------------------------------------------------- /isd/logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/isd/logger/__init__.py -------------------------------------------------------------------------------- /isd/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /isd/pipeline/training_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/isd/pipeline/training_pipeline.py -------------------------------------------------------------------------------- /isd/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /isd/utils/main_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/isd/utils/main_utils.py -------------------------------------------------------------------------------- /notebook/YOLOv7_on_Custom_Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/notebook/YOLOv7_on_Custom_Data.ipynb -------------------------------------------------------------------------------- /notebook/custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/notebook/custom.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/setup.py -------------------------------------------------------------------------------- /template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/template.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/templates/index.html -------------------------------------------------------------------------------- /yolov7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/.gitignore -------------------------------------------------------------------------------- /yolov7/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/LICENSE.md -------------------------------------------------------------------------------- /yolov7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/README.md -------------------------------------------------------------------------------- /yolov7/cfg/baseline/r50-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/baseline/r50-csp.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/x50-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/baseline/x50-csp.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolor-csp-x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/baseline/yolor-csp-x.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolor-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/baseline/yolor-csp.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolor-d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/baseline/yolor-d6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolor-e6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/baseline/yolor-e6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolor-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/baseline/yolor-p6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolor-w6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/baseline/yolor-w6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/baseline/yolov3-spp.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/baseline/yolov3.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolov4-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/baseline/yolov4-csp.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7-d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/deploy/yolov7-d6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7-e6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/deploy/yolov7-e6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7-e6e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/deploy/yolov7-e6e.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7-tiny-silu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/deploy/yolov7-tiny-silu.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/deploy/yolov7-tiny.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7-w6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/deploy/yolov7-w6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/deploy/yolov7.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/deploy/yolov7x.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/custom_yolov7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/training/custom_yolov7.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/yolov7-d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/training/yolov7-d6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/yolov7-e6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/training/yolov7-e6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/yolov7-e6e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/training/yolov7-e6e.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/yolov7-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/training/yolov7-tiny.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/yolov7-w6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/training/yolov7-w6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/yolov7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/training/yolov7.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/yolov7x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/cfg/training/yolov7x.yaml -------------------------------------------------------------------------------- /yolov7/data/coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/data/coco.yaml -------------------------------------------------------------------------------- /yolov7/data/custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/data/custom.yaml -------------------------------------------------------------------------------- /yolov7/data/hyp.scratch.custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/data/hyp.scratch.custom.yaml -------------------------------------------------------------------------------- /yolov7/data/hyp.scratch.p5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/data/hyp.scratch.p5.yaml -------------------------------------------------------------------------------- /yolov7/data/hyp.scratch.p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/data/hyp.scratch.p6.yaml -------------------------------------------------------------------------------- /yolov7/data/hyp.scratch.tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/data/hyp.scratch.tiny.yaml -------------------------------------------------------------------------------- /yolov7/deploy/triton-inference-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/deploy/triton-inference-server/README.md -------------------------------------------------------------------------------- /yolov7/deploy/triton-inference-server/boundingbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/deploy/triton-inference-server/boundingbox.py -------------------------------------------------------------------------------- /yolov7/deploy/triton-inference-server/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/deploy/triton-inference-server/client.py -------------------------------------------------------------------------------- /yolov7/deploy/triton-inference-server/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/deploy/triton-inference-server/labels.py -------------------------------------------------------------------------------- /yolov7/deploy/triton-inference-server/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/deploy/triton-inference-server/processing.py -------------------------------------------------------------------------------- /yolov7/deploy/triton-inference-server/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/deploy/triton-inference-server/render.py -------------------------------------------------------------------------------- /yolov7/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/detect.py -------------------------------------------------------------------------------- /yolov7/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/export.py -------------------------------------------------------------------------------- /yolov7/hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/hubconf.py -------------------------------------------------------------------------------- /yolov7/models/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /yolov7/models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/models/common.py -------------------------------------------------------------------------------- /yolov7/models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/models/experimental.py -------------------------------------------------------------------------------- /yolov7/models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/models/yolo.py -------------------------------------------------------------------------------- /yolov7/paper/yolov7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/paper/yolov7.pdf -------------------------------------------------------------------------------- /yolov7/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/requirements.txt -------------------------------------------------------------------------------- /yolov7/scripts/get_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/scripts/get_coco.sh -------------------------------------------------------------------------------- /yolov7/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/test.py -------------------------------------------------------------------------------- /yolov7/tools/YOLOv7-Dynamic-Batch-ONNXRUNTIME.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/tools/YOLOv7-Dynamic-Batch-ONNXRUNTIME.ipynb -------------------------------------------------------------------------------- /yolov7/tools/YOLOv7-Dynamic-Batch-TENSORRT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/tools/YOLOv7-Dynamic-Batch-TENSORRT.ipynb -------------------------------------------------------------------------------- /yolov7/tools/YOLOv7CoreML.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/tools/YOLOv7CoreML.ipynb -------------------------------------------------------------------------------- /yolov7/tools/YOLOv7onnx.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/tools/YOLOv7onnx.ipynb -------------------------------------------------------------------------------- /yolov7/tools/YOLOv7trt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/tools/YOLOv7trt.ipynb -------------------------------------------------------------------------------- /yolov7/tools/compare_YOLOv7_vs_YOLOv5m6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/tools/compare_YOLOv7_vs_YOLOv5m6.ipynb -------------------------------------------------------------------------------- /yolov7/tools/compare_YOLOv7_vs_YOLOv5m6_half.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/tools/compare_YOLOv7_vs_YOLOv5m6_half.ipynb -------------------------------------------------------------------------------- /yolov7/tools/compare_YOLOv7_vs_YOLOv5s6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/tools/compare_YOLOv7_vs_YOLOv5s6.ipynb -------------------------------------------------------------------------------- /yolov7/tools/compare_YOLOv7e6_vs_YOLOv5x6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/tools/compare_YOLOv7e6_vs_YOLOv5x6.ipynb -------------------------------------------------------------------------------- /yolov7/tools/compare_YOLOv7e6_vs_YOLOv5x6_half.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/tools/compare_YOLOv7e6_vs_YOLOv5x6_half.ipynb -------------------------------------------------------------------------------- /yolov7/tools/instance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/tools/instance.ipynb -------------------------------------------------------------------------------- /yolov7/tools/keypoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/tools/keypoint.ipynb -------------------------------------------------------------------------------- /yolov7/tools/reparameterization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/tools/reparameterization.ipynb -------------------------------------------------------------------------------- /yolov7/tools/visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/tools/visualization.ipynb -------------------------------------------------------------------------------- /yolov7/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/train.py -------------------------------------------------------------------------------- /yolov7/train_aux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/train_aux.py -------------------------------------------------------------------------------- /yolov7/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /yolov7/utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/activations.py -------------------------------------------------------------------------------- /yolov7/utils/add_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/add_nms.py -------------------------------------------------------------------------------- /yolov7/utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/autoanchor.py -------------------------------------------------------------------------------- /yolov7/utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | #init -------------------------------------------------------------------------------- /yolov7/utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/aws/mime.sh -------------------------------------------------------------------------------- /yolov7/utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/aws/resume.py -------------------------------------------------------------------------------- /yolov7/utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/aws/userdata.sh -------------------------------------------------------------------------------- /yolov7/utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/datasets.py -------------------------------------------------------------------------------- /yolov7/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/general.py -------------------------------------------------------------------------------- /yolov7/utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /yolov7/utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /yolov7/utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /yolov7/utils/google_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/google_utils.py -------------------------------------------------------------------------------- /yolov7/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/loss.py -------------------------------------------------------------------------------- /yolov7/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/metrics.py -------------------------------------------------------------------------------- /yolov7/utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/plots.py -------------------------------------------------------------------------------- /yolov7/utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/torch_utils.py -------------------------------------------------------------------------------- /yolov7/utils/wandb_logging/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /yolov7/utils/wandb_logging/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/wandb_logging/log_dataset.py -------------------------------------------------------------------------------- /yolov7/utils/wandb_logging/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entbappy/Industry-Safety-Detection-using-Yolov7/HEAD/yolov7/utils/wandb_logging/wandb_utils.py --------------------------------------------------------------------------------