JishnuSetia commited on
Commit
edb8010
·
verified ·
1 Parent(s): fc77db4

Upload 150 files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. requirements.txt +5 -0
  2. streamlitYolov.py +65 -0
  3. yolov5/.dockerignore +222 -0
  4. yolov5/.gitattributes +2 -0
  5. yolov5/.github/ISSUE_TEMPLATE/bug-report.yml +87 -0
  6. yolov5/.github/ISSUE_TEMPLATE/config.yml +13 -0
  7. yolov5/.github/ISSUE_TEMPLATE/feature-request.yml +52 -0
  8. yolov5/.github/ISSUE_TEMPLATE/question.yml +35 -0
  9. yolov5/.github/dependabot.yml +27 -0
  10. yolov5/.github/workflows/ci-testing.yml +150 -0
  11. yolov5/.github/workflows/cla.yml +44 -0
  12. yolov5/.github/workflows/codeql-analysis.yml +56 -0
  13. yolov5/.github/workflows/docker.yml +60 -0
  14. yolov5/.github/workflows/format.yml +70 -0
  15. yolov5/.github/workflows/links.yml +73 -0
  16. yolov5/.github/workflows/merge-main-into-prs.yml +71 -0
  17. yolov5/.github/workflows/stale.yml +47 -0
  18. yolov5/.gitignore +258 -0
  19. yolov5/CITATION.cff +14 -0
  20. yolov5/CONTRIBUTING.md +76 -0
  21. yolov5/LICENSE +661 -0
  22. yolov5/README.md +468 -0
  23. yolov5/README.zh-CN.md +468 -0
  24. yolov5/benchmarks.py +294 -0
  25. yolov5/classify/predict.py +241 -0
  26. yolov5/classify/train.py +382 -0
  27. yolov5/classify/tutorial.ipynb +1488 -0
  28. yolov5/classify/val.py +178 -0
  29. yolov5/data/Argoverse.yaml +72 -0
  30. yolov5/data/GlobalWheat2020.yaml +52 -0
  31. yolov5/data/ImageNet.yaml +1020 -0
  32. yolov5/data/ImageNet10.yaml +30 -0
  33. yolov5/data/ImageNet100.yaml +119 -0
  34. yolov5/data/ImageNet1000.yaml +1020 -0
  35. yolov5/data/Objects365.yaml +436 -0
  36. yolov5/data/SKU-110K.yaml +51 -0
  37. yolov5/data/VOC.yaml +98 -0
  38. yolov5/data/VisDrone.yaml +68 -0
  39. yolov5/data/coco.yaml +114 -0
  40. yolov5/data/coco128-seg.yaml +99 -0
  41. yolov5/data/coco128.yaml +99 -0
  42. yolov5/data/hyps/hyp.Objects365.yaml +34 -0
  43. yolov5/data/hyps/hyp.VOC.yaml +40 -0
  44. yolov5/data/hyps/hyp.no-augmentation.yaml +35 -0
  45. yolov5/data/hyps/hyp.scratch-high.yaml +34 -0
  46. yolov5/data/hyps/hyp.scratch-low.yaml +34 -0
  47. yolov5/data/hyps/hyp.scratch-med.yaml +34 -0
  48. yolov5/data/images/bus.jpg +0 -0
  49. yolov5/data/images/zidane.jpg +0 -0
  50. yolov5/data/scripts/download_weights.sh +22 -0
requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ torch
2
+ torchvision
3
+ opencv-python
4
+ streamlit
5
+ numpy
streamlitYolov.py ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import torch
3
+ import cv2
4
+ import numpy as np
5
+
6
+ # Title and description of the app
7
+ st.title("YOLOv5 Object Detection with Video Input")
8
+ st.write("Live object detection from your webcam using YOLOv5!")
9
+
10
+ # Load the pre-trained YOLOv5 model (COCO dataset)
11
+ @st.cache_resource
12
+ def load_model():
13
+ return torch.hub.load('ultralytics/yolov5', 'yolov5s', pretrained=True)
14
+
15
+ model = load_model()
16
+
17
+ # Create a function to process video frames and apply YOLOv5
18
+ def process_frame(frame, model):
19
+ # Perform inference
20
+ results = model(frame)
21
+
22
+ # Extract detections
23
+ detections = results.pandas().xyxy[0]
24
+
25
+ # Draw bounding boxes and labels on the frame
26
+ for _, row in detections.iterrows():
27
+ x1, y1, x2, y2 = int(row['xmin']), int(row['ymin']), int(row['xmax']), int(row['ymax'])
28
+ label = f"{row['name']} {row['confidence']:.2f}"
29
+ cv2.rectangle(frame, (x1, y1), (x2, y2), (255, 0, 0), 2)
30
+ cv2.putText(frame, label, (x1, y1 - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.6, (36, 255, 12), 2)
31
+
32
+ return frame
33
+
34
+ # Start video capture
35
+ run_video = st.checkbox("Start Webcam")
36
+
37
+ if run_video:
38
+ # Initialize the webcam
39
+ cap = cv2.VideoCapture(0) # 0 is the default camera
40
+
41
+ if not cap.isOpened():
42
+ st.error("Error: Could not open the webcam.")
43
+ else:
44
+ # Stream video
45
+ stframe = st.empty() # Placeholder for displaying video frames
46
+
47
+ while run_video:
48
+ ret, frame = cap.read()
49
+
50
+ if not ret:
51
+ st.error("Error: Failed to capture video.")
52
+ break
53
+
54
+ # Process the frame with YOLOv5
55
+ processed_frame = process_frame(frame, model)
56
+
57
+ # Convert BGR to RGB for Streamlit
58
+ processed_frame = cv2.cvtColor(processed_frame, cv2.COLOR_BGR2RGB)
59
+
60
+ # Display the frame in Streamlit
61
+ stframe.image(processed_frame, channels="RGB", use_column_width=True)
62
+
63
+ cap.release()
64
+ else:
65
+ st.write("Enable the checkbox above to start the webcam.")
yolov5/.dockerignore ADDED
@@ -0,0 +1,222 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Repo-specific DockerIgnore -------------------------------------------------------------------------------------------
2
+ .git
3
+ .cache
4
+ .idea
5
+ runs
6
+ output
7
+ coco
8
+ storage.googleapis.com
9
+
10
+ data/samples/*
11
+ **/results*.csv
12
+ *.jpg
13
+
14
+ # Neural Network weights -----------------------------------------------------------------------------------------------
15
+ **/*.pt
16
+ **/*.pth
17
+ **/*.onnx
18
+ **/*.engine
19
+ **/*.mlmodel
20
+ **/*.torchscript
21
+ **/*.torchscript.pt
22
+ **/*.tflite
23
+ **/*.h5
24
+ **/*.pb
25
+ *_saved_model/
26
+ *_web_model/
27
+ *_openvino_model/
28
+
29
+ # Below Copied From .gitignore -----------------------------------------------------------------------------------------
30
+ # Below Copied From .gitignore -----------------------------------------------------------------------------------------
31
+
32
+
33
+ # GitHub Python GitIgnore ----------------------------------------------------------------------------------------------
34
+ # Byte-compiled / optimized / DLL files
35
+ __pycache__/
36
+ *.py[cod]
37
+ *$py.class
38
+
39
+ # C extensions
40
+ *.so
41
+
42
+ # Distribution / packaging
43
+ .Python
44
+ env/
45
+ build/
46
+ develop-eggs/
47
+ dist/
48
+ downloads/
49
+ eggs/
50
+ .eggs/
51
+ lib/
52
+ lib64/
53
+ parts/
54
+ sdist/
55
+ var/
56
+ wheels/
57
+ *.egg-info/
58
+ wandb/
59
+ .installed.cfg
60
+ *.egg
61
+
62
+ # PyInstaller
63
+ # Usually these files are written by a python script from a template
64
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
65
+ *.manifest
66
+ *.spec
67
+
68
+ # Installer logs
69
+ pip-log.txt
70
+ pip-delete-this-directory.txt
71
+
72
+ # Unit test / coverage reports
73
+ htmlcov/
74
+ .tox/
75
+ .coverage
76
+ .coverage.*
77
+ .cache
78
+ nosetests.xml
79
+ coverage.xml
80
+ *.cover
81
+ .hypothesis/
82
+
83
+ # Translations
84
+ *.mo
85
+ *.pot
86
+
87
+ # Django stuff:
88
+ *.log
89
+ local_settings.py
90
+
91
+ # Flask stuff:
92
+ instance/
93
+ .webassets-cache
94
+
95
+ # Scrapy stuff:
96
+ .scrapy
97
+
98
+ # Sphinx documentation
99
+ docs/_build/
100
+
101
+ # PyBuilder
102
+ target/
103
+
104
+ # Jupyter Notebook
105
+ .ipynb_checkpoints
106
+
107
+ # pyenv
108
+ .python-version
109
+
110
+ # celery beat schedule file
111
+ celerybeat-schedule
112
+
113
+ # SageMath parsed files
114
+ *.sage.py
115
+
116
+ # dotenv
117
+ .env
118
+
119
+ # virtualenv
120
+ .venv*
121
+ venv*/
122
+ ENV*/
123
+
124
+ # Spyder project settings
125
+ .spyderproject
126
+ .spyproject
127
+
128
+ # Rope project settings
129
+ .ropeproject
130
+
131
+ # mkdocs documentation
132
+ /site
133
+
134
+ # mypy
135
+ .mypy_cache/
136
+
137
+
138
+ # https://github.com/github/gitignore/blob/master/Global/macOS.gitignore -----------------------------------------------
139
+
140
+ # General
141
+ .DS_Store
142
+ .AppleDouble
143
+ .LSOverride
144
+
145
+ # Icon must end with two \r
146
+ Icon
147
+ Icon?
148
+
149
+ # Thumbnails
150
+ ._*
151
+
152
+ # Files that might appear in the root of a volume
153
+ .DocumentRevisions-V100
154
+ .fseventsd
155
+ .Spotlight-V100
156
+ .TemporaryItems
157
+ .Trashes
158
+ .VolumeIcon.icns
159
+ .com.apple.timemachine.donotpresent
160
+
161
+ # Directories potentially created on remote AFP share
162
+ .AppleDB
163
+ .AppleDesktop
164
+ Network Trash Folder
165
+ Temporary Items
166
+ .apdisk
167
+
168
+
169
+ # https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
170
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
171
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
172
+
173
+ # User-specific stuff:
174
+ .idea/*
175
+ .idea/**/workspace.xml
176
+ .idea/**/tasks.xml
177
+ .idea/dictionaries
178
+ .html # Bokeh Plots
179
+ .pg # TensorFlow Frozen Graphs
180
+ .avi # videos
181
+
182
+ # Sensitive or high-churn files:
183
+ .idea/**/dataSources/
184
+ .idea/**/dataSources.ids
185
+ .idea/**/dataSources.local.xml
186
+ .idea/**/sqlDataSources.xml
187
+ .idea/**/dynamic.xml
188
+ .idea/**/uiDesigner.xml
189
+
190
+ # Gradle:
191
+ .idea/**/gradle.xml
192
+ .idea/**/libraries
193
+
194
+ # CMake
195
+ cmake-build-debug/
196
+ cmake-build-release/
197
+
198
+ # Mongo Explorer plugin:
199
+ .idea/**/mongoSettings.xml
200
+
201
+ ## File-based project format:
202
+ *.iws
203
+
204
+ ## Plugin-specific files:
205
+
206
+ # IntelliJ
207
+ out/
208
+
209
+ # mpeltonen/sbt-idea plugin
210
+ .idea_modules/
211
+
212
+ # JIRA plugin
213
+ atlassian-ide-plugin.xml
214
+
215
+ # Cursive Clojure plugin
216
+ .idea/replstate.xml
217
+
218
+ # Crashlytics plugin (for Android Studio and IntelliJ)
219
+ com_crashlytics_export_strings.xml
220
+ crashlytics.properties
221
+ crashlytics-build.properties
222
+ fabric.properties
yolov5/.gitattributes ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # this drop notebooks from GitHub language stats
2
+ *.ipynb linguist-vendored
yolov5/.github/ISSUE_TEMPLATE/bug-report.yml ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+
3
+ name: 🐛 Bug Report
4
+ # title: " "
5
+ description: Problems with YOLOv5
6
+ labels: [bug, triage]
7
+ body:
8
+ - type: markdown
9
+ attributes:
10
+ value: |
11
+ Thank you for submitting a YOLOv5 🐛 Bug Report!
12
+
13
+ - type: checkboxes
14
+ attributes:
15
+ label: Search before asking
16
+ description: >
17
+ Please search the [issues](https://github.com/ultralytics/yolov5/issues) to see if a similar bug report already exists.
18
+ options:
19
+ - label: >
20
+ I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and found no similar bug report.
21
+ required: true
22
+
23
+ - type: dropdown
24
+ attributes:
25
+ label: YOLOv5 Component
26
+ description: |
27
+ Please select the part of YOLOv5 where you found the bug.
28
+ multiple: true
29
+ options:
30
+ - "Training"
31
+ - "Validation"
32
+ - "Detection"
33
+ - "Export"
34
+ - "PyTorch Hub"
35
+ - "Multi-GPU"
36
+ - "Evolution"
37
+ - "Integrations"
38
+ - "Other"
39
+ validations:
40
+ required: false
41
+
42
+ - type: textarea
43
+ attributes:
44
+ label: Bug
45
+ description: Provide console output with error messages and/or screenshots of the bug.
46
+ placeholder: |
47
+ 💡 ProTip! Include as much information as possible (screenshots, logs, tracebacks etc.) to receive the most helpful response.
48
+ validations:
49
+ required: true
50
+
51
+ - type: textarea
52
+ attributes:
53
+ label: Environment
54
+ description: Please specify the software and hardware you used to produce the bug.
55
+ placeholder: |
56
+ - YOLO: YOLOv5 🚀 v6.0-67-g60e42e1 torch 1.9.0+cu111 CUDA:0 (A100-SXM4-40GB, 40536MiB)
57
+ - OS: Ubuntu 20.04
58
+ - Python: 3.9.0
59
+ validations:
60
+ required: false
61
+
62
+ - type: textarea
63
+ attributes:
64
+ label: Minimal Reproducible Example
65
+ description: >
66
+ When asking a question, people will be better able to provide help if you provide code that they can easily understand and use to **reproduce** the problem.
67
+ This is referred to by community members as creating a [minimal reproducible example](https://docs.ultralytics.com/help/minimum_reproducible_example/).
68
+ placeholder: |
69
+ ```
70
+ # Code to reproduce your issue here
71
+ ```
72
+ validations:
73
+ required: false
74
+
75
+ - type: textarea
76
+ attributes:
77
+ label: Additional
78
+ description: Anything else you would like to share?
79
+
80
+ - type: checkboxes
81
+ attributes:
82
+ label: Are you willing to submit a PR?
83
+ description: >
84
+ (Optional) We encourage you to submit a [Pull Request](https://github.com/ultralytics/yolov5/pulls) (PR) to help improve YOLOv5 for everyone, especially if you have a good understanding of how to implement a fix or feature.
85
+ See the YOLOv5 [Contributing Guide](https://docs.ultralytics.com/help/contributing) to get started.
86
+ options:
87
+ - label: Yes I'd like to help by submitting a PR!
yolov5/.github/ISSUE_TEMPLATE/config.yml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+
3
+ blank_issues_enabled: true
4
+ contact_links:
5
+ - name: 📄 Docs
6
+ url: https://docs.ultralytics.com/yolov5
7
+ about: View Ultralytics YOLOv5 Docs
8
+ - name: 💬 Forum
9
+ url: https://community.ultralytics.com/
10
+ about: Ask on Ultralytics Community Forum
11
+ - name: 🎧 Discord
12
+ url: https://ultralytics.com/discord
13
+ about: Ask on Ultralytics Discord
yolov5/.github/ISSUE_TEMPLATE/feature-request.yml ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+
3
+ name: 🚀 Feature Request
4
+ description: Suggest a YOLOv5 idea
5
+ # title: " "
6
+ labels: [enhancement]
7
+ body:
8
+ - type: markdown
9
+ attributes:
10
+ value: |
11
+ Thank you for submitting a YOLOv5 🚀 Feature Request!
12
+
13
+ - type: checkboxes
14
+ attributes:
15
+ label: Search before asking
16
+ description: >
17
+ Please search the [issues](https://github.com/ultralytics/yolov5/issues) to see if a similar feature request already exists.
18
+ options:
19
+ - label: >
20
+ I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and found no similar feature requests.
21
+ required: true
22
+
23
+ - type: textarea
24
+ attributes:
25
+ label: Description
26
+ description: A short description of your feature.
27
+ placeholder: |
28
+ What new feature would you like to see in YOLOv5?
29
+ validations:
30
+ required: true
31
+
32
+ - type: textarea
33
+ attributes:
34
+ label: Use case
35
+ description: |
36
+ Describe the use case of your feature request. It will help us understand and prioritize the feature request.
37
+ placeholder: |
38
+ How would this feature be used, and who would use it?
39
+
40
+ - type: textarea
41
+ attributes:
42
+ label: Additional
43
+ description: Anything else you would like to share?
44
+
45
+ - type: checkboxes
46
+ attributes:
47
+ label: Are you willing to submit a PR?
48
+ description: >
49
+ (Optional) We encourage you to submit a [Pull Request](https://github.com/ultralytics/yolov5/pulls) (PR) to help improve YOLOv5 for everyone, especially if you have a good understanding of how to implement a fix or feature.
50
+ See the YOLOv5 [Contributing Guide](https://docs.ultralytics.com/help/contributing) to get started.
51
+ options:
52
+ - label: Yes I'd like to help by submitting a PR!
yolov5/.github/ISSUE_TEMPLATE/question.yml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+
3
+ name: ❓ Question
4
+ description: Ask a YOLOv5 question
5
+ # title: " "
6
+ labels: [question]
7
+ body:
8
+ - type: markdown
9
+ attributes:
10
+ value: |
11
+ Thank you for asking a YOLOv5 ❓ Question!
12
+
13
+ - type: checkboxes
14
+ attributes:
15
+ label: Search before asking
16
+ description: >
17
+ Please search the [issues](https://github.com/ultralytics/yolov5/issues) and [discussions](https://github.com/ultralytics/yolov5/discussions) to see if a similar question already exists.
18
+ options:
19
+ - label: >
20
+ I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and [discussions](https://github.com/ultralytics/yolov5/discussions) and found no similar questions.
21
+ required: true
22
+
23
+ - type: textarea
24
+ attributes:
25
+ label: Question
26
+ description: What is your question?
27
+ placeholder: |
28
+ 💡 ProTip! Include as much information as possible (screenshots, logs, tracebacks etc.) to receive the most helpful response.
29
+ validations:
30
+ required: true
31
+
32
+ - type: textarea
33
+ attributes:
34
+ label: Additional
35
+ description: Anything else you would like to share?
yolov5/.github/dependabot.yml ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # Dependabot for package version updates
3
+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
4
+
5
+ version: 2
6
+ updates:
7
+ - package-ecosystem: pip
8
+ directory: "/"
9
+ schedule:
10
+ interval: weekly
11
+ time: "04:00"
12
+ open-pull-requests-limit: 10
13
+ reviewers:
14
+ - glenn-jocher
15
+ labels:
16
+ - dependencies
17
+
18
+ - package-ecosystem: github-actions
19
+ directory: "/.github/workflows"
20
+ schedule:
21
+ interval: weekly
22
+ time: "04:00"
23
+ open-pull-requests-limit: 5
24
+ reviewers:
25
+ - glenn-jocher
26
+ labels:
27
+ - dependencies
yolov5/.github/workflows/ci-testing.yml ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # YOLOv5 Continuous Integration (CI) GitHub Actions tests
3
+
4
+ name: YOLOv5 CI
5
+
6
+ on:
7
+ push:
8
+ branches: [master]
9
+ pull_request:
10
+ branches: [master]
11
+ schedule:
12
+ - cron: "0 0 * * *" # runs at 00:00 UTC every day
13
+ workflow_dispatch:
14
+
15
+ jobs:
16
+ Benchmarks:
17
+ runs-on: ${{ matrix.os }}
18
+ strategy:
19
+ fail-fast: false
20
+ matrix:
21
+ os: [ubuntu-latest]
22
+ python-version: ["3.11"] # requires python<=3.11
23
+ model: [yolov5n]
24
+ steps:
25
+ - uses: actions/checkout@v4
26
+ - uses: actions/setup-python@v5
27
+ with:
28
+ python-version: ${{ matrix.python-version }}
29
+ cache: "pip" # cache pip dependencies
30
+ - name: Install requirements
31
+ run: |
32
+ python -m pip install --upgrade pip wheel
33
+ pip install -r requirements.txt coremltools openvino-dev "tensorflow-cpu<2.15.1" --extra-index-url https://download.pytorch.org/whl/cpu
34
+ yolo checks
35
+ pip list
36
+ - name: Benchmark DetectionModel
37
+ run: |
38
+ python benchmarks.py --data coco128.yaml --weights ${{ matrix.model }}.pt --img 320 --hard-fail 0.29
39
+ - name: Benchmark SegmentationModel
40
+ run: |
41
+ python benchmarks.py --data coco128-seg.yaml --weights ${{ matrix.model }}-seg.pt --img 320 --hard-fail 0.22
42
+ - name: Test predictions
43
+ run: |
44
+ python export.py --weights ${{ matrix.model }}-cls.pt --include onnx --img 224
45
+ python detect.py --weights ${{ matrix.model }}.onnx --img 320
46
+ python segment/predict.py --weights ${{ matrix.model }}-seg.onnx --img 320
47
+ python classify/predict.py --weights ${{ matrix.model }}-cls.onnx --img 224
48
+
49
+ Tests:
50
+ timeout-minutes: 60
51
+ runs-on: ${{ matrix.os }}
52
+ strategy:
53
+ fail-fast: false
54
+ matrix:
55
+ os: [ubuntu-latest, windows-latest, macos-14] # macos-latest bug https://github.com/ultralytics/yolov5/pull/9049
56
+ python-version: ["3.11"]
57
+ model: [yolov5n]
58
+ include:
59
+ - os: ubuntu-latest
60
+ python-version: "3.8" # torch 1.8.0 requires python >=3.6, <=3.8
61
+ model: yolov5n
62
+ torch: "1.8.0" # min torch version CI https://pypi.org/project/torchvision/
63
+ steps:
64
+ - uses: actions/checkout@v4
65
+ - uses: actions/setup-python@v5
66
+ with:
67
+ python-version: ${{ matrix.python-version }}
68
+ cache: "pip" # caching pip dependencies
69
+ - name: Install requirements
70
+ run: |
71
+ python -m pip install --upgrade pip wheel
72
+ torch=""
73
+ if [ "${{ matrix.torch }}" == "1.8.0" ]; then
74
+ torch="torch==1.8.0 torchvision==0.9.0"
75
+ fi
76
+ pip install -r requirements.txt $torch --extra-index-url https://download.pytorch.org/whl/cpu
77
+ shell: bash # for Windows compatibility
78
+ - name: Check environment
79
+ run: |
80
+ yolo checks
81
+ pip list
82
+ - name: Test detection
83
+ shell: bash # for Windows compatibility
84
+ run: |
85
+ # export PYTHONPATH="$PWD" # to run '$ python *.py' files in subdirectories
86
+ m=${{ matrix.model }} # official weights
87
+ b=runs/train/exp/weights/best # best.pt checkpoint
88
+ python train.py --imgsz 64 --batch 32 --weights $m.pt --cfg $m.yaml --epochs 1 --device cpu # train
89
+ for d in cpu; do # devices
90
+ for w in $m $b; do # weights
91
+ python val.py --imgsz 64 --batch 32 --weights $w.pt --device $d # val
92
+ python detect.py --imgsz 64 --weights $w.pt --device $d # detect
93
+ done
94
+ done
95
+ python hubconf.py --model $m # hub
96
+ # python models/tf.py --weights $m.pt # build TF model
97
+ python models/yolo.py --cfg $m.yaml # build PyTorch model
98
+ python export.py --weights $m.pt --img 64 --include torchscript # export
99
+ python - <<EOF
100
+ import torch
101
+ im = torch.zeros([1, 3, 64, 64])
102
+ for path in '$m', '$b':
103
+ model = torch.hub.load('.', 'custom', path=path, source='local')
104
+ print(model('data/images/bus.jpg'))
105
+ model(im) # warmup, build grids for trace
106
+ torch.jit.trace(model, [im])
107
+ EOF
108
+ - name: Test segmentation
109
+ shell: bash # for Windows compatibility
110
+ run: |
111
+ m=${{ matrix.model }}-seg # official weights
112
+ b=runs/train-seg/exp/weights/best # best.pt checkpoint
113
+ python segment/train.py --imgsz 64 --batch 32 --weights $m.pt --cfg $m.yaml --epochs 1 --device cpu # train
114
+ python segment/train.py --imgsz 64 --batch 32 --weights '' --cfg $m.yaml --epochs 1 --device cpu # train
115
+ for d in cpu; do # devices
116
+ for w in $m $b; do # weights
117
+ python segment/val.py --imgsz 64 --batch 32 --weights $w.pt --device $d # val
118
+ python segment/predict.py --imgsz 64 --weights $w.pt --device $d # predict
119
+ python export.py --weights $w.pt --img 64 --include torchscript --device $d # export
120
+ done
121
+ done
122
+ - name: Test classification
123
+ shell: bash # for Windows compatibility
124
+ run: |
125
+ m=${{ matrix.model }}-cls.pt # official weights
126
+ b=runs/train-cls/exp/weights/best.pt # best.pt checkpoint
127
+ python classify/train.py --imgsz 32 --model $m --data mnist160 --epochs 1 # train
128
+ python classify/val.py --imgsz 32 --weights $b --data ../datasets/mnist160 # val
129
+ python classify/predict.py --imgsz 32 --weights $b --source ../datasets/mnist160/test/7/60.png # predict
130
+ python classify/predict.py --imgsz 32 --weights $m --source data/images/bus.jpg # predict
131
+ python export.py --weights $b --img 64 --include torchscript # export
132
+ python - <<EOF
133
+ import torch
134
+ for path in '$m', '$b':
135
+ model = torch.hub.load('.', 'custom', path=path, source='local')
136
+ EOF
137
+
138
+ Summary:
139
+ runs-on: ubuntu-latest
140
+ needs: [Benchmarks, Tests] # Add job names that you want to check for failure
141
+ if: always() # This ensures the job runs even if previous jobs fail
142
+ steps:
143
+ - name: Check for failure and notify
144
+ if: (needs.Benchmarks.result == 'failure' || needs.Tests.result == 'failure' || needs.Benchmarks.result == 'cancelled' || needs.Tests.result == 'cancelled') && github.repository == 'ultralytics/yolov5' && (github.event_name == 'schedule' || github.event_name == 'push')
145
+ uses: slackapi/slack-github-action@v1.27.0
146
+ with:
147
+ payload: |
148
+ {"text": "<!channel> GitHub Actions error for ${{ github.workflow }} ❌\n\n\n*Repository:* https://github.com/${{ github.repository }}\n*Action:* https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\n*Author:* ${{ github.actor }}\n*Event:* ${{ github.event_name }}\n"}
149
+ env:
150
+ SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_YOLO }}
yolov5/.github/workflows/cla.yml ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLO 🚀, AGPL-3.0 license
2
+ # Ultralytics Contributor License Agreement (CLA) action https://docs.ultralytics.com/help/CLA
3
+ # This workflow automatically requests Pull Requests (PR) authors to sign the Ultralytics CLA before PRs can be merged
4
+
5
+ name: CLA Assistant
6
+ on:
7
+ issue_comment:
8
+ types:
9
+ - created
10
+ pull_request_target:
11
+ types:
12
+ - reopened
13
+ - opened
14
+ - synchronize
15
+
16
+ permissions:
17
+ actions: write
18
+ contents: write
19
+ pull-requests: write
20
+ statuses: write
21
+
22
+ jobs:
23
+ CLA:
24
+ if: github.repository == 'ultralytics/yolov5'
25
+ runs-on: ubuntu-latest
26
+ steps:
27
+ - name: CLA Assistant
28
+ if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I sign the CLA') || github.event_name == 'pull_request_target'
29
+ uses: contributor-assistant/github-action@v2.5.1
30
+ env:
31
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32
+ # Must be repository secret PAT
33
+ PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
34
+ with:
35
+ path-to-signatures: "signatures/version1/cla.json"
36
+ path-to-document: "https://docs.ultralytics.com/help/CLA" # CLA document
37
+ # Branch must not be protected
38
+ branch: "cla-signatures"
39
+ allowlist: dependabot[bot],github-actions,[pre-commit*,pre-commit*,bot*
40
+
41
+ remote-organization-name: ultralytics
42
+ remote-repository-name: cla
43
+ custom-pr-sign-comment: "I have read the CLA Document and I sign the CLA"
44
+ custom-allsigned-prcomment: All Contributors have signed the CLA. ✅
yolov5/.github/workflows/codeql-analysis.yml ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # This action runs GitHub's industry-leading static analysis engine, CodeQL, against a repository's source code to find security vulnerabilities.
3
+ # https://github.com/github/codeql-action
4
+
5
+ name: "CodeQL"
6
+
7
+ on:
8
+ schedule:
9
+ - cron: "0 0 1 * *" # Runs at 00:00 UTC on the 1st of every month
10
+ workflow_dispatch:
11
+
12
+ jobs:
13
+ analyze:
14
+ name: Analyze
15
+ runs-on: ubuntu-latest
16
+
17
+ strategy:
18
+ fail-fast: false
19
+ matrix:
20
+ language: ["python"]
21
+ # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
22
+ # Learn more:
23
+ # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
24
+
25
+ steps:
26
+ - name: Checkout repository
27
+ uses: actions/checkout@v4
28
+
29
+ # Initializes the CodeQL tools for scanning.
30
+ - name: Initialize CodeQL
31
+ uses: github/codeql-action/init@v3
32
+ with:
33
+ languages: ${{ matrix.language }}
34
+ # If you wish to specify custom queries, you can do so here or in a config file.
35
+ # By default, queries listed here will override any specified in a config file.
36
+ # Prefix the list here with "+" to use these queries and those in the config file.
37
+ # queries: ./path/to/local/query, your-org/your-repo/queries@main
38
+
39
+ # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
40
+ # If this step fails, then you should remove it and run the build manually (see below)
41
+ - name: Autobuild
42
+ uses: github/codeql-action/autobuild@v3
43
+
44
+ # ℹ️ Command-line programs to run using the OS shell.
45
+ # 📚 https://git.io/JvXDl
46
+
47
+ # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
48
+ # and modify them (or add more) to build your code if your project
49
+ # uses a compiled language
50
+
51
+ #- run: |
52
+ # make bootstrap
53
+ # make release
54
+
55
+ - name: Perform CodeQL Analysis
56
+ uses: github/codeql-action/analyze@v3
yolov5/.github/workflows/docker.yml ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # Builds ultralytics/yolov5:latest images on DockerHub https://hub.docker.com/r/ultralytics/yolov5
3
+
4
+ name: Publish Docker Images
5
+
6
+ on:
7
+ push:
8
+ branches: [master]
9
+ workflow_dispatch:
10
+
11
+ jobs:
12
+ docker:
13
+ if: github.repository == 'ultralytics/yolov5'
14
+ name: Push Docker image to Docker Hub
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout repo
18
+ uses: actions/checkout@v4
19
+ with:
20
+ fetch-depth: 0 # copy full .git directory to access full git history in Docker images
21
+
22
+ - name: Set up QEMU
23
+ uses: docker/setup-qemu-action@v3
24
+
25
+ - name: Set up Docker Buildx
26
+ uses: docker/setup-buildx-action@v3
27
+
28
+ - name: Login to Docker Hub
29
+ uses: docker/login-action@v3
30
+ with:
31
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
32
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
33
+
34
+ - name: Build and push arm64 image
35
+ uses: docker/build-push-action@v6
36
+ continue-on-error: true
37
+ with:
38
+ context: .
39
+ platforms: linux/arm64
40
+ file: utils/docker/Dockerfile-arm64
41
+ push: true
42
+ tags: ultralytics/yolov5:latest-arm64
43
+
44
+ - name: Build and push CPU image
45
+ uses: docker/build-push-action@v6
46
+ continue-on-error: true
47
+ with:
48
+ context: .
49
+ file: utils/docker/Dockerfile-cpu
50
+ push: true
51
+ tags: ultralytics/yolov5:latest-cpu
52
+
53
+ - name: Build and push GPU image
54
+ uses: docker/build-push-action@v6
55
+ continue-on-error: true
56
+ with:
57
+ context: .
58
+ file: utils/docker/Dockerfile
59
+ push: true
60
+ tags: ultralytics/yolov5:latest
yolov5/.github/workflows/format.yml ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics 🚀 - AGPL-3.0 License https://ultralytics.com/license
2
+ # Ultralytics Actions https://github.com/ultralytics/actions
3
+ # This workflow automatically formats code and documentation in PRs to official Ultralytics standards
4
+
5
+ name: Ultralytics Actions
6
+
7
+ on:
8
+ issues:
9
+ types: [opened]
10
+ pull_request_target:
11
+ branches: [main, master]
12
+ types: [opened, closed, synchronize, review_requested]
13
+
14
+ jobs:
15
+ format:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Run Ultralytics Formatting
19
+ uses: ultralytics/actions@main
20
+ with:
21
+ token: ${{ secrets.PERSONAL_ACCESS_TOKEN || secrets.GITHUB_TOKEN }} # note GITHUB_TOKEN automatically generated
22
+ labels: true # autolabel issues and PRs
23
+ python: true # format Python code and docstrings
24
+ prettier: true # format YAML, JSON, Markdown and CSS
25
+ spelling: true # check spelling
26
+ links: false # check broken links
27
+ summary: true # print PR summary with GPT4o (requires 'openai_api_key')
28
+ openai_azure_api_key: ${{ secrets.OPENAI_AZURE_API_KEY }}
29
+ openai_azure_endpoint: ${{ secrets.OPENAI_AZURE_ENDPOINT }}
30
+ first_issue_response: |
31
+ 👋 Hello @${{ github.actor }}, thank you for your interest in YOLOv5 🚀! Please visit our ⭐️ [Tutorials](https://docs.ultralytics.com/yolov5/) to get started, where you can find quickstart guides for simple tasks like [Custom Data Training](https://docs.ultralytics.com/yolov5/tutorials/train_custom_data/) all the way to advanced concepts like [Hyperparameter Evolution](https://docs.ultralytics.com/yolov5/tutorials/hyperparameter_evolution/).
32
+
33
+ If this is a 🐛 Bug Report, please provide a **minimum reproducible example** to help us debug it.
34
+
35
+ If this is a custom training ❓ Question, please provide as much information as possible, including dataset image examples and training logs, and verify you are following our [Tips for Best Training Results](https://docs.ultralytics.com/guides/model-training-tips//).
36
+
37
+ ## Requirements
38
+
39
+ [**Python>=3.8.0**](https://www.python.org/) with all [requirements.txt](https://github.com/ultralytics/yolov5/blob/master/requirements.txt) installed including [**PyTorch>=1.8**](https://pytorch.org/get-started/locally/). To get started:
40
+ ```bash
41
+ git clone https://github.com/ultralytics/yolov5 # clone
42
+ cd yolov5
43
+ pip install -r requirements.txt # install
44
+ ```
45
+
46
+ ## Environments
47
+
48
+ YOLOv5 may be run in any of the following up-to-date verified environments (with all dependencies including [CUDA](https://developer.nvidia.com/cuda)/[CUDNN](https://developer.nvidia.com/cudnn), [Python](https://www.python.org/) and [PyTorch](https://pytorch.org/) preinstalled):
49
+
50
+ - **Notebooks** with free GPU: <a href="https://bit.ly/yolov5-paperspace-notebook"><img src="https://assets.paperspace.io/img/gradient-badge.svg" alt="Run on Gradient"></a> <a href="https://colab.research.google.com/github/ultralytics/yolov5/blob/master/tutorial.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"></a> <a href="https://www.kaggle.com/ultralytics/yolov5"><img src="https://kaggle.com/static/images/open-in-kaggle.svg" alt="Open In Kaggle"></a>
51
+ - **Google Cloud** Deep Learning VM. See [GCP Quickstart Guide](https://docs.ultralytics.com/yolov5/environments/google_cloud_quickstart_tutorial/)
52
+ - **Amazon** Deep Learning AMI. See [AWS Quickstart Guide](https://docs.ultralytics.com/yolov5/environments/aws_quickstart_tutorial/)
53
+ - **Docker Image**. See [Docker Quickstart Guide](https://docs.ultralytics.com/yolov5/environments/docker_image_quickstart_tutorial/) <a href="https://hub.docker.com/r/ultralytics/yolov5"><img src="https://img.shields.io/docker/pulls/ultralytics/yolov5?logo=docker" alt="Docker Pulls"></a>
54
+
55
+ ## Status
56
+
57
+ <a href="https://github.com/ultralytics/yolov5/actions/workflows/ci-testing.yml"><img src="https://github.com/ultralytics/yolov5/actions/workflows/ci-testing.yml/badge.svg" alt="YOLOv5 CI"></a>
58
+
59
+ If this badge is green, all [YOLOv5 GitHub Actions](https://github.com/ultralytics/yolov5/actions) Continuous Integration (CI) tests are currently passing. CI tests verify correct operation of YOLOv5 [training](https://github.com/ultralytics/yolov5/blob/master/train.py), [validation](https://github.com/ultralytics/yolov5/blob/master/val.py), [inference](https://github.com/ultralytics/yolov5/blob/master/detect.py), [export](https://github.com/ultralytics/yolov5/blob/master/export.py) and [benchmarks](https://github.com/ultralytics/yolov5/blob/master/benchmarks.py) on macOS, Windows, and Ubuntu every 24 hours and on every commit.
60
+
61
+ ## Introducing YOLOv8 🚀
62
+
63
+ We're excited to announce the launch of our latest state-of-the-art (SOTA) object detection model for 2023 - [YOLOv8](https://github.com/ultralytics/ultralytics) 🚀!
64
+
65
+ Designed to be fast, accurate, and easy to use, YOLOv8 is an ideal choice for a wide range of object detection, image segmentation and image classification tasks. With YOLOv8, you'll be able to quickly and accurately detect objects in real-time, streamline your workflows, and achieve new levels of accuracy in your projects.
66
+
67
+ Check out our [YOLOv8 Docs](https://docs.ultralytics.com/) for details and get started with:
68
+ ```bash
69
+ pip install ultralytics
70
+ ```
yolov5/.github/workflows/links.yml ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # Continuous Integration (CI) GitHub Actions tests broken link checker using https://github.com/lycheeverse/lychee
3
+ # Ignores the following status codes to reduce false positives:
4
+ # - 403(OpenVINO, 'forbidden')
5
+ # - 429(Instagram, 'too many requests')
6
+ # - 500(Zenodo, 'cached')
7
+ # - 502(Zenodo, 'bad gateway')
8
+ # - 999(LinkedIn, 'unknown status code')
9
+
10
+ name: Check Broken links
11
+
12
+ on:
13
+ workflow_dispatch:
14
+ schedule:
15
+ - cron: "0 0 * * *" # runs at 00:00 UTC every day
16
+
17
+ jobs:
18
+ Links:
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+
23
+ - name: Download and install lychee
24
+ run: |
25
+ LYCHEE_URL=$(curl -s https://api.github.com/repos/lycheeverse/lychee/releases/latest | grep "browser_download_url" | grep "x86_64-unknown-linux-gnu.tar.gz" | cut -d '"' -f 4)
26
+ curl -L $LYCHEE_URL -o lychee.tar.gz
27
+ tar xzf lychee.tar.gz
28
+ sudo mv lychee /usr/local/bin
29
+
30
+ - name: Test Markdown and HTML links with retry
31
+ uses: nick-invision/retry@v3
32
+ with:
33
+ timeout_minutes: 5
34
+ retry_wait_seconds: 60
35
+ max_attempts: 3
36
+ command: |
37
+ lychee \
38
+ --scheme 'https' \
39
+ --timeout 60 \
40
+ --insecure \
41
+ --accept 403,429,500,502,999 \
42
+ --exclude-all-private \
43
+ --exclude 'https?://(www\.)?(linkedin\.com|twitter\.com|instagram\.com|kaggle\.com|fonts\.gstatic\.com|url\.com)' \
44
+ --exclude-path '**/ci.yaml' \
45
+ --github-token ${{ secrets.GITHUB_TOKEN }} \
46
+ --header "User-Agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.183 Safari/537.36" \
47
+ './**/*.md' \
48
+ './**/*.html'
49
+
50
+ - name: Test Markdown, HTML, YAML, Python and Notebook links with retry
51
+ if: github.event_name == 'workflow_dispatch'
52
+ uses: nick-invision/retry@v3
53
+ with:
54
+ timeout_minutes: 5
55
+ retry_wait_seconds: 60
56
+ max_attempts: 3
57
+ command: |
58
+ lychee \
59
+ --scheme 'https' \
60
+ --timeout 60 \
61
+ --insecure \
62
+ --accept 429,999 \
63
+ --exclude-all-private \
64
+ --exclude 'https?://(www\.)?(linkedin\.com|twitter\.com|instagram\.com|kaggle\.com|fonts\.gstatic\.com|url\.com)' \
65
+ --exclude-path '**/ci.yaml' \
66
+ --github-token ${{ secrets.GITHUB_TOKEN }} \
67
+ --header "User-Agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.183 Safari/537.36" \
68
+ './**/*.md' \
69
+ './**/*.html' \
70
+ './**/*.yml' \
71
+ './**/*.yaml' \
72
+ './**/*.py' \
73
+ './**/*.ipynb'
yolov5/.github/workflows/merge-main-into-prs.yml ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLO 🚀, AGPL-3.0 license
2
+ # Automatically merges repository 'main' branch into all open PRs to keep them up-to-date
3
+ # Action runs on updates to main branch so when one PR merges to main all others update
4
+
5
+ name: Merge main into PRs
6
+
7
+ on:
8
+ workflow_dispatch:
9
+ # push:
10
+ # branches:
11
+ # - ${{ github.event.repository.default_branch }}
12
+
13
+ jobs:
14
+ Merge:
15
+ if: github.repository == 'ultralytics/yolov5'
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout repository
19
+ uses: actions/checkout@v4
20
+ with:
21
+ fetch-depth: 0
22
+ - uses: actions/setup-python@v5
23
+ with:
24
+ python-version: "3.x"
25
+ cache: "pip"
26
+ - name: Install requirements
27
+ run: |
28
+ pip install pygithub
29
+ - name: Merge default branch into PRs
30
+ shell: python
31
+ run: |
32
+ from github import Github
33
+ import os
34
+
35
+ g = Github(os.getenv('GITHUB_TOKEN'))
36
+ repo = g.get_repo(os.getenv('GITHUB_REPOSITORY'))
37
+
38
+ # Fetch the default branch name
39
+ default_branch_name = repo.default_branch
40
+ default_branch = repo.get_branch(default_branch_name)
41
+
42
+ for pr in repo.get_pulls(state='open', sort='created'):
43
+ try:
44
+ # Get full names for repositories and branches
45
+ base_repo_name = repo.full_name
46
+ head_repo_name = pr.head.repo.full_name
47
+ base_branch_name = pr.base.ref
48
+ head_branch_name = pr.head.ref
49
+
50
+ # Check if PR is behind the default branch
51
+ comparison = repo.compare(default_branch.commit.sha, pr.head.sha)
52
+
53
+ if comparison.behind_by > 0:
54
+ print(f"⚠️ PR #{pr.number} ({head_repo_name}:{head_branch_name} -> {base_repo_name}:{base_branch_name}) is behind {default_branch_name} by {comparison.behind_by} commit(s).")
55
+
56
+ # Attempt to update the branch
57
+ try:
58
+ success = pr.update_branch()
59
+ assert success, "Branch update failed"
60
+ print(f"✅ Successfully merged '{default_branch_name}' into PR #{pr.number} ({head_repo_name}:{head_branch_name} -> {base_repo_name}:{base_branch_name}).")
61
+ except Exception as update_error:
62
+ print(f"❌ Could not update PR #{pr.number} ({head_repo_name}:{head_branch_name} -> {base_repo_name}:{base_branch_name}): {update_error}")
63
+ print(" This might be due to branch protection rules or insufficient permissions.")
64
+ else:
65
+ print(f"✅ PR #{pr.number} ({head_repo_name}:{head_branch_name} -> {base_repo_name}:{base_branch_name}) is up to date with {default_branch_name}.")
66
+ except Exception as e:
67
+ print(f"❌ Could not process PR #{pr.number}: {e}")
68
+
69
+ env:
70
+ GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
71
+ GITHUB_REPOSITORY: ${{ github.repository }}
yolov5/.github/workflows/stale.yml ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+
3
+ name: Close stale issues
4
+ on:
5
+ schedule:
6
+ - cron: "0 0 * * *" # Runs at 00:00 UTC every day
7
+
8
+ jobs:
9
+ stale:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/stale@v9
13
+ with:
14
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
15
+
16
+ stale-issue-message: |
17
+ 👋 Hello there! We wanted to give you a friendly reminder that this issue has not had any recent activity and may be closed soon, but don't worry - you can always reopen it if needed. If you still have any questions or concerns, please feel free to let us know how we can help.
18
+
19
+ For additional resources and information, please see the links below:
20
+
21
+ - **Docs**: https://docs.ultralytics.com
22
+ - **HUB**: https://hub.ultralytics.com
23
+ - **Community**: https://community.ultralytics.com
24
+
25
+ Feel free to inform us of any other **issues** you discover or **feature requests** that come to mind in the future. Pull Requests (PRs) are also always welcomed!
26
+
27
+ Thank you for your contributions to YOLO 🚀 and Vision AI ⭐
28
+
29
+ stale-pr-message: |
30
+ 👋 Hello there! We wanted to let you know that we've decided to close this pull request due to inactivity. We appreciate the effort you put into contributing to our project, but unfortunately, not all contributions are suitable or aligned with our product roadmap.
31
+
32
+ We hope you understand our decision, and please don't let it discourage you from contributing to open source projects in the future. We value all of our community members and their contributions, and we encourage you to keep exploring new projects and ways to get involved.
33
+
34
+ For additional resources and information, please see the links below:
35
+
36
+ - **Docs**: https://docs.ultralytics.com
37
+ - **HUB**: https://hub.ultralytics.com
38
+ - **Community**: https://community.ultralytics.com
39
+
40
+ Thank you for your contributions to YOLO 🚀 and Vision AI ⭐
41
+
42
+ days-before-issue-stale: 30
43
+ days-before-issue-close: 10
44
+ days-before-pr-stale: 90
45
+ days-before-pr-close: 30
46
+ exempt-issue-labels: "documentation,tutorial,TODO"
47
+ operations-per-run: 300 # The maximum number of operations per run, used to control rate limiting.
yolov5/.gitignore ADDED
@@ -0,0 +1,258 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Repo-specific GitIgnore ----------------------------------------------------------------------------------------------
2
+ *.jpg
3
+ *.jpeg
4
+ *.png
5
+ *.bmp
6
+ *.tif
7
+ *.tiff
8
+ *.heic
9
+ *.JPG
10
+ *.JPEG
11
+ *.PNG
12
+ *.BMP
13
+ *.TIF
14
+ *.TIFF
15
+ *.HEIC
16
+ *.mp4
17
+ *.mov
18
+ *.MOV
19
+ *.avi
20
+ *.data
21
+ *.json
22
+ *.cfg
23
+ !setup.cfg
24
+ !cfg/yolov3*.cfg
25
+
26
+ storage.googleapis.com
27
+ runs/*
28
+ data/*
29
+ data/images/*
30
+ !data/*.yaml
31
+ !data/hyps
32
+ !data/scripts
33
+ !data/images
34
+ !data/images/zidane.jpg
35
+ !data/images/bus.jpg
36
+ !data/*.sh
37
+
38
+ results*.csv
39
+
40
+ # Datasets -------------------------------------------------------------------------------------------------------------
41
+ coco/
42
+ coco128/
43
+ VOC/
44
+
45
+ # MATLAB GitIgnore -----------------------------------------------------------------------------------------------------
46
+ *.m~
47
+ *.mat
48
+ !targets*.mat
49
+
50
+ # Neural Network weights -----------------------------------------------------------------------------------------------
51
+ *.weights
52
+ *.pt
53
+ *.pb
54
+ *.onnx
55
+ *.engine
56
+ *.mlmodel
57
+ *.mlpackage
58
+ *.torchscript
59
+ *.tflite
60
+ *.h5
61
+ *_saved_model/
62
+ *_web_model/
63
+ *_openvino_model/
64
+ *_paddle_model/
65
+ darknet53.conv.74
66
+ yolov3-tiny.conv.15
67
+
68
+ # GitHub Python GitIgnore ----------------------------------------------------------------------------------------------
69
+ # Byte-compiled / optimized / DLL files
70
+ __pycache__/
71
+ *.py[cod]
72
+ *$py.class
73
+
74
+ # C extensions
75
+ *.so
76
+
77
+ # Distribution / packaging
78
+ .Python
79
+ env/
80
+ build/
81
+ develop-eggs/
82
+ dist/
83
+ downloads/
84
+ eggs/
85
+ .eggs/
86
+ lib/
87
+ lib64/
88
+ parts/
89
+ sdist/
90
+ var/
91
+ wheels/
92
+ *.egg-info/
93
+ /wandb/
94
+ .installed.cfg
95
+ *.egg
96
+
97
+
98
+ # PyInstaller
99
+ # Usually these files are written by a python script from a template
100
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
101
+ *.manifest
102
+ *.spec
103
+
104
+ # Installer logs
105
+ pip-log.txt
106
+ pip-delete-this-directory.txt
107
+
108
+ # Unit test / coverage reports
109
+ htmlcov/
110
+ .tox/
111
+ .coverage
112
+ .coverage.*
113
+ .cache
114
+ nosetests.xml
115
+ coverage.xml
116
+ *.cover
117
+ .hypothesis/
118
+
119
+ # Translations
120
+ *.mo
121
+ *.pot
122
+
123
+ # Django stuff:
124
+ *.log
125
+ local_settings.py
126
+
127
+ # Flask stuff:
128
+ instance/
129
+ .webassets-cache
130
+
131
+ # Scrapy stuff:
132
+ .scrapy
133
+
134
+ # Sphinx documentation
135
+ docs/_build/
136
+
137
+ # PyBuilder
138
+ target/
139
+
140
+ # Jupyter Notebook
141
+ .ipynb_checkpoints
142
+
143
+ # pyenv
144
+ .python-version
145
+
146
+ # celery beat schedule file
147
+ celerybeat-schedule
148
+
149
+ # SageMath parsed files
150
+ *.sage.py
151
+
152
+ # dotenv
153
+ .env
154
+
155
+ # virtualenv
156
+ .venv*
157
+ venv*/
158
+ ENV*/
159
+
160
+ # Spyder project settings
161
+ .spyderproject
162
+ .spyproject
163
+
164
+ # Rope project settings
165
+ .ropeproject
166
+
167
+ # mkdocs documentation
168
+ /site
169
+
170
+ # mypy
171
+ .mypy_cache/
172
+
173
+
174
+ # https://github.com/github/gitignore/blob/master/Global/macOS.gitignore -----------------------------------------------
175
+
176
+ # General
177
+ .DS_Store
178
+ .AppleDouble
179
+ .LSOverride
180
+
181
+ # Icon must end with two \r
182
+ Icon
183
+ Icon?
184
+
185
+ # Thumbnails
186
+ ._*
187
+
188
+ # Files that might appear in the root of a volume
189
+ .DocumentRevisions-V100
190
+ .fseventsd
191
+ .Spotlight-V100
192
+ .TemporaryItems
193
+ .Trashes
194
+ .VolumeIcon.icns
195
+ .com.apple.timemachine.donotpresent
196
+
197
+ # Directories potentially created on remote AFP share
198
+ .AppleDB
199
+ .AppleDesktop
200
+ Network Trash Folder
201
+ Temporary Items
202
+ .apdisk
203
+
204
+
205
+ # https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
206
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
207
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
208
+
209
+ # User-specific stuff:
210
+ .idea/*
211
+ .idea/**/workspace.xml
212
+ .idea/**/tasks.xml
213
+ .idea/dictionaries
214
+ .html # Bokeh Plots
215
+ .pg # TensorFlow Frozen Graphs
216
+ .avi # videos
217
+
218
+ # Sensitive or high-churn files:
219
+ .idea/**/dataSources/
220
+ .idea/**/dataSources.ids
221
+ .idea/**/dataSources.local.xml
222
+ .idea/**/sqlDataSources.xml
223
+ .idea/**/dynamic.xml
224
+ .idea/**/uiDesigner.xml
225
+
226
+ # Gradle:
227
+ .idea/**/gradle.xml
228
+ .idea/**/libraries
229
+
230
+ # CMake
231
+ cmake-build-debug/
232
+ cmake-build-release/
233
+
234
+ # Mongo Explorer plugin:
235
+ .idea/**/mongoSettings.xml
236
+
237
+ ## File-based project format:
238
+ *.iws
239
+
240
+ ## Plugin-specific files:
241
+
242
+ # IntelliJ
243
+ out/
244
+
245
+ # mpeltonen/sbt-idea plugin
246
+ .idea_modules/
247
+
248
+ # JIRA plugin
249
+ atlassian-ide-plugin.xml
250
+
251
+ # Cursive Clojure plugin
252
+ .idea/replstate.xml
253
+
254
+ # Crashlytics plugin (for Android Studio and IntelliJ)
255
+ com_crashlytics_export_strings.xml
256
+ crashlytics.properties
257
+ crashlytics-build.properties
258
+ fabric.properties
yolov5/CITATION.cff ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cff-version: 1.2.0
2
+ preferred-citation:
3
+ type: software
4
+ message: If you use YOLOv5, please cite it as below.
5
+ authors:
6
+ - family-names: Jocher
7
+ given-names: Glenn
8
+ orcid: "https://orcid.org/0000-0001-5950-6979"
9
+ title: "YOLOv5 by Ultralytics"
10
+ version: 7.0
11
+ doi: 10.5281/zenodo.3908559
12
+ date-released: 2020-5-29
13
+ license: AGPL-3.0
14
+ url: "https://github.com/ultralytics/yolov5"
yolov5/CONTRIBUTING.md ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Contributing to YOLOv5 🚀
2
+
3
+ We love your input! We want to make contributing to YOLOv5 as easy and transparent as possible, whether it's:
4
+
5
+ - Reporting a bug
6
+ - Discussing the current state of the code
7
+ - Submitting a fix
8
+ - Proposing a new feature
9
+ - Becoming a maintainer
10
+
11
+ YOLOv5 works so well due to our combined community effort, and for every small improvement you contribute you will be helping push the frontiers of what's possible in AI 😃!
12
+
13
+ ## Submitting a Pull Request (PR) 🛠️
14
+
15
+ Submitting a PR is easy! This example shows how to submit a PR for updating `requirements.txt` in 4 steps:
16
+
17
+ ### 1. Select File to Update
18
+
19
+ Select `requirements.txt` to update by clicking on it in GitHub.
20
+
21
+ <p align="center"><img width="800" alt="PR_step1" src="https://user-images.githubusercontent.com/26833433/122260847-08be2600-ced4-11eb-828b-8287ace4136c.png"></p>
22
+
23
+ ### 2. Click 'Edit this file'
24
+
25
+ The button is in the top-right corner.
26
+
27
+ <p align="center"><img width="800" alt="PR_step2" src="https://user-images.githubusercontent.com/26833433/122260844-06f46280-ced4-11eb-9eec-b8a24be519ca.png"></p>
28
+
29
+ ### 3. Make Changes
30
+
31
+ Change the `matplotlib` version from `3.2.2` to `3.3`.
32
+
33
+ <p align="center"><img width="800" alt="PR_step3" src="https://user-images.githubusercontent.com/26833433/122260853-0a87e980-ced4-11eb-9fd2-3650fb6e0842.png"></p>
34
+
35
+ ### 4. Preview Changes and Submit PR
36
+
37
+ Click on the **Preview changes** tab to verify your updates. At the bottom of the screen select 'Create a **new branch** for this commit', assign your branch a descriptive name such as `fix/matplotlib_version` and click the green **Propose changes** button. All done, your PR is now submitted to YOLOv5 for review and approval 😃!
38
+
39
+ <p align="center"><img width="800" alt="PR_step4" src="https://user-images.githubusercontent.com/26833433/122260856-0b208000-ced4-11eb-8e8e-77b6151cbcc3.png"></p>
40
+
41
+ ### PR recommendations
42
+
43
+ To allow your work to be integrated as seamlessly as possible, we advise you to:
44
+
45
+ - ✅ Verify your PR is **up-to-date** with `ultralytics/yolov5` `master` branch. If your PR is behind you can update your code by clicking the 'Update branch' button or by running `git pull` and `git merge master` locally.
46
+
47
+ <p align="center"><img width="751" alt="Screenshot 2022-08-29 at 22 47 15" src="https://user-images.githubusercontent.com/26833433/187295893-50ed9f44-b2c9-4138-a614-de69bd1753d7.png"></p>
48
+
49
+ - ✅ Verify all YOLOv5 Continuous Integration (CI) **checks are passing**.
50
+
51
+ <p align="center"><img width="751" alt="Screenshot 2022-08-29 at 22 47 03" src="https://user-images.githubusercontent.com/26833433/187296922-545c5498-f64a-4d8c-8300-5fa764360da6.png"></p>
52
+
53
+ - ✅ Reduce changes to the absolute **minimum** required for your bug fix or feature addition. _"It is not daily increase but daily decrease, hack away the unessential. The closer to the source, the less wastage there is."_ — Bruce Lee
54
+
55
+ ## Submitting a Bug Report 🐛
56
+
57
+ If you spot a problem with YOLOv5 please submit a Bug Report!
58
+
59
+ For us to start investigating a possible problem we need to be able to reproduce it ourselves first. We've created a few short guidelines below to help users provide what we need to get started.
60
+
61
+ When asking a question, people will be better able to provide help if you provide **code** that they can easily understand and use to **reproduce** the problem. This is referred to by community members as creating a [minimum reproducible example](https://docs.ultralytics.com/help/minimum_reproducible_example/). Your code that reproduces the problem should be:
62
+
63
+ - ✅ **Minimal** – Use as little code as possible that still produces the same problem
64
+ - ✅ **Complete** – Provide **all** parts someone else needs to reproduce your problem in the question itself
65
+ - ✅ **Reproducible** – Test the code you're about to provide to make sure it reproduces the problem
66
+
67
+ In addition to the above requirements, for [Ultralytics](https://www.ultralytics.com/) to provide assistance your code should be:
68
+
69
+ - ✅ **Current** – Verify that your code is up-to-date with the current GitHub [master](https://github.com/ultralytics/yolov5/tree/master), and if necessary `git pull` or `git clone` a new copy to ensure your problem has not already been resolved by previous commits.
70
+ - ✅ **Unmodified** – Your problem must be reproducible without any modifications to the codebase in this repository. [Ultralytics](https://www.ultralytics.com/) does not provide support for custom code ⚠️.
71
+
72
+ If you believe your problem meets all of the above criteria, please close this issue and raise a new one using the 🐛 **Bug Report** [template](https://github.com/ultralytics/yolov5/issues/new/choose) and provide a [minimum reproducible example](https://docs.ultralytics.com/help/minimum_reproducible_example/) to help us better understand and diagnose your problem.
73
+
74
+ ## License
75
+
76
+ By contributing, you agree that your contributions will be licensed under the [AGPL-3.0 license](https://choosealicense.com/licenses/agpl-3.0/)
yolov5/LICENSE ADDED
@@ -0,0 +1,661 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU AFFERO GENERAL PUBLIC LICENSE
2
+ Version 3, 19 November 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU Affero General Public License is a free, copyleft license for
11
+ software and other kinds of works, specifically designed to ensure
12
+ cooperation with the community in the case of network server software.
13
+
14
+ The licenses for most software and other practical works are designed
15
+ to take away your freedom to share and change the works. By contrast,
16
+ our General Public Licenses are intended to guarantee your freedom to
17
+ share and change all versions of a program--to make sure it remains free
18
+ software for all its users.
19
+
20
+ When we speak of free software, we are referring to freedom, not
21
+ price. Our General Public Licenses are designed to make sure that you
22
+ have the freedom to distribute copies of free software (and charge for
23
+ them if you wish), that you receive source code or can get it if you
24
+ want it, that you can change the software or use pieces of it in new
25
+ free programs, and that you know you can do these things.
26
+
27
+ Developers that use our General Public Licenses protect your rights
28
+ with two steps: (1) assert copyright on the software, and (2) offer
29
+ you this License which gives you legal permission to copy, distribute
30
+ and/or modify the software.
31
+
32
+ A secondary benefit of defending all users' freedom is that
33
+ improvements made in alternate versions of the program, if they
34
+ receive widespread use, become available for other developers to
35
+ incorporate. Many developers of free software are heartened and
36
+ encouraged by the resulting cooperation. However, in the case of
37
+ software used on network servers, this result may fail to come about.
38
+ The GNU General Public License permits making a modified version and
39
+ letting the public access it on a server without ever releasing its
40
+ source code to the public.
41
+
42
+ The GNU Affero General Public License is designed specifically to
43
+ ensure that, in such cases, the modified source code becomes available
44
+ to the community. It requires the operator of a network server to
45
+ provide the source code of the modified version running there to the
46
+ users of that server. Therefore, public use of a modified version, on
47
+ a publicly accessible server, gives the public access to the source
48
+ code of the modified version.
49
+
50
+ An older license, called the Affero General Public License and
51
+ published by Affero, was designed to accomplish similar goals. This is
52
+ a different license, not a version of the Affero GPL, but Affero has
53
+ released a new version of the Affero GPL which permits relicensing under
54
+ this license.
55
+
56
+ The precise terms and conditions for copying, distribution and
57
+ modification follow.
58
+
59
+ TERMS AND CONDITIONS
60
+
61
+ 0. Definitions.
62
+
63
+ "This License" refers to version 3 of the GNU Affero General Public License.
64
+
65
+ "Copyright" also means copyright-like laws that apply to other kinds of
66
+ works, such as semiconductor masks.
67
+
68
+ "The Program" refers to any copyrightable work licensed under this
69
+ License. Each licensee is addressed as "you". "Licensees" and
70
+ "recipients" may be individuals or organizations.
71
+
72
+ To "modify" a work means to copy from or adapt all or part of the work
73
+ in a fashion requiring copyright permission, other than the making of an
74
+ exact copy. The resulting work is called a "modified version" of the
75
+ earlier work or a work "based on" the earlier work.
76
+
77
+ A "covered work" means either the unmodified Program or a work based
78
+ on the Program.
79
+
80
+ To "propagate" a work means to do anything with it that, without
81
+ permission, would make you directly or secondarily liable for
82
+ infringement under applicable copyright law, except executing it on a
83
+ computer or modifying a private copy. Propagation includes copying,
84
+ distribution (with or without modification), making available to the
85
+ public, and in some countries other activities as well.
86
+
87
+ To "convey" a work means any kind of propagation that enables other
88
+ parties to make or receive copies. Mere interaction with a user through
89
+ a computer network, with no transfer of a copy, is not conveying.
90
+
91
+ An interactive user interface displays "Appropriate Legal Notices"
92
+ to the extent that it includes a convenient and prominently visible
93
+ feature that (1) displays an appropriate copyright notice, and (2)
94
+ tells the user that there is no warranty for the work (except to the
95
+ extent that warranties are provided), that licensees may convey the
96
+ work under this License, and how to view a copy of this License. If
97
+ the interface presents a list of user commands or options, such as a
98
+ menu, a prominent item in the list meets this criterion.
99
+
100
+ 1. Source Code.
101
+
102
+ The "source code" for a work means the preferred form of the work
103
+ for making modifications to it. "Object code" means any non-source
104
+ form of a work.
105
+
106
+ A "Standard Interface" means an interface that either is an official
107
+ standard defined by a recognized standards body, or, in the case of
108
+ interfaces specified for a particular programming language, one that
109
+ is widely used among developers working in that language.
110
+
111
+ The "System Libraries" of an executable work include anything, other
112
+ than the work as a whole, that (a) is included in the normal form of
113
+ packaging a Major Component, but which is not part of that Major
114
+ Component, and (b) serves only to enable use of the work with that
115
+ Major Component, or to implement a Standard Interface for which an
116
+ implementation is available to the public in source code form. A
117
+ "Major Component", in this context, means a major essential component
118
+ (kernel, window system, and so on) of the specific operating system
119
+ (if any) on which the executable work runs, or a compiler used to
120
+ produce the work, or an object code interpreter used to run it.
121
+
122
+ The "Corresponding Source" for a work in object code form means all
123
+ the source code needed to generate, install, and (for an executable
124
+ work) run the object code and to modify the work, including scripts to
125
+ control those activities. However, it does not include the work's
126
+ System Libraries, or general-purpose tools or generally available free
127
+ programs which are used unmodified in performing those activities but
128
+ which are not part of the work. For example, Corresponding Source
129
+ includes interface definition files associated with source files for
130
+ the work, and the source code for shared libraries and dynamically
131
+ linked subprograms that the work is specifically designed to require,
132
+ such as by intimate data communication or control flow between those
133
+ subprograms and other parts of the work.
134
+
135
+ The Corresponding Source need not include anything that users
136
+ can regenerate automatically from other parts of the Corresponding
137
+ Source.
138
+
139
+ The Corresponding Source for a work in source code form is that
140
+ same work.
141
+
142
+ 2. Basic Permissions.
143
+
144
+ All rights granted under this License are granted for the term of
145
+ copyright on the Program, and are irrevocable provided the stated
146
+ conditions are met. This License explicitly affirms your unlimited
147
+ permission to run the unmodified Program. The output from running a
148
+ covered work is covered by this License only if the output, given its
149
+ content, constitutes a covered work. This License acknowledges your
150
+ rights of fair use or other equivalent, as provided by copyright law.
151
+
152
+ You may make, run and propagate covered works that you do not
153
+ convey, without conditions so long as your license otherwise remains
154
+ in force. You may convey covered works to others for the sole purpose
155
+ of having them make modifications exclusively for you, or provide you
156
+ with facilities for running those works, provided that you comply with
157
+ the terms of this License in conveying all material for which you do
158
+ not control copyright. Those thus making or running the covered works
159
+ for you must do so exclusively on your behalf, under your direction
160
+ and control, on terms that prohibit them from making any copies of
161
+ your copyrighted material outside their relationship with you.
162
+
163
+ Conveying under any other circumstances is permitted solely under
164
+ the conditions stated below. Sublicensing is not allowed; section 10
165
+ makes it unnecessary.
166
+
167
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
168
+
169
+ No covered work shall be deemed part of an effective technological
170
+ measure under any applicable law fulfilling obligations under article
171
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
172
+ similar laws prohibiting or restricting circumvention of such
173
+ measures.
174
+
175
+ When you convey a covered work, you waive any legal power to forbid
176
+ circumvention of technological measures to the extent such circumvention
177
+ is effected by exercising rights under this License with respect to
178
+ the covered work, and you disclaim any intention to limit operation or
179
+ modification of the work as a means of enforcing, against the work's
180
+ users, your or third parties' legal rights to forbid circumvention of
181
+ technological measures.
182
+
183
+ 4. Conveying Verbatim Copies.
184
+
185
+ You may convey verbatim copies of the Program's source code as you
186
+ receive it, in any medium, provided that you conspicuously and
187
+ appropriately publish on each copy an appropriate copyright notice;
188
+ keep intact all notices stating that this License and any
189
+ non-permissive terms added in accord with section 7 apply to the code;
190
+ keep intact all notices of the absence of any warranty; and give all
191
+ recipients a copy of this License along with the Program.
192
+
193
+ You may charge any price or no price for each copy that you convey,
194
+ and you may offer support or warranty protection for a fee.
195
+
196
+ 5. Conveying Modified Source Versions.
197
+
198
+ You may convey a work based on the Program, or the modifications to
199
+ produce it from the Program, in the form of source code under the
200
+ terms of section 4, provided that you also meet all of these conditions:
201
+
202
+ a) The work must carry prominent notices stating that you modified
203
+ it, and giving a relevant date.
204
+
205
+ b) The work must carry prominent notices stating that it is
206
+ released under this License and any conditions added under section
207
+ 7. This requirement modifies the requirement in section 4 to
208
+ "keep intact all notices".
209
+
210
+ c) You must license the entire work, as a whole, under this
211
+ License to anyone who comes into possession of a copy. This
212
+ License will therefore apply, along with any applicable section 7
213
+ additional terms, to the whole of the work, and all its parts,
214
+ regardless of how they are packaged. This License gives no
215
+ permission to license the work in any other way, but it does not
216
+ invalidate such permission if you have separately received it.
217
+
218
+ d) If the work has interactive user interfaces, each must display
219
+ Appropriate Legal Notices; however, if the Program has interactive
220
+ interfaces that do not display Appropriate Legal Notices, your
221
+ work need not make them do so.
222
+
223
+ A compilation of a covered work with other separate and independent
224
+ works, which are not by their nature extensions of the covered work,
225
+ and which are not combined with it such as to form a larger program,
226
+ in or on a volume of a storage or distribution medium, is called an
227
+ "aggregate" if the compilation and its resulting copyright are not
228
+ used to limit the access or legal rights of the compilation's users
229
+ beyond what the individual works permit. Inclusion of a covered work
230
+ in an aggregate does not cause this License to apply to the other
231
+ parts of the aggregate.
232
+
233
+ 6. Conveying Non-Source Forms.
234
+
235
+ You may convey a covered work in object code form under the terms
236
+ of sections 4 and 5, provided that you also convey the
237
+ machine-readable Corresponding Source under the terms of this License,
238
+ in one of these ways:
239
+
240
+ a) Convey the object code in, or embodied in, a physical product
241
+ (including a physical distribution medium), accompanied by the
242
+ Corresponding Source fixed on a durable physical medium
243
+ customarily used for software interchange.
244
+
245
+ b) Convey the object code in, or embodied in, a physical product
246
+ (including a physical distribution medium), accompanied by a
247
+ written offer, valid for at least three years and valid for as
248
+ long as you offer spare parts or customer support for that product
249
+ model, to give anyone who possesses the object code either (1) a
250
+ copy of the Corresponding Source for all the software in the
251
+ product that is covered by this License, on a durable physical
252
+ medium customarily used for software interchange, for a price no
253
+ more than your reasonable cost of physically performing this
254
+ conveying of source, or (2) access to copy the
255
+ Corresponding Source from a network server at no charge.
256
+
257
+ c) Convey individual copies of the object code with a copy of the
258
+ written offer to provide the Corresponding Source. This
259
+ alternative is allowed only occasionally and noncommercially, and
260
+ only if you received the object code with such an offer, in accord
261
+ with subsection 6b.
262
+
263
+ d) Convey the object code by offering access from a designated
264
+ place (gratis or for a charge), and offer equivalent access to the
265
+ Corresponding Source in the same way through the same place at no
266
+ further charge. You need not require recipients to copy the
267
+ Corresponding Source along with the object code. If the place to
268
+ copy the object code is a network server, the Corresponding Source
269
+ may be on a different server (operated by you or a third party)
270
+ that supports equivalent copying facilities, provided you maintain
271
+ clear directions next to the object code saying where to find the
272
+ Corresponding Source. Regardless of what server hosts the
273
+ Corresponding Source, you remain obligated to ensure that it is
274
+ available for as long as needed to satisfy these requirements.
275
+
276
+ e) Convey the object code using peer-to-peer transmission, provided
277
+ you inform other peers where the object code and Corresponding
278
+ Source of the work are being offered to the general public at no
279
+ charge under subsection 6d.
280
+
281
+ A separable portion of the object code, whose source code is excluded
282
+ from the Corresponding Source as a System Library, need not be
283
+ included in conveying the object code work.
284
+
285
+ A "User Product" is either (1) a "consumer product", which means any
286
+ tangible personal property which is normally used for personal, family,
287
+ or household purposes, or (2) anything designed or sold for incorporation
288
+ into a dwelling. In determining whether a product is a consumer product,
289
+ doubtful cases shall be resolved in favor of coverage. For a particular
290
+ product received by a particular user, "normally used" refers to a
291
+ typical or common use of that class of product, regardless of the status
292
+ of the particular user or of the way in which the particular user
293
+ actually uses, or expects or is expected to use, the product. A product
294
+ is a consumer product regardless of whether the product has substantial
295
+ commercial, industrial or non-consumer uses, unless such uses represent
296
+ the only significant mode of use of the product.
297
+
298
+ "Installation Information" for a User Product means any methods,
299
+ procedures, authorization keys, or other information required to install
300
+ and execute modified versions of a covered work in that User Product from
301
+ a modified version of its Corresponding Source. The information must
302
+ suffice to ensure that the continued functioning of the modified object
303
+ code is in no case prevented or interfered with solely because
304
+ modification has been made.
305
+
306
+ If you convey an object code work under this section in, or with, or
307
+ specifically for use in, a User Product, and the conveying occurs as
308
+ part of a transaction in which the right of possession and use of the
309
+ User Product is transferred to the recipient in perpetuity or for a
310
+ fixed term (regardless of how the transaction is characterized), the
311
+ Corresponding Source conveyed under this section must be accompanied
312
+ by the Installation Information. But this requirement does not apply
313
+ if neither you nor any third party retains the ability to install
314
+ modified object code on the User Product (for example, the work has
315
+ been installed in ROM).
316
+
317
+ The requirement to provide Installation Information does not include a
318
+ requirement to continue to provide support service, warranty, or updates
319
+ for a work that has been modified or installed by the recipient, or for
320
+ the User Product in which it has been modified or installed. Access to a
321
+ network may be denied when the modification itself materially and
322
+ adversely affects the operation of the network or violates the rules and
323
+ protocols for communication across the network.
324
+
325
+ Corresponding Source conveyed, and Installation Information provided,
326
+ in accord with this section must be in a format that is publicly
327
+ documented (and with an implementation available to the public in
328
+ source code form), and must require no special password or key for
329
+ unpacking, reading or copying.
330
+
331
+ 7. Additional Terms.
332
+
333
+ "Additional permissions" are terms that supplement the terms of this
334
+ License by making exceptions from one or more of its conditions.
335
+ Additional permissions that are applicable to the entire Program shall
336
+ be treated as though they were included in this License, to the extent
337
+ that they are valid under applicable law. If additional permissions
338
+ apply only to part of the Program, that part may be used separately
339
+ under those permissions, but the entire Program remains governed by
340
+ this License without regard to the additional permissions.
341
+
342
+ When you convey a copy of a covered work, you may at your option
343
+ remove any additional permissions from that copy, or from any part of
344
+ it. (Additional permissions may be written to require their own
345
+ removal in certain cases when you modify the work.) You may place
346
+ additional permissions on material, added by you to a covered work,
347
+ for which you have or can give appropriate copyright permission.
348
+
349
+ Notwithstanding any other provision of this License, for material you
350
+ add to a covered work, you may (if authorized by the copyright holders of
351
+ that material) supplement the terms of this License with terms:
352
+
353
+ a) Disclaiming warranty or limiting liability differently from the
354
+ terms of sections 15 and 16 of this License; or
355
+
356
+ b) Requiring preservation of specified reasonable legal notices or
357
+ author attributions in that material or in the Appropriate Legal
358
+ Notices displayed by works containing it; or
359
+
360
+ c) Prohibiting misrepresentation of the origin of that material, or
361
+ requiring that modified versions of such material be marked in
362
+ reasonable ways as different from the original version; or
363
+
364
+ d) Limiting the use for publicity purposes of names of licensors or
365
+ authors of the material; or
366
+
367
+ e) Declining to grant rights under trademark law for use of some
368
+ trade names, trademarks, or service marks; or
369
+
370
+ f) Requiring indemnification of licensors and authors of that
371
+ material by anyone who conveys the material (or modified versions of
372
+ it) with contractual assumptions of liability to the recipient, for
373
+ any liability that these contractual assumptions directly impose on
374
+ those licensors and authors.
375
+
376
+ All other non-permissive additional terms are considered "further
377
+ restrictions" within the meaning of section 10. If the Program as you
378
+ received it, or any part of it, contains a notice stating that it is
379
+ governed by this License along with a term that is a further
380
+ restriction, you may remove that term. If a license document contains
381
+ a further restriction but permits relicensing or conveying under this
382
+ License, you may add to a covered work material governed by the terms
383
+ of that license document, provided that the further restriction does
384
+ not survive such relicensing or conveying.
385
+
386
+ If you add terms to a covered work in accord with this section, you
387
+ must place, in the relevant source files, a statement of the
388
+ additional terms that apply to those files, or a notice indicating
389
+ where to find the applicable terms.
390
+
391
+ Additional terms, permissive or non-permissive, may be stated in the
392
+ form of a separately written license, or stated as exceptions;
393
+ the above requirements apply either way.
394
+
395
+ 8. Termination.
396
+
397
+ You may not propagate or modify a covered work except as expressly
398
+ provided under this License. Any attempt otherwise to propagate or
399
+ modify it is void, and will automatically terminate your rights under
400
+ this License (including any patent licenses granted under the third
401
+ paragraph of section 11).
402
+
403
+ However, if you cease all violation of this License, then your
404
+ license from a particular copyright holder is reinstated (a)
405
+ provisionally, unless and until the copyright holder explicitly and
406
+ finally terminates your license, and (b) permanently, if the copyright
407
+ holder fails to notify you of the violation by some reasonable means
408
+ prior to 60 days after the cessation.
409
+
410
+ Moreover, your license from a particular copyright holder is
411
+ reinstated permanently if the copyright holder notifies you of the
412
+ violation by some reasonable means, this is the first time you have
413
+ received notice of violation of this License (for any work) from that
414
+ copyright holder, and you cure the violation prior to 30 days after
415
+ your receipt of the notice.
416
+
417
+ Termination of your rights under this section does not terminate the
418
+ licenses of parties who have received copies or rights from you under
419
+ this License. If your rights have been terminated and not permanently
420
+ reinstated, you do not qualify to receive new licenses for the same
421
+ material under section 10.
422
+
423
+ 9. Acceptance Not Required for Having Copies.
424
+
425
+ You are not required to accept this License in order to receive or
426
+ run a copy of the Program. Ancillary propagation of a covered work
427
+ occurring solely as a consequence of using peer-to-peer transmission
428
+ to receive a copy likewise does not require acceptance. However,
429
+ nothing other than this License grants you permission to propagate or
430
+ modify any covered work. These actions infringe copyright if you do
431
+ not accept this License. Therefore, by modifying or propagating a
432
+ covered work, you indicate your acceptance of this License to do so.
433
+
434
+ 10. Automatic Licensing of Downstream Recipients.
435
+
436
+ Each time you convey a covered work, the recipient automatically
437
+ receives a license from the original licensors, to run, modify and
438
+ propagate that work, subject to this License. You are not responsible
439
+ for enforcing compliance by third parties with this License.
440
+
441
+ An "entity transaction" is a transaction transferring control of an
442
+ organization, or substantially all assets of one, or subdividing an
443
+ organization, or merging organizations. If propagation of a covered
444
+ work results from an entity transaction, each party to that
445
+ transaction who receives a copy of the work also receives whatever
446
+ licenses to the work the party's predecessor in interest had or could
447
+ give under the previous paragraph, plus a right to possession of the
448
+ Corresponding Source of the work from the predecessor in interest, if
449
+ the predecessor has it or can get it with reasonable efforts.
450
+
451
+ You may not impose any further restrictions on the exercise of the
452
+ rights granted or affirmed under this License. For example, you may
453
+ not impose a license fee, royalty, or other charge for exercise of
454
+ rights granted under this License, and you may not initiate litigation
455
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
456
+ any patent claim is infringed by making, using, selling, offering for
457
+ sale, or importing the Program or any portion of it.
458
+
459
+ 11. Patents.
460
+
461
+ A "contributor" is a copyright holder who authorizes use under this
462
+ License of the Program or a work on which the Program is based. The
463
+ work thus licensed is called the contributor's "contributor version".
464
+
465
+ A contributor's "essential patent claims" are all patent claims
466
+ owned or controlled by the contributor, whether already acquired or
467
+ hereafter acquired, that would be infringed by some manner, permitted
468
+ by this License, of making, using, or selling its contributor version,
469
+ but do not include claims that would be infringed only as a
470
+ consequence of further modification of the contributor version. For
471
+ purposes of this definition, "control" includes the right to grant
472
+ patent sublicenses in a manner consistent with the requirements of
473
+ this License.
474
+
475
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
476
+ patent license under the contributor's essential patent claims, to
477
+ make, use, sell, offer for sale, import and otherwise run, modify and
478
+ propagate the contents of its contributor version.
479
+
480
+ In the following three paragraphs, a "patent license" is any express
481
+ agreement or commitment, however denominated, not to enforce a patent
482
+ (such as an express permission to practice a patent or covenant not to
483
+ sue for patent infringement). To "grant" such a patent license to a
484
+ party means to make such an agreement or commitment not to enforce a
485
+ patent against the party.
486
+
487
+ If you convey a covered work, knowingly relying on a patent license,
488
+ and the Corresponding Source of the work is not available for anyone
489
+ to copy, free of charge and under the terms of this License, through a
490
+ publicly available network server or other readily accessible means,
491
+ then you must either (1) cause the Corresponding Source to be so
492
+ available, or (2) arrange to deprive yourself of the benefit of the
493
+ patent license for this particular work, or (3) arrange, in a manner
494
+ consistent with the requirements of this License, to extend the patent
495
+ license to downstream recipients. "Knowingly relying" means you have
496
+ actual knowledge that, but for the patent license, your conveying the
497
+ covered work in a country, or your recipient's use of the covered work
498
+ in a country, would infringe one or more identifiable patents in that
499
+ country that you have reason to believe are valid.
500
+
501
+ If, pursuant to or in connection with a single transaction or
502
+ arrangement, you convey, or propagate by procuring conveyance of, a
503
+ covered work, and grant a patent license to some of the parties
504
+ receiving the covered work authorizing them to use, propagate, modify
505
+ or convey a specific copy of the covered work, then the patent license
506
+ you grant is automatically extended to all recipients of the covered
507
+ work and works based on it.
508
+
509
+ A patent license is "discriminatory" if it does not include within
510
+ the scope of its coverage, prohibits the exercise of, or is
511
+ conditioned on the non-exercise of one or more of the rights that are
512
+ specifically granted under this License. You may not convey a covered
513
+ work if you are a party to an arrangement with a third party that is
514
+ in the business of distributing software, under which you make payment
515
+ to the third party based on the extent of your activity of conveying
516
+ the work, and under which the third party grants, to any of the
517
+ parties who would receive the covered work from you, a discriminatory
518
+ patent license (a) in connection with copies of the covered work
519
+ conveyed by you (or copies made from those copies), or (b) primarily
520
+ for and in connection with specific products or compilations that
521
+ contain the covered work, unless you entered into that arrangement,
522
+ or that patent license was granted, prior to 28 March 2007.
523
+
524
+ Nothing in this License shall be construed as excluding or limiting
525
+ any implied license or other defenses to infringement that may
526
+ otherwise be available to you under applicable patent law.
527
+
528
+ 12. No Surrender of Others' Freedom.
529
+
530
+ If conditions are imposed on you (whether by court order, agreement or
531
+ otherwise) that contradict the conditions of this License, they do not
532
+ excuse you from the conditions of this License. If you cannot convey a
533
+ covered work so as to satisfy simultaneously your obligations under this
534
+ License and any other pertinent obligations, then as a consequence you may
535
+ not convey it at all. For example, if you agree to terms that obligate you
536
+ to collect a royalty for further conveying from those to whom you convey
537
+ the Program, the only way you could satisfy both those terms and this
538
+ License would be to refrain entirely from conveying the Program.
539
+
540
+ 13. Remote Network Interaction; Use with the GNU General Public License.
541
+
542
+ Notwithstanding any other provision of this License, if you modify the
543
+ Program, your modified version must prominently offer all users
544
+ interacting with it remotely through a computer network (if your version
545
+ supports such interaction) an opportunity to receive the Corresponding
546
+ Source of your version by providing access to the Corresponding Source
547
+ from a network server at no charge, through some standard or customary
548
+ means of facilitating copying of software. This Corresponding Source
549
+ shall include the Corresponding Source for any work covered by version 3
550
+ of the GNU General Public License that is incorporated pursuant to the
551
+ following paragraph.
552
+
553
+ Notwithstanding any other provision of this License, you have
554
+ permission to link or combine any covered work with a work licensed
555
+ under version 3 of the GNU General Public License into a single
556
+ combined work, and to convey the resulting work. The terms of this
557
+ License will continue to apply to the part which is the covered work,
558
+ but the work with which it is combined will remain governed by version
559
+ 3 of the GNU General Public License.
560
+
561
+ 14. Revised Versions of this License.
562
+
563
+ The Free Software Foundation may publish revised and/or new versions of
564
+ the GNU Affero General Public License from time to time. Such new versions
565
+ will be similar in spirit to the present version, but may differ in detail to
566
+ address new problems or concerns.
567
+
568
+ Each version is given a distinguishing version number. If the
569
+ Program specifies that a certain numbered version of the GNU Affero General
570
+ Public License "or any later version" applies to it, you have the
571
+ option of following the terms and conditions either of that numbered
572
+ version or of any later version published by the Free Software
573
+ Foundation. If the Program does not specify a version number of the
574
+ GNU Affero General Public License, you may choose any version ever published
575
+ by the Free Software Foundation.
576
+
577
+ If the Program specifies that a proxy can decide which future
578
+ versions of the GNU Affero General Public License can be used, that proxy's
579
+ public statement of acceptance of a version permanently authorizes you
580
+ to choose that version for the Program.
581
+
582
+ Later license versions may give you additional or different
583
+ permissions. However, no additional obligations are imposed on any
584
+ author or copyright holder as a result of your choosing to follow a
585
+ later version.
586
+
587
+ 15. Disclaimer of Warranty.
588
+
589
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
590
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
591
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
592
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
593
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
594
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
595
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
596
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
597
+
598
+ 16. Limitation of Liability.
599
+
600
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
601
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
602
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
603
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
604
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
605
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
606
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
607
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
608
+ SUCH DAMAGES.
609
+
610
+ 17. Interpretation of Sections 15 and 16.
611
+
612
+ If the disclaimer of warranty and limitation of liability provided
613
+ above cannot be given local legal effect according to their terms,
614
+ reviewing courts shall apply local law that most closely approximates
615
+ an absolute waiver of all civil liability in connection with the
616
+ Program, unless a warranty or assumption of liability accompanies a
617
+ copy of the Program in return for a fee.
618
+
619
+ END OF TERMS AND CONDITIONS
620
+
621
+ How to Apply These Terms to Your New Programs
622
+
623
+ If you develop a new program, and you want it to be of the greatest
624
+ possible use to the public, the best way to achieve this is to make it
625
+ free software which everyone can redistribute and change under these terms.
626
+
627
+ To do so, attach the following notices to the program. It is safest
628
+ to attach them to the start of each source file to most effectively
629
+ state the exclusion of warranty; and each file should have at least
630
+ the "copyright" line and a pointer to where the full notice is found.
631
+
632
+ <one line to give the program's name and a brief idea of what it does.>
633
+ Copyright (C) <year> <name of author>
634
+
635
+ This program is free software: you can redistribute it and/or modify
636
+ it under the terms of the GNU Affero General Public License as published by
637
+ the Free Software Foundation, either version 3 of the License, or
638
+ (at your option) any later version.
639
+
640
+ This program is distributed in the hope that it will be useful,
641
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
642
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
643
+ GNU Affero General Public License for more details.
644
+
645
+ You should have received a copy of the GNU Affero General Public License
646
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
647
+
648
+ Also add information on how to contact you by electronic and paper mail.
649
+
650
+ If your software can interact with users remotely through a computer
651
+ network, you should also make sure that it provides a way for users to
652
+ get its source. For example, if your program is a web application, its
653
+ interface could display a "Source" link that leads users to an archive
654
+ of the code. There are many ways you could offer source, and different
655
+ solutions will be better for different programs; see section 13 for the
656
+ specific requirements.
657
+
658
+ You should also get your employer (if you work as a programmer) or school,
659
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
660
+ For more information on this, and how to apply and follow the GNU AGPL, see
661
+ <https://www.gnu.org/licenses/>.
yolov5/README.md ADDED
@@ -0,0 +1,468 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div align="center">
2
+ <p>
3
+ <a href="https://ultralytics.com/events/yolovision" target="_blank">
4
+ <img width="100%" src="https://raw.githubusercontent.com/ultralytics/assets/main/yolov8/banner-yolov8.png"></a>
5
+ </p>
6
+
7
+ [中文](https://docs.ultralytics.com/zh) | [한국어](https://docs.ultralytics.com/ko) | [日本語](https://docs.ultralytics.com/ja) | [Русский](https://docs.ultralytics.com/ru) | [Deutsch](https://docs.ultralytics.com/de) | [Français](https://docs.ultralytics.com/fr) | [Español](https://docs.ultralytics.com/es) | [Português](https://docs.ultralytics.com/pt) | [Türkçe](https://docs.ultralytics.com/tr) | [Tiếng Việt](https://docs.ultralytics.com/vi) | [العربية](https://docs.ultralytics.com/ar)
8
+
9
+ <div>
10
+ <a href="https://github.com/ultralytics/yolov5/actions/workflows/ci-testing.yml"><img src="https://github.com/ultralytics/yolov5/actions/workflows/ci-testing.yml/badge.svg" alt="YOLOv5 CI"></a>
11
+ <a href="https://zenodo.org/badge/latestdoi/264818686"><img src="https://zenodo.org/badge/264818686.svg" alt="YOLOv5 Citation"></a>
12
+ <a href="https://hub.docker.com/r/ultralytics/yolov5"><img src="https://img.shields.io/docker/pulls/ultralytics/yolov5?logo=docker" alt="Docker Pulls"></a>
13
+ <a href="https://ultralytics.com/discord"><img alt="Discord" src="https://img.shields.io/discord/1089800235347353640?logo=discord&logoColor=white&label=Discord&color=blue"></a> <a href="https://community.ultralytics.com"><img alt="Ultralytics Forums" src="https://img.shields.io/discourse/users?server=https%3A%2F%2Fcommunity.ultralytics.com&logo=discourse&label=Forums&color=blue"></a> <a href="https://reddit.com/r/ultralytics"><img alt="Ultralytics Reddit" src="https://img.shields.io/reddit/subreddit-subscribers/ultralytics?style=flat&logo=reddit&logoColor=white&label=Reddit&color=blue"></a>
14
+ <br>
15
+ <a href="https://bit.ly/yolov5-paperspace-notebook"><img src="https://assets.paperspace.io/img/gradient-badge.svg" alt="Run on Gradient"></a>
16
+ <a href="https://colab.research.google.com/github/ultralytics/yolov5/blob/master/tutorial.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"></a>
17
+ <a href="https://www.kaggle.com/ultralytics/yolov5"><img src="https://kaggle.com/static/images/open-in-kaggle.svg" alt="Open In Kaggle"></a>
18
+ </div>
19
+ <br>
20
+
21
+ YOLOv5 🚀 is the world's most loved vision AI, representing <a href="https://ultralytics.com">Ultralytics</a> open-source research into future vision AI methods, incorporating lessons learned and best practices evolved over thousands of hours of research and development.
22
+
23
+ We hope that the resources here will help you get the most out of YOLOv5. Please browse the YOLOv5 <a href="https://docs.ultralytics.com/yolov5">Docs</a> for details, raise an issue on <a href="https://github.com/ultralytics/yolov5/issues/new/choose">GitHub</a> for support, and join our <a href="https://ultralytics.com/discord">Discord</a> community for questions and discussions!
24
+
25
+ To request an Enterprise License please complete the form at [Ultralytics Licensing](https://www.ultralytics.com/license).
26
+
27
+ <div align="center">
28
+ <a href="https://github.com/ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-github.png" width="2%" alt="Ultralytics GitHub"></a>
29
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="2%">
30
+ <a href="https://www.linkedin.com/company/ultralytics/"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-linkedin.png" width="2%" alt="Ultralytics LinkedIn"></a>
31
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="2%">
32
+ <a href="https://twitter.com/ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-twitter.png" width="2%" alt="Ultralytics Twitter"></a>
33
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="2%">
34
+ <a href="https://youtube.com/ultralytics?sub_confirmation=1"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-youtube.png" width="2%" alt="Ultralytics YouTube"></a>
35
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="2%">
36
+ <a href="https://www.tiktok.com/@ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-tiktok.png" width="2%" alt="Ultralytics TikTok"></a>
37
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="2%">
38
+ <a href="https://ultralytics.com/bilibili"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-bilibili.png" width="2%" alt="Ultralytics BiliBili"></a>
39
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="2%">
40
+ <a href="https://ultralytics.com/discord"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-discord.png" width="2%" alt="Ultralytics Discord"></a>
41
+ </div>
42
+
43
+ </div>
44
+ <br>
45
+
46
+ ## <div align="center">YOLOv8 🚀 NEW</div>
47
+
48
+ We are thrilled to announce the launch of Ultralytics YOLOv8 🚀, our NEW cutting-edge, state-of-the-art (SOTA) model released at **[https://github.com/ultralytics/ultralytics](https://github.com/ultralytics/ultralytics)**. YOLOv8 is designed to be fast, accurate, and easy to use, making it an excellent choice for a wide range of object detection, image segmentation and image classification tasks.
49
+
50
+ See the [YOLOv8 Docs](https://docs.ultralytics.com) for details and get started with:
51
+
52
+ [![PyPI version](https://badge.fury.io/py/ultralytics.svg)](https://badge.fury.io/py/ultralytics) [![Downloads](https://static.pepy.tech/badge/ultralytics)](https://pepy.tech/project/ultralytics)
53
+
54
+ ```bash
55
+ pip install ultralytics
56
+ ```
57
+
58
+ <div align="center">
59
+ <a href="https://ultralytics.com/yolo" target="_blank">
60
+ <img width="100%" src="https://raw.githubusercontent.com/ultralytics/assets/main/yolov8/yolo-comparison-plots.png"></a>
61
+ </div>
62
+
63
+ ## <div align="center">Documentation</div>
64
+
65
+ See the [YOLOv5 Docs](https://docs.ultralytics.com/yolov5) for full documentation on training, testing and deployment. See below for quickstart examples.
66
+
67
+ <details open>
68
+ <summary>Install</summary>
69
+
70
+ Clone repo and install [requirements.txt](https://github.com/ultralytics/yolov5/blob/master/requirements.txt) in a [**Python>=3.8.0**](https://www.python.org/) environment, including [**PyTorch>=1.8**](https://pytorch.org/get-started/locally/).
71
+
72
+ ```bash
73
+ git clone https://github.com/ultralytics/yolov5 # clone
74
+ cd yolov5
75
+ pip install -r requirements.txt # install
76
+ ```
77
+
78
+ </details>
79
+
80
+ <details>
81
+ <summary>Inference</summary>
82
+
83
+ YOLOv5 [PyTorch Hub](https://docs.ultralytics.com/yolov5/tutorials/pytorch_hub_model_loading) inference. [Models](https://github.com/ultralytics/yolov5/tree/master/models) download automatically from the latest YOLOv5 [release](https://github.com/ultralytics/yolov5/releases).
84
+
85
+ ```python
86
+ import torch
87
+
88
+ # Model
89
+ model = torch.hub.load("ultralytics/yolov5", "yolov5s") # or yolov5n - yolov5x6, custom
90
+
91
+ # Images
92
+ img = "https://ultralytics.com/images/zidane.jpg" # or file, Path, PIL, OpenCV, numpy, list
93
+
94
+ # Inference
95
+ results = model(img)
96
+
97
+ # Results
98
+ results.print() # or .show(), .save(), .crop(), .pandas(), etc.
99
+ ```
100
+
101
+ </details>
102
+
103
+ <details>
104
+ <summary>Inference with detect.py</summary>
105
+
106
+ `detect.py` runs inference on a variety of sources, downloading [models](https://github.com/ultralytics/yolov5/tree/master/models) automatically from the latest YOLOv5 [release](https://github.com/ultralytics/yolov5/releases) and saving results to `runs/detect`.
107
+
108
+ ```bash
109
+ python detect.py --weights yolov5s.pt --source 0 # webcam
110
+ img.jpg # image
111
+ vid.mp4 # video
112
+ screen # screenshot
113
+ path/ # directory
114
+ list.txt # list of images
115
+ list.streams # list of streams
116
+ 'path/*.jpg' # glob
117
+ 'https://youtu.be/LNwODJXcvt4' # YouTube
118
+ 'rtsp://example.com/media.mp4' # RTSP, RTMP, HTTP stream
119
+ ```
120
+
121
+ </details>
122
+
123
+ <details>
124
+ <summary>Training</summary>
125
+
126
+ The commands below reproduce YOLOv5 [COCO](https://github.com/ultralytics/yolov5/blob/master/data/scripts/get_coco.sh) results. [Models](https://github.com/ultralytics/yolov5/tree/master/models) and [datasets](https://github.com/ultralytics/yolov5/tree/master/data) download automatically from the latest YOLOv5 [release](https://github.com/ultralytics/yolov5/releases). Training times for YOLOv5n/s/m/l/x are 1/2/4/6/8 days on a V100 GPU ([Multi-GPU](https://docs.ultralytics.com/yolov5/tutorials/multi_gpu_training) times faster). Use the largest `--batch-size` possible, or pass `--batch-size -1` for YOLOv5 [AutoBatch](https://github.com/ultralytics/yolov5/pull/5092). Batch sizes shown for V100-16GB.
127
+
128
+ ```bash
129
+ python train.py --data coco.yaml --epochs 300 --weights '' --cfg yolov5n.yaml --batch-size 128
130
+ yolov5s 64
131
+ yolov5m 40
132
+ yolov5l 24
133
+ yolov5x 16
134
+ ```
135
+
136
+ <img width="800" src="https://user-images.githubusercontent.com/26833433/90222759-949d8800-ddc1-11ea-9fa1-1c97eed2b963.png">
137
+
138
+ </details>
139
+
140
+ <details open>
141
+ <summary>Tutorials</summary>
142
+
143
+ - [Train Custom Data](https://docs.ultralytics.com/yolov5/tutorials/train_custom_data) 🚀 RECOMMENDED
144
+ - [Tips for Best Training Results](https://docs.ultralytics.com/guides/model-training-tips/) ☘️
145
+ - [Multi-GPU Training](https://docs.ultralytics.com/yolov5/tutorials/multi_gpu_training)
146
+ - [PyTorch Hub](https://docs.ultralytics.com/yolov5/tutorials/pytorch_hub_model_loading) 🌟 NEW
147
+ - [TFLite, ONNX, CoreML, TensorRT Export](https://docs.ultralytics.com/yolov5/tutorials/model_export) 🚀
148
+ - [NVIDIA Jetson platform Deployment](https://docs.ultralytics.com/yolov5/tutorials/running_on_jetson_nano) 🌟 NEW
149
+ - [Test-Time Augmentation (TTA)](https://docs.ultralytics.com/yolov5/tutorials/test_time_augmentation)
150
+ - [Model Ensembling](https://docs.ultralytics.com/yolov5/tutorials/model_ensembling)
151
+ - [Model Pruning/Sparsity](https://docs.ultralytics.com/yolov5/tutorials/model_pruning_and_sparsity)
152
+ - [Hyperparameter Evolution](https://docs.ultralytics.com/yolov5/tutorials/hyperparameter_evolution)
153
+ - [Transfer Learning with Frozen Layers](https://docs.ultralytics.com/yolov5/tutorials/transfer_learning_with_frozen_layers)
154
+ - [Architecture Summary](https://docs.ultralytics.com/yolov5/tutorials/architecture_description) 🌟 NEW
155
+ - [Roboflow for Datasets, Labeling, and Active Learning](https://docs.ultralytics.com/yolov5/tutorials/roboflow_datasets_integration)
156
+ - [ClearML Logging](https://docs.ultralytics.com/yolov5/tutorials/clearml_logging_integration) 🌟 NEW
157
+ - [YOLOv5 with Neural Magic's Deepsparse](https://docs.ultralytics.com/yolov5/tutorials/neural_magic_pruning_quantization) 🌟 NEW
158
+ - [Comet Logging](https://docs.ultralytics.com/yolov5/tutorials/comet_logging_integration) 🌟 NEW
159
+
160
+ </details>
161
+
162
+ ## <div align="center">Integrations</div>
163
+
164
+ <br>
165
+ <a align="center" href="https://ultralytics.com/hub" target="_blank">
166
+ <img width="100%" src="https://github.com/ultralytics/assets/raw/main/im/integrations-loop.png"></a>
167
+ <br>
168
+ <br>
169
+
170
+ <div align="center">
171
+ <a href="https://roboflow.com/?ref=ultralytics">
172
+ <img src="https://github.com/ultralytics/assets/raw/main/partners/logo-roboflow.png" width="10%" /></a>
173
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="15%" height="0" alt="" />
174
+ <a href="https://cutt.ly/yolov5-readme-clearml">
175
+ <img src="https://github.com/ultralytics/assets/raw/main/partners/logo-clearml.png" width="10%" /></a>
176
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="15%" height="0" alt="" />
177
+ <a href="https://bit.ly/yolov5-readme-comet2">
178
+ <img src="https://github.com/ultralytics/assets/raw/main/partners/logo-comet.png" width="10%" /></a>
179
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="15%" height="0" alt="" />
180
+ <a href="https://bit.ly/yolov5-neuralmagic">
181
+ <img src="https://github.com/ultralytics/assets/raw/main/partners/logo-neuralmagic.png" width="10%" /></a>
182
+ </div>
183
+
184
+ | Roboflow | ClearML ⭐ NEW | Comet ⭐ NEW | Neural Magic ⭐ NEW |
185
+ | :--------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------: |
186
+ | Label and export your custom datasets directly to YOLOv5 for training with [Roboflow](https://roboflow.com/?ref=ultralytics) | Automatically track, visualize and even remotely train YOLOv5 using [ClearML](https://clear.ml/) (open-source!) | Free forever, [Comet](https://bit.ly/yolov5-readme-comet2) lets you save YOLOv5 models, resume training, and interactively visualise and debug predictions | Run YOLOv5 inference up to 6x faster with [Neural Magic DeepSparse](https://bit.ly/yolov5-neuralmagic) |
187
+
188
+ ## <div align="center">Ultralytics HUB</div>
189
+
190
+ Experience seamless AI with [Ultralytics HUB](https://www.ultralytics.com/hub) ⭐, the all-in-one solution for data visualization, YOLOv5 and YOLOv8 🚀 model training and deployment, without any coding. Transform images into actionable insights and bring your AI visions to life with ease using our cutting-edge platform and user-friendly [Ultralytics App](https://www.ultralytics.com/app-install). Start your journey for **Free** now!
191
+
192
+ <a align="center" href="https://ultralytics.com/hub" target="_blank">
193
+ <img width="100%" src="https://github.com/ultralytics/assets/raw/main/im/ultralytics-hub.png"></a>
194
+
195
+ ## <div align="center">Why YOLOv5</div>
196
+
197
+ YOLOv5 has been designed to be super easy to get started and simple to learn. We prioritize real-world results.
198
+
199
+ <p align="left"><img width="800" src="https://user-images.githubusercontent.com/26833433/155040763-93c22a27-347c-4e3c-847a-8094621d3f4e.png"></p>
200
+ <details>
201
+ <summary>YOLOv5-P5 640 Figure</summary>
202
+
203
+ <p align="left"><img width="800" src="https://user-images.githubusercontent.com/26833433/155040757-ce0934a3-06a6-43dc-a979-2edbbd69ea0e.png"></p>
204
+ </details>
205
+ <details>
206
+ <summary>Figure Notes</summary>
207
+
208
+ - **COCO AP val** denotes mAP@0.5:0.95 metric measured on the 5000-image [COCO val2017](http://cocodataset.org) dataset over various inference sizes from 256 to 1536.
209
+ - **GPU Speed** measures average inference time per image on [COCO val2017](http://cocodataset.org) dataset using a [AWS p3.2xlarge](https://aws.amazon.com/ec2/instance-types/p3/) V100 instance at batch-size 32.
210
+ - **EfficientDet** data from [google/automl](https://github.com/google/automl) at batch size 8.
211
+ - **Reproduce** by `python val.py --task study --data coco.yaml --iou 0.7 --weights yolov5n6.pt yolov5s6.pt yolov5m6.pt yolov5l6.pt yolov5x6.pt`
212
+
213
+ </details>
214
+
215
+ ### Pretrained Checkpoints
216
+
217
+ | Model | size<br><sup>(pixels) | mAP<sup>val<br>50-95 | mAP<sup>val<br>50 | Speed<br><sup>CPU b1<br>(ms) | Speed<br><sup>V100 b1<br>(ms) | Speed<br><sup>V100 b32<br>(ms) | params<br><sup>(M) | FLOPs<br><sup>@640 (B) |
218
+ | ----------------------------------------------------------------------------------------------- | --------------------- | -------------------- | ----------------- | ---------------------------- | ----------------------------- | ------------------------------ | ------------------ | ---------------------- |
219
+ | [YOLOv5n](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5n.pt) | 640 | 28.0 | 45.7 | **45** | **6.3** | **0.6** | **1.9** | **4.5** |
220
+ | [YOLOv5s](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5s.pt) | 640 | 37.4 | 56.8 | 98 | 6.4 | 0.9 | 7.2 | 16.5 |
221
+ | [YOLOv5m](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5m.pt) | 640 | 45.4 | 64.1 | 224 | 8.2 | 1.7 | 21.2 | 49.0 |
222
+ | [YOLOv5l](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5l.pt) | 640 | 49.0 | 67.3 | 430 | 10.1 | 2.7 | 46.5 | 109.1 |
223
+ | [YOLOv5x](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5x.pt) | 640 | 50.7 | 68.9 | 766 | 12.1 | 4.8 | 86.7 | 205.7 |
224
+ | | | | | | | | | |
225
+ | [YOLOv5n6](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5n6.pt) | 1280 | 36.0 | 54.4 | 153 | 8.1 | 2.1 | 3.2 | 4.6 |
226
+ | [YOLOv5s6](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5s6.pt) | 1280 | 44.8 | 63.7 | 385 | 8.2 | 3.6 | 12.6 | 16.8 |
227
+ | [YOLOv5m6](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5m6.pt) | 1280 | 51.3 | 69.3 | 887 | 11.1 | 6.8 | 35.7 | 50.0 |
228
+ | [YOLOv5l6](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5l6.pt) | 1280 | 53.7 | 71.3 | 1784 | 15.8 | 10.5 | 76.8 | 111.4 |
229
+ | [YOLOv5x6](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5x6.pt)<br>+ [TTA] | 1280<br>1536 | 55.0<br>**55.8** | 72.7<br>**72.7** | 3136<br>- | 26.2<br>- | 19.4<br>- | 140.7<br>- | 209.8<br>- |
230
+
231
+ <details>
232
+ <summary>Table Notes</summary>
233
+
234
+ - All checkpoints are trained to 300 epochs with default settings. Nano and Small models use [hyp.scratch-low.yaml](https://github.com/ultralytics/yolov5/blob/master/data/hyps/hyp.scratch-low.yaml) hyps, all others use [hyp.scratch-high.yaml](https://github.com/ultralytics/yolov5/blob/master/data/hyps/hyp.scratch-high.yaml).
235
+ - **mAP<sup>val</sup>** values are for single-model single-scale on [COCO val2017](http://cocodataset.org) dataset.<br>Reproduce by `python val.py --data coco.yaml --img 640 --conf 0.001 --iou 0.65`
236
+ - **Speed** averaged over COCO val images using a [AWS p3.2xlarge](https://aws.amazon.com/ec2/instance-types/p3/) instance. NMS times (~1 ms/img) not included.<br>Reproduce by `python val.py --data coco.yaml --img 640 --task speed --batch 1`
237
+ - **TTA** [Test Time Augmentation](https://docs.ultralytics.com/yolov5/tutorials/test_time_augmentation) includes reflection and scale augmentations.<br>Reproduce by `python val.py --data coco.yaml --img 1536 --iou 0.7 --augment`
238
+
239
+ </details>
240
+
241
+ ## <div align="center">Segmentation</div>
242
+
243
+ Our new YOLOv5 [release v7.0](https://github.com/ultralytics/yolov5/releases/v7.0) instance segmentation models are the fastest and most accurate in the world, beating all current [SOTA benchmarks](https://paperswithcode.com/sota/real-time-instance-segmentation-on-mscoco). We've made them super simple to train, validate and deploy. See full details in our [Release Notes](https://github.com/ultralytics/yolov5/releases/v7.0) and visit our [YOLOv5 Segmentation Colab Notebook](https://github.com/ultralytics/yolov5/blob/master/segment/tutorial.ipynb) for quickstart tutorials.
244
+
245
+ <details>
246
+ <summary>Segmentation Checkpoints</summary>
247
+
248
+ <div align="center">
249
+ <a align="center" href="https://ultralytics.com/yolov5" target="_blank">
250
+ <img width="800" src="https://user-images.githubusercontent.com/61612323/204180385-84f3aca9-a5e9-43d8-a617-dda7ca12e54a.png"></a>
251
+ </div>
252
+
253
+ We trained YOLOv5 segmentations models on COCO for 300 epochs at image size 640 using A100 GPUs. We exported all models to ONNX FP32 for CPU speed tests and to TensorRT FP16 for GPU speed tests. We ran all speed tests on Google [Colab Pro](https://colab.research.google.com/signup) notebooks for easy reproducibility.
254
+
255
+ | Model | size<br><sup>(pixels) | mAP<sup>box<br>50-95 | mAP<sup>mask<br>50-95 | Train time<br><sup>300 epochs<br>A100 (hours) | Speed<br><sup>ONNX CPU<br>(ms) | Speed<br><sup>TRT A100<br>(ms) | params<br><sup>(M) | FLOPs<br><sup>@640 (B) |
256
+ | ------------------------------------------------------------------------------------------ | --------------------- | -------------------- | --------------------- | --------------------------------------------- | ------------------------------ | ------------------------------ | ------------------ | ---------------------- |
257
+ | [YOLOv5n-seg](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5n-seg.pt) | 640 | 27.6 | 23.4 | 80:17 | **62.7** | **1.2** | **2.0** | **7.1** |
258
+ | [YOLOv5s-seg](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5s-seg.pt) | 640 | 37.6 | 31.7 | 88:16 | 173.3 | 1.4 | 7.6 | 26.4 |
259
+ | [YOLOv5m-seg](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5m-seg.pt) | 640 | 45.0 | 37.1 | 108:36 | 427.0 | 2.2 | 22.0 | 70.8 |
260
+ | [YOLOv5l-seg](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5l-seg.pt) | 640 | 49.0 | 39.9 | 66:43 (2x) | 857.4 | 2.9 | 47.9 | 147.7 |
261
+ | [YOLOv5x-seg](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5x-seg.pt) | 640 | **50.7** | **41.4** | 62:56 (3x) | 1579.2 | 4.5 | 88.8 | 265.7 |
262
+
263
+ - All checkpoints are trained to 300 epochs with SGD optimizer with `lr0=0.01` and `weight_decay=5e-5` at image size 640 and all default settings.<br>Runs logged to https://wandb.ai/glenn-jocher/YOLOv5_v70_official
264
+ - **Accuracy** values are for single-model single-scale on COCO dataset.<br>Reproduce by `python segment/val.py --data coco.yaml --weights yolov5s-seg.pt`
265
+ - **Speed** averaged over 100 inference images using a [Colab Pro](https://colab.research.google.com/signup) A100 High-RAM instance. Values indicate inference speed only (NMS adds about 1ms per image). <br>Reproduce by `python segment/val.py --data coco.yaml --weights yolov5s-seg.pt --batch 1`
266
+ - **Export** to ONNX at FP32 and TensorRT at FP16 done with `export.py`. <br>Reproduce by `python export.py --weights yolov5s-seg.pt --include engine --device 0 --half`
267
+
268
+ </details>
269
+
270
+ <details>
271
+ <summary>Segmentation Usage Examples &nbsp;<a href="https://colab.research.google.com/github/ultralytics/yolov5/blob/master/segment/tutorial.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"></a></summary>
272
+
273
+ ### Train
274
+
275
+ YOLOv5 segmentation training supports auto-download COCO128-seg segmentation dataset with `--data coco128-seg.yaml` argument and manual download of COCO-segments dataset with `bash data/scripts/get_coco.sh --train --val --segments` and then `python train.py --data coco.yaml`.
276
+
277
+ ```bash
278
+ # Single-GPU
279
+ python segment/train.py --data coco128-seg.yaml --weights yolov5s-seg.pt --img 640
280
+
281
+ # Multi-GPU DDP
282
+ python -m torch.distributed.run --nproc_per_node 4 --master_port 1 segment/train.py --data coco128-seg.yaml --weights yolov5s-seg.pt --img 640 --device 0,1,2,3
283
+ ```
284
+
285
+ ### Val
286
+
287
+ Validate YOLOv5s-seg mask mAP on COCO dataset:
288
+
289
+ ```bash
290
+ bash data/scripts/get_coco.sh --val --segments # download COCO val segments split (780MB, 5000 images)
291
+ python segment/val.py --weights yolov5s-seg.pt --data coco.yaml --img 640 # validate
292
+ ```
293
+
294
+ ### Predict
295
+
296
+ Use pretrained YOLOv5m-seg.pt to predict bus.jpg:
297
+
298
+ ```bash
299
+ python segment/predict.py --weights yolov5m-seg.pt --source data/images/bus.jpg
300
+ ```
301
+
302
+ ```python
303
+ model = torch.hub.load(
304
+ "ultralytics/yolov5", "custom", "yolov5m-seg.pt"
305
+ ) # load from PyTorch Hub (WARNING: inference not yet supported)
306
+ ```
307
+
308
+ | ![zidane](https://user-images.githubusercontent.com/26833433/203113421-decef4c4-183d-4a0a-a6c2-6435b33bc5d3.jpg) | ![bus](https://user-images.githubusercontent.com/26833433/203113416-11fe0025-69f7-4874-a0a6-65d0bfe2999a.jpg) |
309
+ | ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
310
+
311
+ ### Export
312
+
313
+ Export YOLOv5s-seg model to ONNX and TensorRT:
314
+
315
+ ```bash
316
+ python export.py --weights yolov5s-seg.pt --include onnx engine --img 640 --device 0
317
+ ```
318
+
319
+ </details>
320
+
321
+ ## <div align="center">Classification</div>
322
+
323
+ YOLOv5 [release v6.2](https://github.com/ultralytics/yolov5/releases) brings support for classification model training, validation and deployment! See full details in our [Release Notes](https://github.com/ultralytics/yolov5/releases/v6.2) and visit our [YOLOv5 Classification Colab Notebook](https://github.com/ultralytics/yolov5/blob/master/classify/tutorial.ipynb) for quickstart tutorials.
324
+
325
+ <details>
326
+ <summary>Classification Checkpoints</summary>
327
+
328
+ <br>
329
+
330
+ We trained YOLOv5-cls classification models on ImageNet for 90 epochs using a 4xA100 instance, and we trained ResNet and EfficientNet models alongside with the same default training settings to compare. We exported all models to ONNX FP32 for CPU speed tests and to TensorRT FP16 for GPU speed tests. We ran all speed tests on Google [Colab Pro](https://colab.research.google.com/signup) for easy reproducibility.
331
+
332
+ | Model | size<br><sup>(pixels) | acc<br><sup>top1 | acc<br><sup>top5 | Training<br><sup>90 epochs<br>4xA100 (hours) | Speed<br><sup>ONNX CPU<br>(ms) | Speed<br><sup>TensorRT V100<br>(ms) | params<br><sup>(M) | FLOPs<br><sup>@224 (B) |
333
+ | -------------------------------------------------------------------------------------------------- | --------------------- | ---------------- | ---------------- | -------------------------------------------- | ------------------------------ | ----------------------------------- | ------------------ | ---------------------- |
334
+ | [YOLOv5n-cls](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5n-cls.pt) | 224 | 64.6 | 85.4 | 7:59 | **3.3** | **0.5** | **2.5** | **0.5** |
335
+ | [YOLOv5s-cls](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5s-cls.pt) | 224 | 71.5 | 90.2 | 8:09 | 6.6 | 0.6 | 5.4 | 1.4 |
336
+ | [YOLOv5m-cls](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5m-cls.pt) | 224 | 75.9 | 92.9 | 10:06 | 15.5 | 0.9 | 12.9 | 3.9 |
337
+ | [YOLOv5l-cls](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5l-cls.pt) | 224 | 78.0 | 94.0 | 11:56 | 26.9 | 1.4 | 26.5 | 8.5 |
338
+ | [YOLOv5x-cls](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5x-cls.pt) | 224 | **79.0** | **94.4** | 15:04 | 54.3 | 1.8 | 48.1 | 15.9 |
339
+ | | | | | | | | | |
340
+ | [ResNet18](https://github.com/ultralytics/yolov5/releases/download/v7.0/resnet18.pt) | 224 | 70.3 | 89.5 | **6:47** | 11.2 | 0.5 | 11.7 | 3.7 |
341
+ | [ResNet34](https://github.com/ultralytics/yolov5/releases/download/v7.0/resnet34.pt) | 224 | 73.9 | 91.8 | 8:33 | 20.6 | 0.9 | 21.8 | 7.4 |
342
+ | [ResNet50](https://github.com/ultralytics/yolov5/releases/download/v7.0/resnet50.pt) | 224 | 76.8 | 93.4 | 11:10 | 23.4 | 1.0 | 25.6 | 8.5 |
343
+ | [ResNet101](https://github.com/ultralytics/yolov5/releases/download/v7.0/resnet101.pt) | 224 | 78.5 | 94.3 | 17:10 | 42.1 | 1.9 | 44.5 | 15.9 |
344
+ | | | | | | | | | |
345
+ | [EfficientNet_b0](https://github.com/ultralytics/yolov5/releases/download/v7.0/efficientnet_b0.pt) | 224 | 75.1 | 92.4 | 13:03 | 12.5 | 1.3 | 5.3 | 1.0 |
346
+ | [EfficientNet_b1](https://github.com/ultralytics/yolov5/releases/download/v7.0/efficientnet_b1.pt) | 224 | 76.4 | 93.2 | 17:04 | 14.9 | 1.6 | 7.8 | 1.5 |
347
+ | [EfficientNet_b2](https://github.com/ultralytics/yolov5/releases/download/v7.0/efficientnet_b2.pt) | 224 | 76.6 | 93.4 | 17:10 | 15.9 | 1.6 | 9.1 | 1.7 |
348
+ | [EfficientNet_b3](https://github.com/ultralytics/yolov5/releases/download/v7.0/efficientnet_b3.pt) | 224 | 77.7 | 94.0 | 19:19 | 18.9 | 1.9 | 12.2 | 2.4 |
349
+
350
+ <details>
351
+ <summary>Table Notes (click to expand)</summary>
352
+
353
+ - All checkpoints are trained to 90 epochs with SGD optimizer with `lr0=0.001` and `weight_decay=5e-5` at image size 224 and all default settings.<br>Runs logged to https://wandb.ai/glenn-jocher/YOLOv5-Classifier-v6-2
354
+ - **Accuracy** values are for single-model single-scale on [ImageNet-1k](https://www.image-net.org/index.php) dataset.<br>Reproduce by `python classify/val.py --data ../datasets/imagenet --img 224`
355
+ - **Speed** averaged over 100 inference images using a Google [Colab Pro](https://colab.research.google.com/signup) V100 High-RAM instance.<br>Reproduce by `python classify/val.py --data ../datasets/imagenet --img 224 --batch 1`
356
+ - **Export** to ONNX at FP32 and TensorRT at FP16 done with `export.py`. <br>Reproduce by `python export.py --weights yolov5s-cls.pt --include engine onnx --imgsz 224`
357
+
358
+ </details>
359
+ </details>
360
+
361
+ <details>
362
+ <summary>Classification Usage Examples &nbsp;<a href="https://colab.research.google.com/github/ultralytics/yolov5/blob/master/classify/tutorial.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"></a></summary>
363
+
364
+ ### Train
365
+
366
+ YOLOv5 classification training supports auto-download of MNIST, Fashion-MNIST, CIFAR10, CIFAR100, Imagenette, Imagewoof, and ImageNet datasets with the `--data` argument. To start training on MNIST for example use `--data mnist`.
367
+
368
+ ```bash
369
+ # Single-GPU
370
+ python classify/train.py --model yolov5s-cls.pt --data cifar100 --epochs 5 --img 224 --batch 128
371
+
372
+ # Multi-GPU DDP
373
+ python -m torch.distributed.run --nproc_per_node 4 --master_port 1 classify/train.py --model yolov5s-cls.pt --data imagenet --epochs 5 --img 224 --device 0,1,2,3
374
+ ```
375
+
376
+ ### Val
377
+
378
+ Validate YOLOv5m-cls accuracy on ImageNet-1k dataset:
379
+
380
+ ```bash
381
+ bash data/scripts/get_imagenet.sh --val # download ImageNet val split (6.3G, 50000 images)
382
+ python classify/val.py --weights yolov5m-cls.pt --data ../datasets/imagenet --img 224 # validate
383
+ ```
384
+
385
+ ### Predict
386
+
387
+ Use pretrained YOLOv5s-cls.pt to predict bus.jpg:
388
+
389
+ ```bash
390
+ python classify/predict.py --weights yolov5s-cls.pt --source data/images/bus.jpg
391
+ ```
392
+
393
+ ```python
394
+ model = torch.hub.load("ultralytics/yolov5", "custom", "yolov5s-cls.pt") # load from PyTorch Hub
395
+ ```
396
+
397
+ ### Export
398
+
399
+ Export a group of trained YOLOv5s-cls, ResNet and EfficientNet models to ONNX and TensorRT:
400
+
401
+ ```bash
402
+ python export.py --weights yolov5s-cls.pt resnet50.pt efficientnet_b0.pt --include onnx engine --img 224
403
+ ```
404
+
405
+ </details>
406
+
407
+ ## <div align="center">Environments</div>
408
+
409
+ Get started in seconds with our verified environments. Click each icon below for details.
410
+
411
+ <div align="center">
412
+ <a href="https://bit.ly/yolov5-paperspace-notebook">
413
+ <img src="https://github.com/ultralytics/assets/releases/download/v0.0.0/logo-gradient.png" width="10%" /></a>
414
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="5%" alt="" />
415
+ <a href="https://colab.research.google.com/github/ultralytics/yolov5/blob/master/tutorial.ipynb">
416
+ <img src="https://github.com/ultralytics/assets/releases/download/v0.0.0/logo-colab-small.png" width="10%" /></a>
417
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="5%" alt="" />
418
+ <a href="https://www.kaggle.com/ultralytics/yolov5">
419
+ <img src="https://github.com/ultralytics/assets/releases/download/v0.0.0/logo-kaggle-small.png" width="10%" /></a>
420
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="5%" alt="" />
421
+ <a href="https://hub.docker.com/r/ultralytics/yolov5">
422
+ <img src="https://github.com/ultralytics/assets/releases/download/v0.0.0/logo-docker-small.png" width="10%" /></a>
423
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="5%" alt="" />
424
+ <a href="https://docs.ultralytics.com/yolov5/environments/aws_quickstart_tutorial/">
425
+ <img src="https://github.com/ultralytics/assets/releases/download/v0.0.0/logo-aws-small.png" width="10%" /></a>
426
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="5%" alt="" />
427
+ <a href="https://docs.ultralytics.com/yolov5/environments/google_cloud_quickstart_tutorial/">
428
+ <img src="https://github.com/ultralytics/assets/releases/download/v0.0.0/logo-gcp-small.png" width="10%" /></a>
429
+ </div>
430
+
431
+ ## <div align="center">Contribute</div>
432
+
433
+ We love your input! We want to make contributing to YOLOv5 as easy and transparent as possible. Please see our [Contributing Guide](https://docs.ultralytics.com/help/contributing/) to get started, and fill out the [YOLOv5 Survey](https://www.ultralytics.com/survey?utm_source=github&utm_medium=social&utm_campaign=Survey) to send us feedback on your experiences. Thank you to all our contributors!
434
+
435
+ <!-- SVG image from https://opencollective.com/ultralytics/contributors.svg?width=990 -->
436
+
437
+ <a href="https://github.com/ultralytics/yolov5/graphs/contributors">
438
+ <img src="https://github.com/ultralytics/assets/raw/main/im/image-contributors.png" /></a>
439
+
440
+ ## <div align="center">License</div>
441
+
442
+ Ultralytics offers two licensing options to accommodate diverse use cases:
443
+
444
+ - **AGPL-3.0 License**: This [OSI-approved](https://opensource.org/license) open-source license is ideal for students and enthusiasts, promoting open collaboration and knowledge sharing. See the [LICENSE](https://github.com/ultralytics/yolov5/blob/master/LICENSE) file for more details.
445
+ - **Enterprise License**: Designed for commercial use, this license permits seamless integration of Ultralytics software and AI models into commercial goods and services, bypassing the open-source requirements of AGPL-3.0. If your scenario involves embedding our solutions into a commercial offering, reach out through [Ultralytics Licensing](https://www.ultralytics.com/license).
446
+
447
+ ## <div align="center">Contact</div>
448
+
449
+ For YOLOv5 bug reports and feature requests please visit [GitHub Issues](https://github.com/ultralytics/yolov5/issues), and join our [Discord](https://discord.com/invite/ultralytics) community for questions and discussions!
450
+
451
+ <br>
452
+ <div align="center">
453
+ <a href="https://github.com/ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-github.png" width="3%" alt="Ultralytics GitHub"></a>
454
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%">
455
+ <a href="https://www.linkedin.com/company/ultralytics/"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-linkedin.png" width="3%" alt="Ultralytics LinkedIn"></a>
456
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%">
457
+ <a href="https://twitter.com/ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-twitter.png" width="3%" alt="Ultralytics Twitter"></a>
458
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%">
459
+ <a href="https://youtube.com/ultralytics?sub_confirmation=1"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-youtube.png" width="3%" alt="Ultralytics YouTube"></a>
460
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%">
461
+ <a href="https://www.tiktok.com/@ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-tiktok.png" width="3%" alt="Ultralytics TikTok"></a>
462
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%">
463
+ <a href="https://ultralytics.com/bilibili"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-bilibili.png" width="3%" alt="Ultralytics BiliBili"></a>
464
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%">
465
+ <a href="https://ultralytics.com/discord"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-discord.png" width="3%" alt="Ultralytics Discord"></a>
466
+ </div>
467
+
468
+ [tta]: https://docs.ultralytics.com/yolov5/tutorials/test_time_augmentation
yolov5/README.zh-CN.md ADDED
@@ -0,0 +1,468 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div align="center">
2
+ <p>
3
+ <a href="https://ultralytics.com/events/yolovision" target="_blank">
4
+ <img width="100%" src="https://raw.githubusercontent.com/ultralytics/assets/main/yolov8/banner-yolov8.png"></a>
5
+ </p>
6
+
7
+ [中文](https://docs.ultralytics.com/zh) | [한국어](https://docs.ultralytics.com/ko) | [日本語](https://docs.ultralytics.com/ja) | [Русский](https://docs.ultralytics.com/ru) | [Deutsch](https://docs.ultralytics.com/de) | [Français](https://docs.ultralytics.com/fr) | [Español](https://docs.ultralytics.com/es) | [Português](https://docs.ultralytics.com/pt) | [Türkçe](https://docs.ultralytics.com/tr) | [Tiếng Việt](https://docs.ultralytics.com/vi) | [العربية](https://docs.ultralytics.com/ar)
8
+
9
+ <div>
10
+ <a href="https://github.com/ultralytics/yolov5/actions/workflows/ci-testing.yml"><img src="https://github.com/ultralytics/yolov5/actions/workflows/ci-testing.yml/badge.svg" alt="YOLOv5 CI"></a>
11
+ <a href="https://zenodo.org/badge/latestdoi/264818686"><img src="https://zenodo.org/badge/264818686.svg" alt="YOLOv5 Citation"></a>
12
+ <a href="https://hub.docker.com/r/ultralytics/yolov5"><img src="https://img.shields.io/docker/pulls/ultralytics/yolov5?logo=docker" alt="Docker Pulls"></a>
13
+ <a href="https://ultralytics.com/discord"><img alt="Discord" src="https://img.shields.io/discord/1089800235347353640?logo=discord&logoColor=white&label=Discord&color=blue"></a> <a href="https://community.ultralytics.com"><img alt="Ultralytics Forums" src="https://img.shields.io/discourse/users?server=https%3A%2F%2Fcommunity.ultralytics.com&logo=discourse&label=Forums&color=blue"></a> <a href="https://reddit.com/r/ultralytics"><img alt="Ultralytics Reddit" src="https://img.shields.io/reddit/subreddit-subscribers/ultralytics?style=flat&logo=reddit&logoColor=white&label=Reddit&color=blue"></a>
14
+ <br>
15
+ <a href="https://bit.ly/yolov5-paperspace-notebook"><img src="https://assets.paperspace.io/img/gradient-badge.svg" alt="Run on Gradient"></a>
16
+ <a href="https://colab.research.google.com/github/ultralytics/yolov5/blob/master/tutorial.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"></a>
17
+ <a href="https://www.kaggle.com/ultralytics/yolov5"><img src="https://kaggle.com/static/images/open-in-kaggle.svg" alt="Open In Kaggle"></a>
18
+ </div>
19
+ <br>
20
+
21
+ YOLOv5 🚀 是世界上最受欢迎的视觉 AI,代表<a href="https://ultralytics.com"> Ultralytics </a>对未来视觉 AI 方法的开源研究,结合在数千小时的研究和开发中积累的经验教训和最佳实践。
22
+
23
+ 我们希望这里的资源能帮助您充分利用 YOLOv5。请浏览 YOLOv5 <a href="https://docs.ultralytics.com/yolov5/">文档</a> 了解详细信息,在 <a href="https://github.com/ultralytics/yolov5/issues/new/choose">GitHub</a> 上提交问题以获得支持,并加入我们的 <a href="https://ultralytics.com/discord">Discord</a> 社区进行问题和讨论!
24
+
25
+ 如需申请企业许可,请在 [Ultralytics Licensing](https://www.ultralytics.com/license) 处填写表格
26
+
27
+ <div align="center">
28
+ <a href="https://github.com/ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-github.png" width="2%" alt="Ultralytics GitHub"></a>
29
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="2%">
30
+ <a href="https://www.linkedin.com/company/ultralytics/"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-linkedin.png" width="2%" alt="Ultralytics LinkedIn"></a>
31
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="2%">
32
+ <a href="https://twitter.com/ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-twitter.png" width="2%" alt="Ultralytics Twitter"></a>
33
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="2%">
34
+ <a href="https://youtube.com/ultralytics?sub_confirmation=1"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-youtube.png" width="2%" alt="Ultralytics YouTube"></a>
35
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="2%">
36
+ <a href="https://www.tiktok.com/@ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-tiktok.png" width="2%" alt="Ultralytics TikTok"></a>
37
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="2%">
38
+ <a href="https://ultralytics.com/bilibili"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-bilibili.png" width="2%" alt="Ultralytics BiliBili"></a>
39
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="2%">
40
+ <a href="https://ultralytics.com/discord"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-discord.png" width="2%" alt="Ultralytics Discord"></a>
41
+ </div>
42
+ </div>
43
+
44
+ ## <div align="center">YOLOv8 🚀 新品</div>
45
+
46
+ 我们很高兴宣布 Ultralytics YOLOv8 🚀 的发布,这是我们新推出的领先水平、最先进的(SOTA)模型,发布于 **[https://github.com/ultralytics/ultralytics](https://github.com/ultralytics/ultralytics)**。 YOLOv8 旨在快速、准确且易于使用,使其成为广泛的物体检测、图像分割和图像分类任务的极佳选择。
47
+
48
+ 请查看 [YOLOv8 文档](https://docs.ultralytics.com)了解详细信息,并开始使用:
49
+
50
+ [![PyPI 版本](https://badge.fury.io/py/ultralytics.svg)](https://badge.fury.io/py/ultralytics) [![下载量](https://static.pepy.tech/badge/ultralytics)](https://pepy.tech/project/ultralytics)
51
+
52
+ ```commandline
53
+ pip install ultralytics
54
+ ```
55
+
56
+ <div align="center">
57
+ <a href="https://ultralytics.com/yolo" target="_blank">
58
+ <img width="100%" src="https://raw.githubusercontent.com/ultralytics/assets/main/yolov8/yolo-comparison-plots.png"></a>
59
+ </div>
60
+
61
+ ## <div align="center">文档</div>
62
+
63
+ 有关训练、测试和部署的完整文档见[YOLOv5 文档](https://docs.ultralytics.com/yolov5/)。请参阅下面的快速入门示例。
64
+
65
+ <details open>
66
+ <summary>安装</summary>
67
+
68
+ 克隆 repo,并要求在 [**Python>=3.8.0**](https://www.python.org/) 环境中安装 [requirements.txt](https://github.com/ultralytics/yolov5/blob/master/requirements.txt) ,且要求 [**PyTorch>=1.8**](https://pytorch.org/get-started/locally/) 。
69
+
70
+ ```bash
71
+ git clone https://github.com/ultralytics/yolov5 # clone
72
+ cd yolov5
73
+ pip install -r requirements.txt # install
74
+ ```
75
+
76
+ </details>
77
+
78
+ <details>
79
+ <summary>推理</summary>
80
+
81
+ 使用 YOLOv5 [PyTorch Hub](https://docs.ultralytics.com/yolov5/tutorials/pytorch_hub_model_loading) 推理。最新 [模型](https://github.com/ultralytics/yolov5/tree/master/models) 将自动的从 YOLOv5 [release](https://github.com/ultralytics/yolov5/releases) 中下载。
82
+
83
+ ```python
84
+ import torch
85
+
86
+ # Model
87
+ model = torch.hub.load("ultralytics/yolov5", "yolov5s") # or yolov5n - yolov5x6, custom
88
+
89
+ # Images
90
+ img = "https://ultralytics.com/images/zidane.jpg" # or file, Path, PIL, OpenCV, numpy, list
91
+
92
+ # Inference
93
+ results = model(img)
94
+
95
+ # Results
96
+ results.print() # or .show(), .save(), .crop(), .pandas(), etc.
97
+ ```
98
+
99
+ </details>
100
+
101
+ <details>
102
+ <summary>使用 detect.py 推理</summary>
103
+
104
+ `detect.py` 在各种来源上运行推理, [模型](https://github.com/ultralytics/yolov5/tree/master/models) 自动从 最新的YOLOv5 [release](https://github.com/ultralytics/yolov5/releases) 中下载,并将结果保存到 `runs/detect` 。
105
+
106
+ ```bash
107
+ python detect.py --weights yolov5s.pt --source 0 # webcam
108
+ img.jpg # image
109
+ vid.mp4 # video
110
+ screen # screenshot
111
+ path/ # directory
112
+ list.txt # list of images
113
+ list.streams # list of streams
114
+ 'path/*.jpg' # glob
115
+ 'https://youtu.be/LNwODJXcvt4' # YouTube
116
+ 'rtsp://example.com/media.mp4' # RTSP, RTMP, HTTP stream
117
+ ```
118
+
119
+ </details>
120
+
121
+ <details>
122
+ <summary>训练</summary>
123
+
124
+ 下面的命令重现 YOLOv5 在 [COCO](https://github.com/ultralytics/yolov5/blob/master/data/scripts/get_coco.sh) 数据集上的结果。 最新的 [模型](https://github.com/ultralytics/yolov5/tree/master/models) 和 [数据集](https://github.com/ultralytics/yolov5/tree/master/data)
125
+ 将自动的从 YOLOv5 [release](https://github.com/ultralytics/yolov5/releases) 中下载。 YOLOv5n/s/m/l/x 在 V100 GPU 的训练时间为 1/2/4/6/8 天( [多GPU](https://docs.ultralytics.com/yolov5/tutorials/multi_gpu_training) 训练速度更快)。 尽可能使用更大的 `--batch-size` ,或通过 `--batch-size -1` 实现 YOLOv5 [自动批处理](https://github.com/ultralytics/yolov5/pull/5092) 。下方显示的 batchsize 适用于 V100-16GB。
126
+
127
+ ```bash
128
+ python train.py --data coco.yaml --epochs 300 --weights '' --cfg yolov5n.yaml --batch-size 128
129
+ yolov5s 64
130
+ yolov5m 40
131
+ yolov5l 24
132
+ yolov5x 16
133
+ ```
134
+
135
+ <img width="800" src="https://user-images.githubusercontent.com/26833433/90222759-949d8800-ddc1-11ea-9fa1-1c97eed2b963.png">
136
+
137
+ </details>
138
+
139
+ <details open>
140
+ <summary>教程</summary>
141
+
142
+ - [训练自定义数据](https://docs.ultralytics.com/yolov5/tutorials/train_custom_data) 🚀 推荐
143
+ - [获得最佳训练结果的技巧](https://docs.ultralytics.com/guides/model-training-tips/) ☘️
144
+ - [多GPU训练](https://docs.ultralytics.com/yolov5/tutorials/multi_gpu_training)
145
+ - [PyTorch Hub](https://docs.ultralytics.com/yolov5/tutorials/pytorch_hub_model_loading) 🌟 新
146
+ - [TFLite,ONNX,CoreML,TensorRT导出](https://docs.ultralytics.com/yolov5/tutorials/model_export) 🚀
147
+ - [NVIDIA Jetson平台部署](https://docs.ultralytics.com/yolov5/tutorials/running_on_jetson_nano) 🌟 新
148
+ - [测试时增强 (TTA)](https://docs.ultralytics.com/yolov5/tutorials/test_time_augmentation)
149
+ - [模型集成](https://docs.ultralytics.com/yolov5/tutorials/model_ensembling)
150
+ - [模型剪枝/稀疏](https://docs.ultralytics.com/yolov5/tutorials/model_pruning_and_sparsity)
151
+ - [超参数进化](https://docs.ultralytics.com/yolov5/tutorials/hyperparameter_evolution)
152
+ - [冻结层的迁移学习](https://docs.ultralytics.com/yolov5/tutorials/transfer_learning_with_frozen_layers)
153
+ - [架构概述](https://docs.ultralytics.com/yolov5/tutorials/architecture_description) 🌟 新
154
+ - [Roboflow用于数据集、标注和主动学习](https://docs.ultralytics.com/yolov5/tutorials/roboflow_datasets_integration)
155
+ - [ClearML日志记录](https://docs.ultralytics.com/yolov5/tutorials/clearml_logging_integration) 🌟 新
156
+ - [使用Neural Magic的Deepsparse的YOLOv5](https://docs.ultralytics.com/yolov5/tutorials/neural_magic_pruning_quantization) 🌟 新
157
+ - [Comet日志记录](https://docs.ultralytics.com/yolov5/tutorials/comet_logging_integration) 🌟 新
158
+
159
+ </details>
160
+
161
+ ## <div align="center">模块集成</div>
162
+
163
+ <br>
164
+ <a align="center" href="https://ultralytics.com/hub" target="_blank">
165
+ <img width="100%" src="https://github.com/ultralytics/assets/raw/main/im/integrations-loop.png"></a>
166
+ <br>
167
+ <br>
168
+
169
+ <div align="center">
170
+ <a href="https://roboflow.com/?ref=ultralytics">
171
+ <img src="https://github.com/ultralytics/assets/raw/main/partners/logo-roboflow.png" width="10%" /></a>
172
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="15%" height="0" alt="" />
173
+ <a href="https://cutt.ly/yolov5-readme-clearml">
174
+ <img src="https://github.com/ultralytics/assets/raw/main/partners/logo-clearml.png" width="10%" /></a>
175
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="15%" height="0" alt="" />
176
+ <a href="https://bit.ly/yolov5-readme-comet2">
177
+ <img src="https://github.com/ultralytics/assets/raw/main/partners/logo-comet.png" width="10%" /></a>
178
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="15%" height="0" alt="" />
179
+ <a href="https://bit.ly/yolov5-neuralmagic">
180
+ <img src="https://github.com/ultralytics/assets/raw/main/partners/logo-neuralmagic.png" width="10%" /></a>
181
+ </div>
182
+
183
+ | Roboflow | ClearML ⭐ 新 | Comet ⭐ 新 | Neural Magic ⭐ 新 |
184
+ | :--------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------: |
185
+ | 将您的自定义数据集进行标注并直接导出到 YOLOv5 以进行训练 [Roboflow](https://roboflow.com/?ref=ultralytics) | 自动跟踪、可视化甚至远程训练 YOLOv5 [ClearML](https://clear.ml/)(开源!) | 永远免费,[Comet](https://bit.ly/yolov5-readme-comet2)可让您保存 YOLOv5 模型、恢复训练以及交互式可视化和调试预测 | 使用 [Neural Magic DeepSparse](https://bit.ly/yolov5-neuralmagic),运行 YOLOv5 推理的速度最高可提高6倍 |
186
+
187
+ ## <div align="center">Ultralytics HUB</div>
188
+
189
+ [Ultralytics HUB](https://www.ultralytics.com/hub) 是我们的⭐**新的**用于可视化数据集、训练 YOLOv5 🚀 模型并以无缝体验部署到现实世界的无代码解决方案。现在开始 **免费** 使用他!
190
+
191
+ <a align="center" href="https://ultralytics.com/hub" target="_blank">
192
+ <img width="100%" src="https://github.com/ultralytics/assets/raw/main/im/ultralytics-hub.png"></a>
193
+
194
+ ## <div align="center">为什么选择 YOLOv5</div>
195
+
196
+ YOLOv5 超级容易上手,简单易学。我们优先考虑现实世界的结果。
197
+
198
+ <p align="left"><img width="800" src="https://user-images.githubusercontent.com/26833433/155040763-93c22a27-347c-4e3c-847a-8094621d3f4e.png"></p>
199
+ <details>
200
+ <summary>YOLOv5-P5 640 图</summary>
201
+
202
+ <p align="left"><img width="800" src="https://user-images.githubusercontent.com/26833433/155040757-ce0934a3-06a6-43dc-a979-2edbbd69ea0e.png"></p>
203
+ </details>
204
+ <details>
205
+ <summary>图表笔记</summary>
206
+
207
+ - **COCO AP val** 表示 mAP@0.5:0.95 指标,在 [COCO val2017](http://cocodataset.org) 数据集的 5000 张图像上测得, 图像包含 256 到 1536 各种推理大小。
208
+ - **显卡推理速度** 为在 [COCO val2017](http://cocodataset.org) 数据集上的平均推理时间,使用 [AWS p3.2xlarge](https://aws.amazon.com/ec2/instance-types/p3/) V100实例,batchsize 为 32 。
209
+ - **EfficientDet** 数据来自 [google/automl](https://github.com/google/automl) , batchsize 为32。
210
+ - **复现命令** 为 `python val.py --task study --data coco.yaml --iou 0.7 --weights yolov5n6.pt yolov5s6.pt yolov5m6.pt yolov5l6.pt yolov5x6.pt`
211
+
212
+ </details>
213
+
214
+ ### 预训练模型
215
+
216
+ | 模型 | 尺寸<br><sup>(像素) | mAP<sup>val<br>50-95 | mAP<sup>val<br>50 | 推理速度<br><sup>CPU b1<br>(ms) | 推理速度<br><sup>V100 b1<br>(ms) | 速度<br><sup>V100 b32<br>(ms) | 参数量<br><sup>(M) | FLOPs<br><sup>@640 (B) |
217
+ | ---------------------------------------------------------------------------------------------- | --------------------- | -------------------- | ----------------- | --------------------------------- | ---------------------------------- | ------------------------------- | ------------------ | ---------------------- |
218
+ | [YOLOv5n](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5n.pt) | 640 | 28.0 | 45.7 | **45** | **6.3** | **0.6** | **1.9** | **4.5** |
219
+ | [YOLOv5s](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5s.pt) | 640 | 37.4 | 56.8 | 98 | 6.4 | 0.9 | 7.2 | 16.5 |
220
+ | [YOLOv5m](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5m.pt) | 640 | 45.4 | 64.1 | 224 | 8.2 | 1.7 | 21.2 | 49.0 |
221
+ | [YOLOv5l](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5l.pt) | 640 | 49.0 | 67.3 | 430 | 10.1 | 2.7 | 46.5 | 109.1 |
222
+ | [YOLOv5x](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5x.pt) | 640 | 50.7 | 68.9 | 766 | 12.1 | 4.8 | 86.7 | 205.7 |
223
+ | | | | | | | | | |
224
+ | [YOLOv5n6](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5n6.pt) | 1280 | 36.0 | 54.4 | 153 | 8.1 | 2.1 | 3.2 | 4.6 |
225
+ | [YOLOv5s6](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5s6.pt) | 1280 | 44.8 | 63.7 | 385 | 8.2 | 3.6 | 12.6 | 16.8 |
226
+ | [YOLOv5m6](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5m6.pt) | 1280 | 51.3 | 69.3 | 887 | 11.1 | 6.8 | 35.7 | 50.0 |
227
+ | [YOLOv5l6](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5l6.pt) | 1280 | 53.7 | 71.3 | 1784 | 15.8 | 10.5 | 76.8 | 111.4 |
228
+ | [YOLOv5x6](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5x6.pt)<br>+[TTA] | 1280<br>1536 | 55.0<br>**55.8** | 72.7<br>**72.7** | 3136<br>- | 26.2<br>- | 19.4<br>- | 140.7<br>- | 209.8<br>- |
229
+
230
+ <details>
231
+ <summary>笔记</summary>
232
+
233
+ - 所有模型都使用默认配置,训练 300 epochs。n和s模型使用 [hyp.scratch-low.yaml](https://github.com/ultralytics/yolov5/blob/master/data/hyps/hyp.scratch-low.yaml) ,其他模型都使用 [hyp.scratch-high.yaml](https://github.com/ultralytics/yolov5/blob/master/data/hyps/hyp.scratch-high.yaml) 。
234
+ - \*\*mAP<sup>val</sup>\*\*在单模型单尺度上计算,数据集使用 [COCO val2017](http://cocodataset.org) 。<br>复现命令 `python val.py --data coco.yaml --img 640 --conf 0.001 --iou 0.65`
235
+ - **推理速度**在 COCO val 图像总体时间上进行平均得到,测试环境使用[AWS p3.2xlarge](https://aws.amazon.com/ec2/instance-types/p3/)实例。 NMS 时间 (大约 1 ms/img) 不包括在内。<br>复现命令 `python val.py --data coco.yaml --img 640 --task speed --batch 1`
236
+ - **TTA** [测试时数据增强](https://docs.ultralytics.com/yolov5/tutorials/test_time_augmentation) 包括反射和尺度变换。<br>复现命令 `python val.py --data coco.yaml --img 1536 --iou 0.7 --augment`
237
+
238
+ </details>
239
+
240
+ ## <div align="center">实例分割模型 ⭐ 新</div>
241
+
242
+ 我们新的 YOLOv5 [release v7.0](https://github.com/ultralytics/yolov5/releases/v7.0) 实例分割模型是世界上最快和最准确的模型,击败所有当前 [SOTA 基准](https://paperswithcode.com/sota/real-time-instance-segmentation-on-mscoco)。我们使它非常易于训练、验证和部署。更多细节请查看 [发行说明](https://github.com/ultralytics/yolov5/releases/v7.0) 或访问我们的 [YOLOv5 分割 Colab 笔记本](https://github.com/ultralytics/yolov5/blob/master/segment/tutorial.ipynb) 以快速入门。
243
+
244
+ <details>
245
+ <summary>实例分割模型列表</summary>
246
+
247
+ <br>
248
+
249
+ <div align="center">
250
+ <a align="center" href="https://ultralytics.com/yolov5" target="_blank">
251
+ <img width="800" src="https://user-images.githubusercontent.com/61612323/204180385-84f3aca9-a5e9-43d8-a617-dda7ca12e54a.png"></a>
252
+ </div>
253
+
254
+ 我们使用 A100 GPU 在 COCO 上以 640 图像大小训练了 300 epochs 得到 YOLOv5 分割模型。我们将所有模型导出到 ONNX FP32 以进行 CPU 速度测试,并导出到 TensorRT FP16 以进行 GPU 速度测试。为了便于再现,我们在 Google [Colab Pro](https://colab.research.google.com/signup) 上进行了所有速度测试。
255
+
256
+ | 模型 | 尺寸<br><sup>(像素) | mAP<sup>box<br>50-95 | mAP<sup>mask<br>50-95 | 训练时长<br><sup>300 epochs<br>A100 GPU(小时) | 推理速度<br><sup>ONNX CPU<br>(ms) | 推理速度<br><sup>TRT A100<br>(ms) | 参数量<br><sup>(M) | FLOPs<br><sup>@640 (B) |
257
+ | ------------------------------------------------------------------------------------------ | --------------------- | -------------------- | --------------------- | ----------------------------------------------- | ----------------------------------- | ----------------------------------- | ------------------ | ---------------------- |
258
+ | [YOLOv5n-seg](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5n-seg.pt) | 640 | 27.6 | 23.4 | 80:17 | **62.7** | **1.2** | **2.0** | **7.1** |
259
+ | [YOLOv5s-seg](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5s-seg.pt) | 640 | 37.6 | 31.7 | 88:16 | 173.3 | 1.4 | 7.6 | 26.4 |
260
+ | [YOLOv5m-seg](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5m-seg.pt) | 640 | 45.0 | 37.1 | 108:36 | 427.0 | 2.2 | 22.0 | 70.8 |
261
+ | [YOLOv5l-seg](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5l-seg.pt) | 640 | 49.0 | 39.9 | 66:43 (2x) | 857.4 | 2.9 | 47.9 | 147.7 |
262
+ | [YOLOv5x-seg](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5x-seg.pt) | 640 | **50.7** | **41.4** | 62:56 (3x) | 1579.2 | 4.5 | 88.8 | 265.7 |
263
+
264
+ - 所有模型使用 SGD 优化器训练, 都使用 `lr0=0.01` 和 `weight_decay=5e-5` 参数, 图像大小为 640 。<br>训练 log 可以查看 https://wandb.ai/glenn-jocher/YOLOv5_v70_official
265
+ - **准确性**结果都在 COCO 数据集上,使用单模型单尺度测试得到。<br>复现命令 `python segment/val.py --data coco.yaml --weights yolov5s-seg.pt`
266
+ - **推理速度**是使用 100 张图像推理时间进行平均得到,测试环境使用 [Colab Pro](https://colab.research.google.com/signup) 上 A100 高 RAM 实例。结果仅表示推理速��(NMS 每张图像增加约 1 毫秒)。<br>复现命令 `python segment/val.py --data coco.yaml --weights yolov5s-seg.pt --batch 1`
267
+ - **模型转换**到 FP32 的 ONNX 和 FP16 的 TensorRT 脚本为 `export.py`.<br>运行命令 `python export.py --weights yolov5s-seg.pt --include engine --device 0 --half`
268
+
269
+ </details>
270
+
271
+ <details>
272
+ <summary>分割模型使用示例 &nbsp;<a href="https://colab.research.google.com/github/ultralytics/yolov5/blob/master/segment/tutorial.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"></a></summary>
273
+
274
+ ### 训练
275
+
276
+ YOLOv5分割训练支持自动下载 COCO128-seg 分割数据集,用户仅需在启动指令中包含 `--data coco128-seg.yaml` 参数。 若要手动下载,使用命令 `bash data/scripts/get_coco.sh --train --val --segments`, 在下载完毕后,使用命令 `python train.py --data coco.yaml` 开启训练。
277
+
278
+ ```bash
279
+ # 单 GPU
280
+ python segment/train.py --data coco128-seg.yaml --weights yolov5s-seg.pt --img 640
281
+
282
+ # 多 GPU, DDP 模式
283
+ python -m torch.distributed.run --nproc_per_node 4 --master_port 1 segment/train.py --data coco128-seg.yaml --weights yolov5s-seg.pt --img 640 --device 0,1,2,3
284
+ ```
285
+
286
+ ### 验证
287
+
288
+ 在 COCO 数据集上验证 YOLOv5s-seg mask mAP:
289
+
290
+ ```bash
291
+ bash data/scripts/get_coco.sh --val --segments # 下载 COCO val segments 数据集 (780MB, 5000 images)
292
+ python segment/val.py --weights yolov5s-seg.pt --data coco.yaml --img 640 # 验证
293
+ ```
294
+
295
+ ### 预测
296
+
297
+ 使用预训练的 YOLOv5m-seg.pt 来预测 bus.jpg:
298
+
299
+ ```bash
300
+ python segment/predict.py --weights yolov5m-seg.pt --source data/images/bus.jpg
301
+ ```
302
+
303
+ ```python
304
+ model = torch.hub.load(
305
+ "ultralytics/yolov5", "custom", "yolov5m-seg.pt"
306
+ ) # 从load from PyTorch Hub 加载模型 (WARNING: 推理暂未支持)
307
+ ```
308
+
309
+ | ![zidane](https://user-images.githubusercontent.com/26833433/203113421-decef4c4-183d-4a0a-a6c2-6435b33bc5d3.jpg) | ![bus](https://user-images.githubusercontent.com/26833433/203113416-11fe0025-69f7-4874-a0a6-65d0bfe2999a.jpg) |
310
+ | ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
311
+
312
+ ### 模型导出
313
+
314
+ 将 YOLOv5s-seg 模型导出到 ONNX 和 TensorRT:
315
+
316
+ ```bash
317
+ python export.py --weights yolov5s-seg.pt --include onnx engine --img 640 --device 0
318
+ ```
319
+
320
+ </details>
321
+
322
+ ## <div align="center">分类网络 ⭐ 新</div>
323
+
324
+ YOLOv5 [release v6.2](https://github.com/ultralytics/yolov5/releases) 带来对分类模型训练、验证和部署的支持!详情请查看 [发行说明](https://github.com/ultralytics/yolov5/releases/v6.2) 或访问我们的 [YOLOv5 分类 Colab 笔记本](https://github.com/ultralytics/yolov5/blob/master/classify/tutorial.ipynb) 以快速入门。
325
+
326
+ <details>
327
+ <summary>分类网络模型</summary>
328
+
329
+ <br>
330
+
331
+ 我们使用 4xA100 实例在 ImageNet 上训练了 90 个 epochs 得到 YOLOv5-cls 分类模型,我们训练了 ResNet 和 EfficientNet 模型以及相同的默认训练设置以进行比较。我们将所有模型导出到 ONNX FP32 以进行 CPU 速度测试,并导出到 TensorRT FP16 以进行 GPU 速度测试。为了便于重现,我们在 Google 上进行了所有速度测试 [Colab Pro](https://colab.research.google.com/signup) 。
332
+
333
+ | 模型 | 尺寸<br><sup>(像素) | acc<br><sup>top1 | acc<br><sup>top5 | 训练时长<br><sup>90 epochs<br>4xA100(小时) | 推理速度<br><sup>ONNX CPU<br>(ms) | 推理速度<br><sup>TensorRT V100<br>(ms) | 参数<br><sup>(M) | FLOPs<br><sup>@640 (B) |
334
+ | -------------------------------------------------------------------------------------------------- | --------------------- | ---------------- | ---------------- | -------------------------------------------- | ----------------------------------- | ---------------------------------------- | ---------------- | ---------------------- |
335
+ | [YOLOv5n-cls](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5n-cls.pt) | 224 | 64.6 | 85.4 | 7:59 | **3.3** | **0.5** | **2.5** | **0.5** |
336
+ | [YOLOv5s-cls](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5s-cls.pt) | 224 | 71.5 | 90.2 | 8:09 | 6.6 | 0.6 | 5.4 | 1.4 |
337
+ | [YOLOv5m-cls](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5m-cls.pt) | 224 | 75.9 | 92.9 | 10:06 | 15.5 | 0.9 | 12.9 | 3.9 |
338
+ | [YOLOv5l-cls](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5l-cls.pt) | 224 | 78.0 | 94.0 | 11:56 | 26.9 | 1.4 | 26.5 | 8.5 |
339
+ | [YOLOv5x-cls](https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5x-cls.pt) | 224 | **79.0** | **94.4** | 15:04 | 54.3 | 1.8 | 48.1 | 15.9 |
340
+ | | | | | | | | | |
341
+ | [ResNet18](https://github.com/ultralytics/yolov5/releases/download/v7.0/resnet18.pt) | 224 | 70.3 | 89.5 | **6:47** | 11.2 | 0.5 | 11.7 | 3.7 |
342
+ | [Resnetzch](https://github.com/ultralytics/yolov5/releases/download/v7.0/resnet34.pt) | 224 | 73.9 | 91.8 | 8:33 | 20.6 | 0.9 | 21.8 | 7.4 |
343
+ | [ResNet50](https://github.com/ultralytics/yolov5/releases/download/v7.0/resnet50.pt) | 224 | 76.8 | 93.4 | 11:10 | 23.4 | 1.0 | 25.6 | 8.5 |
344
+ | [ResNet101](https://github.com/ultralytics/yolov5/releases/download/v7.0/resnet101.pt) | 224 | 78.5 | 94.3 | 17:10 | 42.1 | 1.9 | 44.5 | 15.9 |
345
+ | | | | | | | | | |
346
+ | [EfficientNet_b0](https://github.com/ultralytics/yolov5/releases/download/v7.0/efficientnet_b0.pt) | 224 | 75.1 | 92.4 | 13:03 | 12.5 | 1.3 | 5.3 | 1.0 |
347
+ | [EfficientNet_b1](https://github.com/ultralytics/yolov5/releases/download/v7.0/efficientnet_b1.pt) | 224 | 76.4 | 93.2 | 17:04 | 14.9 | 1.6 | 7.8 | 1.5 |
348
+ | [EfficientNet_b2](https://github.com/ultralytics/yolov5/releases/download/v7.0/efficientnet_b2.pt) | 224 | 76.6 | 93.4 | 17:10 | 15.9 | 1.6 | 9.1 | 1.7 |
349
+ | [EfficientNet_b3](https://github.com/ultralytics/yolov5/releases/download/v7.0/efficientnet_b3.pt) | 224 | 77.7 | 94.0 | 19:19 | 18.9 | 1.9 | 12.2 | 2.4 |
350
+
351
+ <details>
352
+ <summary>Table Notes (点击以展开)</summary>
353
+
354
+ - 所有模型都使用 SGD 优化器训练 90 个 epochs,都使用 `lr0=0.001` 和 `weight_decay=5e-5` 参数, 图像大小为 224 ,且都使用默认设置。<br>训练 log 可以查看 https://wandb.ai/glenn-jocher/YOLOv5-Classifier-v6-2
355
+ - **准确性**都在单模型单尺度上计算,数据集使用 [ImageNet-1k](https://www.image-net.org/index.php) 。<br>复现命令 `python classify/val.py --data ../datasets/imagenet --img 224`
356
+ - **推理速度**是使用 100 个推理图像进行平均得到,测试环境使用谷歌 [Colab Pro](https://colab.research.google.com/signup) V100 高 RAM 实例。<br>复现命令 `python classify/val.py --data ../datasets/imagenet --img 224 --batch 1`
357
+ - **模型导出**到 FP32 的 ONNX 和 FP16 的 TensorRT 使用 `export.py` 。<br>复现命令 `python export.py --weights yolov5s-cls.pt --include engine onnx --imgsz 224`
358
+ </details>
359
+ </details>
360
+
361
+ <details>
362
+ <summary>分类训练示例 &nbsp;<a href="https://colab.research.google.com/github/ultralytics/yolov5/blob/master/classify/tutorial.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"></a></summary>
363
+
364
+ ### 训练
365
+
366
+ YOLOv5 分类训练支持自动下载 MNIST、Fashion-MNIST、CIFAR10、CIFAR100、Imagenette、Imagewoof 和 ImageNet 数据集,命令中使用 `--data` 即可。 MNIST 示例 `--data mnist` 。
367
+
368
+ ```bash
369
+ # 单 GPU
370
+ python classify/train.py --model yolov5s-cls.pt --data cifar100 --epochs 5 --img 224 --batch 128
371
+
372
+ # 多 GPU, DDP 模式
373
+ python -m torch.distributed.run --nproc_per_node 4 --master_port 1 classify/train.py --model yolov5s-cls.pt --data imagenet --epochs 5 --img 224 --device 0,1,2,3
374
+ ```
375
+
376
+ ### 验证
377
+
378
+ 在 ImageNet-1k 数据集上验证 YOLOv5m-cls 的准确性:
379
+
380
+ ```bash
381
+ bash data/scripts/get_imagenet.sh --val # download ImageNet val split (6.3G, 50000 images)
382
+ python classify/val.py --weights yolov5m-cls.pt --data ../datasets/imagenet --img 224 # validate
383
+ ```
384
+
385
+ ### 预测
386
+
387
+ 使用预训练的 YOLOv5s-cls.pt 来预测 bus.jpg:
388
+
389
+ ```bash
390
+ python classify/predict.py --weights yolov5s-cls.pt --source data/images/bus.jpg
391
+ ```
392
+
393
+ ```python
394
+ model = torch.hub.load("ultralytics/yolov5", "custom", "yolov5s-cls.pt") # load from PyTorch Hub
395
+ ```
396
+
397
+ ### 模型导出
398
+
399
+ 将一组经过训练的 YOLOv5s-cls、ResNet 和 EfficientNet 模型导出到 ONNX 和 TensorRT:
400
+
401
+ ```bash
402
+ python export.py --weights yolov5s-cls.pt resnet50.pt efficientnet_b0.pt --include onnx engine --img 224
403
+ ```
404
+
405
+ </details>
406
+
407
+ ## <div align="center">环境</div>
408
+
409
+ 使用下面我们经过验证的环境,在几秒钟内开始使用 YOLOv5 。单击下面的图标了解详细信息。
410
+
411
+ <div align="center">
412
+ <a href="https://bit.ly/yolov5-paperspace-notebook">
413
+ <img src="https://github.com/ultralytics/assets/releases/download/v0.0.0/logo-gradient.png" width="10%" /></a>
414
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="5%" alt="" />
415
+ <a href="https://colab.research.google.com/github/ultralytics/yolov5/blob/master/tutorial.ipynb">
416
+ <img src="https://github.com/ultralytics/assets/releases/download/v0.0.0/logo-colab-small.png" width="10%" /></a>
417
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="5%" alt="" />
418
+ <a href="https://www.kaggle.com/ultralytics/yolov5">
419
+ <img src="https://github.com/ultralytics/assets/releases/download/v0.0.0/logo-kaggle-small.png" width="10%" /></a>
420
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="5%" alt="" />
421
+ <a href="https://hub.docker.com/r/ultralytics/yolov5">
422
+ <img src="https://github.com/ultralytics/assets/releases/download/v0.0.0/logo-docker-small.png" width="10%" /></a>
423
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="5%" alt="" />
424
+ <a href="https://docs.ultralytics.com/yolov5/environments/aws_quickstart_tutorial/">
425
+ <img src="https://github.com/ultralytics/assets/releases/download/v0.0.0/logo-aws-small.png" width="10%" /></a>
426
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="5%" alt="" />
427
+ <a href="https://docs.ultralytics.com/yolov5/environments/google_cloud_quickstart_tutorial/">
428
+ <img src="https://github.com/ultralytics/assets/releases/download/v0.0.0/logo-gcp-small.png" width="10%" /></a>
429
+ </div>
430
+
431
+ ## <div align="center">贡献</div>
432
+
433
+ 我们喜欢您的意见或建议!我们希望尽可能简单和透明地为 YOLOv5 做出贡献。请看我们的 [投稿指南](https://docs.ultralytics.com/help/contributing/),并填写 [YOLOv5调查](https://www.ultralytics.com/survey?utm_source=github&utm_medium=social&utm_campaign=Survey) 向我们发送您的体验反馈。感谢我们所有的贡献者!
434
+
435
+ <!-- SVG image from https://opencollective.com/ultralytics/contributors.svg?width=990 -->
436
+
437
+ <a href="https://github.com/ultralytics/yolov5/graphs/contributors">
438
+ <img src="https://github.com/ultralytics/assets/raw/main/im/image-contributors.png" /></a>
439
+
440
+ ## <div align="center">许可证</div>
441
+
442
+ Ultralytics 提供两种许可证选项以适应各种使用场景:
443
+
444
+ - **AGPL-3.0 许可证**:这个[OSI 批准](https://opensource.org/license)的开源许可证非常适合学生和爱好者,可以推动开放的协作和知识分享。请查看[LICENSE](https://github.com/ultralytics/yolov5/blob/master/LICENSE) 文件以了解更多细节。
445
+ - **企业许可证**:专为商业用途设计,该许可证允许将 Ultralytics 的软件和 AI 模型无缝集成到商业产品和服务中,从而绕过 AGPL-3.0 的开源要求。如果您的场景涉及将我们的解决方案嵌入到商业产品中,请通过 [Ultralytics Licensing](https://www.ultralytics.com/license)与我们联系。
446
+
447
+ ## <div align="center">联系方式</div>
448
+
449
+ 对于 Ultralytics 的错误报告和功能请求,请访问 [GitHub Issues](https://github.com/ultralytics/yolov5/issues),并加入我们的 [Discord](https://discord.com/invite/ultralytics) 社区进行问题和讨论!
450
+
451
+ <br>
452
+ <div align="center">
453
+ <a href="https://github.com/ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-github.png" width="3%" alt="Ultralytics GitHub"></a>
454
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%">
455
+ <a href="https://www.linkedin.com/company/ultralytics/"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-linkedin.png" width="3%" alt="Ultralytics LinkedIn"></a>
456
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%">
457
+ <a href="https://twitter.com/ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-twitter.png" width="3%" alt="Ultralytics Twitter"></a>
458
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%">
459
+ <a href="https://youtube.com/ultralytics?sub_confirmation=1"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-youtube.png" width="3%" alt="Ultralytics YouTube"></a>
460
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%">
461
+ <a href="https://www.tiktok.com/@ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-tiktok.png" width="3%" alt="Ultralytics TikTok"></a>
462
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%">
463
+ <a href="https://ultralytics.com/bilibili"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-bilibili.png" width="3%" alt="Ultralytics BiliBili"></a>
464
+ <img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%">
465
+ <a href="https://ultralytics.com/discord"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-discord.png" width="3%" alt="Ultralytics Discord"></a>
466
+ </div>
467
+
468
+ [tta]: https://docs.ultralytics.com/yolov5/tutorials/test_time_augmentation
yolov5/benchmarks.py ADDED
@@ -0,0 +1,294 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ """
3
+ Run YOLOv5 benchmarks on all supported export formats.
4
+
5
+ Format | `export.py --include` | Model
6
+ --- | --- | ---
7
+ PyTorch | - | yolov5s.pt
8
+ TorchScript | `torchscript` | yolov5s.torchscript
9
+ ONNX | `onnx` | yolov5s.onnx
10
+ OpenVINO | `openvino` | yolov5s_openvino_model/
11
+ TensorRT | `engine` | yolov5s.engine
12
+ CoreML | `coreml` | yolov5s.mlpackage
13
+ TensorFlow SavedModel | `saved_model` | yolov5s_saved_model/
14
+ TensorFlow GraphDef | `pb` | yolov5s.pb
15
+ TensorFlow Lite | `tflite` | yolov5s.tflite
16
+ TensorFlow Edge TPU | `edgetpu` | yolov5s_edgetpu.tflite
17
+ TensorFlow.js | `tfjs` | yolov5s_web_model/
18
+
19
+ Requirements:
20
+ $ pip install -r requirements.txt coremltools onnx onnx-simplifier onnxruntime openvino-dev tensorflow-cpu # CPU
21
+ $ pip install -r requirements.txt coremltools onnx onnx-simplifier onnxruntime-gpu openvino-dev tensorflow # GPU
22
+ $ pip install -U nvidia-tensorrt --index-url https://pypi.ngc.nvidia.com # TensorRT
23
+
24
+ Usage:
25
+ $ python benchmarks.py --weights yolov5s.pt --img 640
26
+ """
27
+
28
+ import argparse
29
+ import platform
30
+ import sys
31
+ import time
32
+ from pathlib import Path
33
+
34
+ import pandas as pd
35
+
36
+ FILE = Path(__file__).resolve()
37
+ ROOT = FILE.parents[0] # YOLOv5 root directory
38
+ if str(ROOT) not in sys.path:
39
+ sys.path.append(str(ROOT)) # add ROOT to PATH
40
+ # ROOT = ROOT.relative_to(Path.cwd()) # relative
41
+
42
+ import export
43
+ from models.experimental import attempt_load
44
+ from models.yolo import SegmentationModel
45
+ from segment.val import run as val_seg
46
+ from utils import notebook_init
47
+ from utils.general import LOGGER, check_yaml, file_size, print_args
48
+ from utils.torch_utils import select_device
49
+ from val import run as val_det
50
+
51
+
52
+ def run(
53
+ weights=ROOT / "yolov5s.pt", # weights path
54
+ imgsz=640, # inference size (pixels)
55
+ batch_size=1, # batch size
56
+ data=ROOT / "data/coco128.yaml", # dataset.yaml path
57
+ device="", # cuda device, i.e. 0 or 0,1,2,3 or cpu
58
+ half=False, # use FP16 half-precision inference
59
+ test=False, # test exports only
60
+ pt_only=False, # test PyTorch only
61
+ hard_fail=False, # throw error on benchmark failure
62
+ ):
63
+ """
64
+ Run YOLOv5 benchmarks on multiple export formats and log results for model performance evaluation.
65
+
66
+ Args:
67
+ weights (Path | str): Path to the model weights file (default: ROOT / "yolov5s.pt").
68
+ imgsz (int): Inference size in pixels (default: 640).
69
+ batch_size (int): Batch size for inference (default: 1).
70
+ data (Path | str): Path to the dataset.yaml file (default: ROOT / "data/coco128.yaml").
71
+ device (str): CUDA device, e.g., '0' or '0,1,2,3' or 'cpu' (default: "").
72
+ half (bool): Use FP16 half-precision inference (default: False).
73
+ test (bool): Test export formats only (default: False).
74
+ pt_only (bool): Test PyTorch format only (default: False).
75
+ hard_fail (bool): Throw an error on benchmark failure if True (default: False).
76
+
77
+ Returns:
78
+ None. Logs information about the benchmark results, including the format, size, mAP50-95, and inference time.
79
+
80
+ Notes:
81
+ Supported export formats and models include PyTorch, TorchScript, ONNX, OpenVINO, TensorRT, CoreML,
82
+ TensorFlow SavedModel, TensorFlow GraphDef, TensorFlow Lite, and TensorFlow Edge TPU. Edge TPU and TF.js
83
+ are unsupported.
84
+
85
+ Example:
86
+ ```python
87
+ $ python benchmarks.py --weights yolov5s.pt --img 640
88
+ ```
89
+
90
+ Usage:
91
+ Install required packages:
92
+ $ pip install -r requirements.txt coremltools onnx onnx-simplifier onnxruntime openvino-dev tensorflow-cpu # CPU support
93
+ $ pip install -r requirements.txt coremltools onnx onnx-simplifier onnxruntime-gpu openvino-dev tensorflow # GPU support
94
+ $ pip install -U nvidia-tensorrt --index-url https://pypi.ngc.nvidia.com # TensorRT
95
+
96
+ Run benchmarks:
97
+ $ python benchmarks.py --weights yolov5s.pt --img 640
98
+ """
99
+ y, t = [], time.time()
100
+ device = select_device(device)
101
+ model_type = type(attempt_load(weights, fuse=False)) # DetectionModel, SegmentationModel, etc.
102
+ for i, (name, f, suffix, cpu, gpu) in export.export_formats().iterrows(): # index, (name, file, suffix, CPU, GPU)
103
+ try:
104
+ assert i not in (9, 10), "inference not supported" # Edge TPU and TF.js are unsupported
105
+ assert i != 5 or platform.system() == "Darwin", "inference only supported on macOS>=10.13" # CoreML
106
+ if "cpu" in device.type:
107
+ assert cpu, "inference not supported on CPU"
108
+ if "cuda" in device.type:
109
+ assert gpu, "inference not supported on GPU"
110
+
111
+ # Export
112
+ if f == "-":
113
+ w = weights # PyTorch format
114
+ else:
115
+ w = export.run(
116
+ weights=weights, imgsz=[imgsz], include=[f], batch_size=batch_size, device=device, half=half
117
+ )[-1] # all others
118
+ assert suffix in str(w), "export failed"
119
+
120
+ # Validate
121
+ if model_type == SegmentationModel:
122
+ result = val_seg(data, w, batch_size, imgsz, plots=False, device=device, task="speed", half=half)
123
+ metric = result[0][7] # (box(p, r, map50, map), mask(p, r, map50, map), *loss(box, obj, cls))
124
+ else: # DetectionModel:
125
+ result = val_det(data, w, batch_size, imgsz, plots=False, device=device, task="speed", half=half)
126
+ metric = result[0][3] # (p, r, map50, map, *loss(box, obj, cls))
127
+ speed = result[2][1] # times (preprocess, inference, postprocess)
128
+ y.append([name, round(file_size(w), 1), round(metric, 4), round(speed, 2)]) # MB, mAP, t_inference
129
+ except Exception as e:
130
+ if hard_fail:
131
+ assert type(e) is AssertionError, f"Benchmark --hard-fail for {name}: {e}"
132
+ LOGGER.warning(f"WARNING ⚠️ Benchmark failure for {name}: {e}")
133
+ y.append([name, None, None, None]) # mAP, t_inference
134
+ if pt_only and i == 0:
135
+ break # break after PyTorch
136
+
137
+ # Print results
138
+ LOGGER.info("\n")
139
+ parse_opt()
140
+ notebook_init() # print system info
141
+ c = ["Format", "Size (MB)", "mAP50-95", "Inference time (ms)"] if map else ["Format", "Export", "", ""]
142
+ py = pd.DataFrame(y, columns=c)
143
+ LOGGER.info(f"\nBenchmarks complete ({time.time() - t:.2f}s)")
144
+ LOGGER.info(str(py if map else py.iloc[:, :2]))
145
+ if hard_fail and isinstance(hard_fail, str):
146
+ metrics = py["mAP50-95"].array # values to compare to floor
147
+ floor = eval(hard_fail) # minimum metric floor to pass, i.e. = 0.29 mAP for YOLOv5n
148
+ assert all(x > floor for x in metrics if pd.notna(x)), f"HARD FAIL: mAP50-95 < floor {floor}"
149
+ return py
150
+
151
+
152
+ def test(
153
+ weights=ROOT / "yolov5s.pt", # weights path
154
+ imgsz=640, # inference size (pixels)
155
+ batch_size=1, # batch size
156
+ data=ROOT / "data/coco128.yaml", # dataset.yaml path
157
+ device="", # cuda device, i.e. 0 or 0,1,2,3 or cpu
158
+ half=False, # use FP16 half-precision inference
159
+ test=False, # test exports only
160
+ pt_only=False, # test PyTorch only
161
+ hard_fail=False, # throw error on benchmark failure
162
+ ):
163
+ """
164
+ Run YOLOv5 export tests for all supported formats and log the results, including export statuses.
165
+
166
+ Args:
167
+ weights (Path | str): Path to the model weights file (.pt format). Default is 'ROOT / "yolov5s.pt"'.
168
+ imgsz (int): Inference image size (in pixels). Default is 640.
169
+ batch_size (int): Batch size for testing. Default is 1.
170
+ data (Path | str): Path to the dataset configuration file (.yaml format). Default is 'ROOT / "data/coco128.yaml"'.
171
+ device (str): Device for running the tests, can be 'cpu' or a specific CUDA device ('0', '0,1,2,3', etc.). Default is an empty string.
172
+ half (bool): Use FP16 half-precision for inference if True. Default is False.
173
+ test (bool): Test export formats only without running inference. Default is False.
174
+ pt_only (bool): Test only the PyTorch model if True. Default is False.
175
+ hard_fail (bool): Raise error on export or test failure if True. Default is False.
176
+
177
+ Returns:
178
+ pd.DataFrame: DataFrame containing the results of the export tests, including format names and export statuses.
179
+
180
+ Examples:
181
+ ```python
182
+ $ python benchmarks.py --weights yolov5s.pt --img 640
183
+ ```
184
+
185
+ Notes:
186
+ Supported export formats and models include PyTorch, TorchScript, ONNX, OpenVINO, TensorRT, CoreML, TensorFlow
187
+ SavedModel, TensorFlow GraphDef, TensorFlow Lite, and TensorFlow Edge TPU. Edge TPU and TF.js are unsupported.
188
+
189
+ Usage:
190
+ Install required packages:
191
+ $ pip install -r requirements.txt coremltools onnx onnx-simplifier onnxruntime openvino-dev tensorflow-cpu # CPU support
192
+ $ pip install -r requirements.txt coremltools onnx onnx-simplifier onnxruntime-gpu openvino-dev tensorflow # GPU support
193
+ $ pip install -U nvidia-tensorrt --index-url https://pypi.ngc.nvidia.com # TensorRT
194
+ Run export tests:
195
+ $ python benchmarks.py --weights yolov5s.pt --img 640
196
+ """
197
+ y, t = [], time.time()
198
+ device = select_device(device)
199
+ for i, (name, f, suffix, gpu) in export.export_formats().iterrows(): # index, (name, file, suffix, gpu-capable)
200
+ try:
201
+ w = (
202
+ weights
203
+ if f == "-"
204
+ else export.run(weights=weights, imgsz=[imgsz], include=[f], device=device, half=half)[-1]
205
+ ) # weights
206
+ assert suffix in str(w), "export failed"
207
+ y.append([name, True])
208
+ except Exception:
209
+ y.append([name, False]) # mAP, t_inference
210
+
211
+ # Print results
212
+ LOGGER.info("\n")
213
+ parse_opt()
214
+ notebook_init() # print system info
215
+ py = pd.DataFrame(y, columns=["Format", "Export"])
216
+ LOGGER.info(f"\nExports complete ({time.time() - t:.2f}s)")
217
+ LOGGER.info(str(py))
218
+ return py
219
+
220
+
221
+ def parse_opt():
222
+ """
223
+ Parses command-line arguments for YOLOv5 model inference configuration.
224
+
225
+ Args:
226
+ weights (str): The path to the weights file. Defaults to 'ROOT / "yolov5s.pt"'.
227
+ imgsz (int): Inference size in pixels. Defaults to 640.
228
+ batch_size (int): Batch size. Defaults to 1.
229
+ data (str): Path to the dataset YAML file. Defaults to 'ROOT / "data/coco128.yaml"'.
230
+ device (str): CUDA device, e.g., '0' or '0,1,2,3' or 'cpu'. Defaults to an empty string (auto-select).
231
+ half (bool): Use FP16 half-precision inference. This is a flag and defaults to False.
232
+ test (bool): Test exports only. This is a flag and defaults to False.
233
+ pt_only (bool): Test PyTorch only. This is a flag and defaults to False.
234
+ hard_fail (bool | str): Throw an error on benchmark failure. Can be a boolean or a string representing a minimum
235
+ metric floor, e.g., '0.29'. Defaults to False.
236
+
237
+ Returns:
238
+ argparse.Namespace: Parsed command-line arguments encapsulated in an argparse Namespace object.
239
+
240
+ Notes:
241
+ The function modifies the 'opt.data' by checking and validating the YAML path using 'check_yaml()'.
242
+ The parsed arguments are printed for reference using 'print_args()'.
243
+ """
244
+ parser = argparse.ArgumentParser()
245
+ parser.add_argument("--weights", type=str, default=ROOT / "yolov5s.pt", help="weights path")
246
+ parser.add_argument("--imgsz", "--img", "--img-size", type=int, default=640, help="inference size (pixels)")
247
+ parser.add_argument("--batch-size", type=int, default=1, help="batch size")
248
+ parser.add_argument("--data", type=str, default=ROOT / "data/coco128.yaml", help="dataset.yaml path")
249
+ parser.add_argument("--device", default="", help="cuda device, i.e. 0 or 0,1,2,3 or cpu")
250
+ parser.add_argument("--half", action="store_true", help="use FP16 half-precision inference")
251
+ parser.add_argument("--test", action="store_true", help="test exports only")
252
+ parser.add_argument("--pt-only", action="store_true", help="test PyTorch only")
253
+ parser.add_argument("--hard-fail", nargs="?", const=True, default=False, help="Exception on error or < min metric")
254
+ opt = parser.parse_args()
255
+ opt.data = check_yaml(opt.data) # check YAML
256
+ print_args(vars(opt))
257
+ return opt
258
+
259
+
260
+ def main(opt):
261
+ """
262
+ Executes YOLOv5 benchmark tests or main training/inference routines based on the provided command-line arguments.
263
+
264
+ Args:
265
+ opt (argparse.Namespace): Parsed command-line arguments including options for weights, image size, batch size, data
266
+ configuration, device, and other flags for inference settings.
267
+
268
+ Returns:
269
+ None: This function does not return any value. It leverages side-effects such as logging and running benchmarks.
270
+
271
+ Example:
272
+ ```python
273
+ if __name__ == "__main__":
274
+ opt = parse_opt()
275
+ main(opt)
276
+ ```
277
+
278
+ Notes:
279
+ - For a complete list of supported export formats and their respective requirements, refer to the
280
+ [Ultralytics YOLOv5 Export Formats](https://github.com/ultralytics/yolov5#export-formats).
281
+ - Ensure that you have installed all necessary dependencies by following the installation instructions detailed in
282
+ the [main repository](https://github.com/ultralytics/yolov5#installation).
283
+
284
+ ```shell
285
+ # Running benchmarks on default weights and image size
286
+ $ python benchmarks.py --weights yolov5s.pt --img 640
287
+ ```
288
+ """
289
+ test(**vars(opt)) if opt.test else run(**vars(opt))
290
+
291
+
292
+ if __name__ == "__main__":
293
+ opt = parse_opt()
294
+ main(opt)
yolov5/classify/predict.py ADDED
@@ -0,0 +1,241 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ """
3
+ Run YOLOv5 classification inference on images, videos, directories, globs, YouTube, webcam, streams, etc.
4
+
5
+ Usage - sources:
6
+ $ python classify/predict.py --weights yolov5s-cls.pt --source 0 # webcam
7
+ img.jpg # image
8
+ vid.mp4 # video
9
+ screen # screenshot
10
+ path/ # directory
11
+ list.txt # list of images
12
+ list.streams # list of streams
13
+ 'path/*.jpg' # glob
14
+ 'https://youtu.be/LNwODJXcvt4' # YouTube
15
+ 'rtsp://example.com/media.mp4' # RTSP, RTMP, HTTP stream
16
+
17
+ Usage - formats:
18
+ $ python classify/predict.py --weights yolov5s-cls.pt # PyTorch
19
+ yolov5s-cls.torchscript # TorchScript
20
+ yolov5s-cls.onnx # ONNX Runtime or OpenCV DNN with --dnn
21
+ yolov5s-cls_openvino_model # OpenVINO
22
+ yolov5s-cls.engine # TensorRT
23
+ yolov5s-cls.mlmodel # CoreML (macOS-only)
24
+ yolov5s-cls_saved_model # TensorFlow SavedModel
25
+ yolov5s-cls.pb # TensorFlow GraphDef
26
+ yolov5s-cls.tflite # TensorFlow Lite
27
+ yolov5s-cls_edgetpu.tflite # TensorFlow Edge TPU
28
+ yolov5s-cls_paddle_model # PaddlePaddle
29
+ """
30
+
31
+ import argparse
32
+ import os
33
+ import platform
34
+ import sys
35
+ from pathlib import Path
36
+
37
+ import torch
38
+ import torch.nn.functional as F
39
+
40
+ FILE = Path(__file__).resolve()
41
+ ROOT = FILE.parents[1] # YOLOv5 root directory
42
+ if str(ROOT) not in sys.path:
43
+ sys.path.append(str(ROOT)) # add ROOT to PATH
44
+ ROOT = Path(os.path.relpath(ROOT, Path.cwd())) # relative
45
+
46
+ from ultralytics.utils.plotting import Annotator
47
+
48
+ from models.common import DetectMultiBackend
49
+ from utils.augmentations import classify_transforms
50
+ from utils.dataloaders import IMG_FORMATS, VID_FORMATS, LoadImages, LoadScreenshots, LoadStreams
51
+ from utils.general import (
52
+ LOGGER,
53
+ Profile,
54
+ check_file,
55
+ check_img_size,
56
+ check_imshow,
57
+ check_requirements,
58
+ colorstr,
59
+ cv2,
60
+ increment_path,
61
+ print_args,
62
+ strip_optimizer,
63
+ )
64
+ from utils.torch_utils import select_device, smart_inference_mode
65
+
66
+
67
+ @smart_inference_mode()
68
+ def run(
69
+ weights=ROOT / "yolov5s-cls.pt", # model.pt path(s)
70
+ source=ROOT / "data/images", # file/dir/URL/glob/screen/0(webcam)
71
+ data=ROOT / "data/coco128.yaml", # dataset.yaml path
72
+ imgsz=(224, 224), # inference size (height, width)
73
+ device="", # cuda device, i.e. 0 or 0,1,2,3 or cpu
74
+ view_img=False, # show results
75
+ save_txt=False, # save results to *.txt
76
+ nosave=False, # do not save images/videos
77
+ augment=False, # augmented inference
78
+ visualize=False, # visualize features
79
+ update=False, # update all models
80
+ project=ROOT / "runs/predict-cls", # save results to project/name
81
+ name="exp", # save results to project/name
82
+ exist_ok=False, # existing project/name ok, do not increment
83
+ half=False, # use FP16 half-precision inference
84
+ dnn=False, # use OpenCV DNN for ONNX inference
85
+ vid_stride=1, # video frame-rate stride
86
+ ):
87
+ """Conducts YOLOv5 classification inference on diverse input sources and saves results."""
88
+ source = str(source)
89
+ save_img = not nosave and not source.endswith(".txt") # save inference images
90
+ is_file = Path(source).suffix[1:] in (IMG_FORMATS + VID_FORMATS)
91
+ is_url = source.lower().startswith(("rtsp://", "rtmp://", "http://", "https://"))
92
+ webcam = source.isnumeric() or source.endswith(".streams") or (is_url and not is_file)
93
+ screenshot = source.lower().startswith("screen")
94
+ if is_url and is_file:
95
+ source = check_file(source) # download
96
+
97
+ # Directories
98
+ save_dir = increment_path(Path(project) / name, exist_ok=exist_ok) # increment run
99
+ (save_dir / "labels" if save_txt else save_dir).mkdir(parents=True, exist_ok=True) # make dir
100
+
101
+ # Load model
102
+ device = select_device(device)
103
+ model = DetectMultiBackend(weights, device=device, dnn=dnn, data=data, fp16=half)
104
+ stride, names, pt = model.stride, model.names, model.pt
105
+ imgsz = check_img_size(imgsz, s=stride) # check image size
106
+
107
+ # Dataloader
108
+ bs = 1 # batch_size
109
+ if webcam:
110
+ view_img = check_imshow(warn=True)
111
+ dataset = LoadStreams(source, img_size=imgsz, transforms=classify_transforms(imgsz[0]), vid_stride=vid_stride)
112
+ bs = len(dataset)
113
+ elif screenshot:
114
+ dataset = LoadScreenshots(source, img_size=imgsz, stride=stride, auto=pt)
115
+ else:
116
+ dataset = LoadImages(source, img_size=imgsz, transforms=classify_transforms(imgsz[0]), vid_stride=vid_stride)
117
+ vid_path, vid_writer = [None] * bs, [None] * bs
118
+
119
+ # Run inference
120
+ model.warmup(imgsz=(1 if pt else bs, 3, *imgsz)) # warmup
121
+ seen, windows, dt = 0, [], (Profile(device=device), Profile(device=device), Profile(device=device))
122
+ for path, im, im0s, vid_cap, s in dataset:
123
+ with dt[0]:
124
+ im = torch.Tensor(im).to(model.device)
125
+ im = im.half() if model.fp16 else im.float() # uint8 to fp16/32
126
+ if len(im.shape) == 3:
127
+ im = im[None] # expand for batch dim
128
+
129
+ # Inference
130
+ with dt[1]:
131
+ results = model(im)
132
+
133
+ # Post-process
134
+ with dt[2]:
135
+ pred = F.softmax(results, dim=1) # probabilities
136
+
137
+ # Process predictions
138
+ for i, prob in enumerate(pred): # per image
139
+ seen += 1
140
+ if webcam: # batch_size >= 1
141
+ p, im0, frame = path[i], im0s[i].copy(), dataset.count
142
+ s += f"{i}: "
143
+ else:
144
+ p, im0, frame = path, im0s.copy(), getattr(dataset, "frame", 0)
145
+
146
+ p = Path(p) # to Path
147
+ save_path = str(save_dir / p.name) # im.jpg
148
+ txt_path = str(save_dir / "labels" / p.stem) + ("" if dataset.mode == "image" else f"_{frame}") # im.txt
149
+
150
+ s += "{:g}x{:g} ".format(*im.shape[2:]) # print string
151
+ annotator = Annotator(im0, example=str(names), pil=True)
152
+
153
+ # Print results
154
+ top5i = prob.argsort(0, descending=True)[:5].tolist() # top 5 indices
155
+ s += f"{', '.join(f'{names[j]} {prob[j]:.2f}' for j in top5i)}, "
156
+
157
+ # Write results
158
+ text = "\n".join(f"{prob[j]:.2f} {names[j]}" for j in top5i)
159
+ if save_img or view_img: # Add bbox to image
160
+ annotator.text([32, 32], text, txt_color=(255, 255, 255))
161
+ if save_txt: # Write to file
162
+ with open(f"{txt_path}.txt", "a") as f:
163
+ f.write(text + "\n")
164
+
165
+ # Stream results
166
+ im0 = annotator.result()
167
+ if view_img:
168
+ if platform.system() == "Linux" and p not in windows:
169
+ windows.append(p)
170
+ cv2.namedWindow(str(p), cv2.WINDOW_NORMAL | cv2.WINDOW_KEEPRATIO) # allow window resize (Linux)
171
+ cv2.resizeWindow(str(p), im0.shape[1], im0.shape[0])
172
+ cv2.imshow(str(p), im0)
173
+ cv2.waitKey(1) # 1 millisecond
174
+
175
+ # Save results (image with detections)
176
+ if save_img:
177
+ if dataset.mode == "image":
178
+ cv2.imwrite(save_path, im0)
179
+ else: # 'video' or 'stream'
180
+ if vid_path[i] != save_path: # new video
181
+ vid_path[i] = save_path
182
+ if isinstance(vid_writer[i], cv2.VideoWriter):
183
+ vid_writer[i].release() # release previous video writer
184
+ if vid_cap: # video
185
+ fps = vid_cap.get(cv2.CAP_PROP_FPS)
186
+ w = int(vid_cap.get(cv2.CAP_PROP_FRAME_WIDTH))
187
+ h = int(vid_cap.get(cv2.CAP_PROP_FRAME_HEIGHT))
188
+ else: # stream
189
+ fps, w, h = 30, im0.shape[1], im0.shape[0]
190
+ save_path = str(Path(save_path).with_suffix(".mp4")) # force *.mp4 suffix on results videos
191
+ vid_writer[i] = cv2.VideoWriter(save_path, cv2.VideoWriter_fourcc(*"mp4v"), fps, (w, h))
192
+ vid_writer[i].write(im0)
193
+
194
+ # Print time (inference-only)
195
+ LOGGER.info(f"{s}{dt[1].dt * 1E3:.1f}ms")
196
+
197
+ # Print results
198
+ t = tuple(x.t / seen * 1e3 for x in dt) # speeds per image
199
+ LOGGER.info(f"Speed: %.1fms pre-process, %.1fms inference, %.1fms NMS per image at shape {(1, 3, *imgsz)}" % t)
200
+ if save_txt or save_img:
201
+ s = f"\n{len(list(save_dir.glob('labels/*.txt')))} labels saved to {save_dir / 'labels'}" if save_txt else ""
202
+ LOGGER.info(f"Results saved to {colorstr('bold', save_dir)}{s}")
203
+ if update:
204
+ strip_optimizer(weights[0]) # update model (to fix SourceChangeWarning)
205
+
206
+
207
+ def parse_opt():
208
+ """Parses command line arguments for YOLOv5 inference settings including model, source, device, and image size."""
209
+ parser = argparse.ArgumentParser()
210
+ parser.add_argument("--weights", nargs="+", type=str, default=ROOT / "yolov5s-cls.pt", help="model path(s)")
211
+ parser.add_argument("--source", type=str, default=ROOT / "data/images", help="file/dir/URL/glob/screen/0(webcam)")
212
+ parser.add_argument("--data", type=str, default=ROOT / "data/coco128.yaml", help="(optional) dataset.yaml path")
213
+ parser.add_argument("--imgsz", "--img", "--img-size", nargs="+", type=int, default=[224], help="inference size h,w")
214
+ parser.add_argument("--device", default="", help="cuda device, i.e. 0 or 0,1,2,3 or cpu")
215
+ parser.add_argument("--view-img", action="store_true", help="show results")
216
+ parser.add_argument("--save-txt", action="store_true", help="save results to *.txt")
217
+ parser.add_argument("--nosave", action="store_true", help="do not save images/videos")
218
+ parser.add_argument("--augment", action="store_true", help="augmented inference")
219
+ parser.add_argument("--visualize", action="store_true", help="visualize features")
220
+ parser.add_argument("--update", action="store_true", help="update all models")
221
+ parser.add_argument("--project", default=ROOT / "runs/predict-cls", help="save results to project/name")
222
+ parser.add_argument("--name", default="exp", help="save results to project/name")
223
+ parser.add_argument("--exist-ok", action="store_true", help="existing project/name ok, do not increment")
224
+ parser.add_argument("--half", action="store_true", help="use FP16 half-precision inference")
225
+ parser.add_argument("--dnn", action="store_true", help="use OpenCV DNN for ONNX inference")
226
+ parser.add_argument("--vid-stride", type=int, default=1, help="video frame-rate stride")
227
+ opt = parser.parse_args()
228
+ opt.imgsz *= 2 if len(opt.imgsz) == 1 else 1 # expand
229
+ print_args(vars(opt))
230
+ return opt
231
+
232
+
233
+ def main(opt):
234
+ """Executes YOLOv5 model inference with options for ONNX DNN and video frame-rate stride adjustments."""
235
+ check_requirements(ROOT / "requirements.txt", exclude=("tensorboard", "thop"))
236
+ run(**vars(opt))
237
+
238
+
239
+ if __name__ == "__main__":
240
+ opt = parse_opt()
241
+ main(opt)
yolov5/classify/train.py ADDED
@@ -0,0 +1,382 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ """
3
+ Train a YOLOv5 classifier model on a classification dataset.
4
+
5
+ Usage - Single-GPU training:
6
+ $ python classify/train.py --model yolov5s-cls.pt --data imagenette160 --epochs 5 --img 224
7
+
8
+ Usage - Multi-GPU DDP training:
9
+ $ python -m torch.distributed.run --nproc_per_node 4 --master_port 2022 classify/train.py --model yolov5s-cls.pt --data imagenet --epochs 5 --img 224 --device 0,1,2,3
10
+
11
+ Datasets: --data mnist, fashion-mnist, cifar10, cifar100, imagenette, imagewoof, imagenet, or 'path/to/data'
12
+ YOLOv5-cls models: --model yolov5n-cls.pt, yolov5s-cls.pt, yolov5m-cls.pt, yolov5l-cls.pt, yolov5x-cls.pt
13
+ Torchvision models: --model resnet50, efficientnet_b0, etc. See https://pytorch.org/vision/stable/models.html
14
+ """
15
+
16
+ import argparse
17
+ import os
18
+ import subprocess
19
+ import sys
20
+ import time
21
+ from copy import deepcopy
22
+ from datetime import datetime
23
+ from pathlib import Path
24
+
25
+ import torch
26
+ import torch.distributed as dist
27
+ import torch.hub as hub
28
+ import torch.optim.lr_scheduler as lr_scheduler
29
+ import torchvision
30
+ from torch.cuda import amp
31
+ from tqdm import tqdm
32
+
33
+ FILE = Path(__file__).resolve()
34
+ ROOT = FILE.parents[1] # YOLOv5 root directory
35
+ if str(ROOT) not in sys.path:
36
+ sys.path.append(str(ROOT)) # add ROOT to PATH
37
+ ROOT = Path(os.path.relpath(ROOT, Path.cwd())) # relative
38
+
39
+ from classify import val as validate
40
+ from models.experimental import attempt_load
41
+ from models.yolo import ClassificationModel, DetectionModel
42
+ from utils.dataloaders import create_classification_dataloader
43
+ from utils.general import (
44
+ DATASETS_DIR,
45
+ LOGGER,
46
+ TQDM_BAR_FORMAT,
47
+ WorkingDirectory,
48
+ check_git_info,
49
+ check_git_status,
50
+ check_requirements,
51
+ colorstr,
52
+ download,
53
+ increment_path,
54
+ init_seeds,
55
+ print_args,
56
+ yaml_save,
57
+ )
58
+ from utils.loggers import GenericLogger
59
+ from utils.plots import imshow_cls
60
+ from utils.torch_utils import (
61
+ ModelEMA,
62
+ de_parallel,
63
+ model_info,
64
+ reshape_classifier_output,
65
+ select_device,
66
+ smart_DDP,
67
+ smart_optimizer,
68
+ smartCrossEntropyLoss,
69
+ torch_distributed_zero_first,
70
+ )
71
+
72
+ LOCAL_RANK = int(os.getenv("LOCAL_RANK", -1)) # https://pytorch.org/docs/stable/elastic/run.html
73
+ RANK = int(os.getenv("RANK", -1))
74
+ WORLD_SIZE = int(os.getenv("WORLD_SIZE", 1))
75
+ GIT_INFO = check_git_info()
76
+
77
+
78
+ def train(opt, device):
79
+ """Trains a YOLOv5 model, managing datasets, model optimization, logging, and saving checkpoints."""
80
+ init_seeds(opt.seed + 1 + RANK, deterministic=True)
81
+ save_dir, data, bs, epochs, nw, imgsz, pretrained = (
82
+ opt.save_dir,
83
+ Path(opt.data),
84
+ opt.batch_size,
85
+ opt.epochs,
86
+ min(os.cpu_count() - 1, opt.workers),
87
+ opt.imgsz,
88
+ str(opt.pretrained).lower() == "true",
89
+ )
90
+ cuda = device.type != "cpu"
91
+
92
+ # Directories
93
+ wdir = save_dir / "weights"
94
+ wdir.mkdir(parents=True, exist_ok=True) # make dir
95
+ last, best = wdir / "last.pt", wdir / "best.pt"
96
+
97
+ # Save run settings
98
+ yaml_save(save_dir / "opt.yaml", vars(opt))
99
+
100
+ # Logger
101
+ logger = GenericLogger(opt=opt, console_logger=LOGGER) if RANK in {-1, 0} else None
102
+
103
+ # Download Dataset
104
+ with torch_distributed_zero_first(LOCAL_RANK), WorkingDirectory(ROOT):
105
+ data_dir = data if data.is_dir() else (DATASETS_DIR / data)
106
+ if not data_dir.is_dir():
107
+ LOGGER.info(f"\nDataset not found ⚠️, missing path {data_dir}, attempting download...")
108
+ t = time.time()
109
+ if str(data) == "imagenet":
110
+ subprocess.run(["bash", str(ROOT / "data/scripts/get_imagenet.sh")], shell=True, check=True)
111
+ else:
112
+ url = f"https://github.com/ultralytics/assets/releases/download/v0.0.0/{data}.zip"
113
+ download(url, dir=data_dir.parent)
114
+ s = f"Dataset download success ✅ ({time.time() - t:.1f}s), saved to {colorstr('bold', data_dir)}\n"
115
+ LOGGER.info(s)
116
+
117
+ # Dataloaders
118
+ nc = len([x for x in (data_dir / "train").glob("*") if x.is_dir()]) # number of classes
119
+ trainloader = create_classification_dataloader(
120
+ path=data_dir / "train",
121
+ imgsz=imgsz,
122
+ batch_size=bs // WORLD_SIZE,
123
+ augment=True,
124
+ cache=opt.cache,
125
+ rank=LOCAL_RANK,
126
+ workers=nw,
127
+ )
128
+
129
+ test_dir = data_dir / "test" if (data_dir / "test").exists() else data_dir / "val" # data/test or data/val
130
+ if RANK in {-1, 0}:
131
+ testloader = create_classification_dataloader(
132
+ path=test_dir,
133
+ imgsz=imgsz,
134
+ batch_size=bs // WORLD_SIZE * 2,
135
+ augment=False,
136
+ cache=opt.cache,
137
+ rank=-1,
138
+ workers=nw,
139
+ )
140
+
141
+ # Model
142
+ with torch_distributed_zero_first(LOCAL_RANK), WorkingDirectory(ROOT):
143
+ if Path(opt.model).is_file() or opt.model.endswith(".pt"):
144
+ model = attempt_load(opt.model, device="cpu", fuse=False)
145
+ elif opt.model in torchvision.models.__dict__: # TorchVision models i.e. resnet50, efficientnet_b0
146
+ model = torchvision.models.__dict__[opt.model](weights="IMAGENET1K_V1" if pretrained else None)
147
+ else:
148
+ m = hub.list("ultralytics/yolov5") # + hub.list('pytorch/vision') # models
149
+ raise ModuleNotFoundError(f"--model {opt.model} not found. Available models are: \n" + "\n".join(m))
150
+ if isinstance(model, DetectionModel):
151
+ LOGGER.warning("WARNING ⚠️ pass YOLOv5 classifier model with '-cls' suffix, i.e. '--model yolov5s-cls.pt'")
152
+ model = ClassificationModel(model=model, nc=nc, cutoff=opt.cutoff or 10) # convert to classification model
153
+ reshape_classifier_output(model, nc) # update class count
154
+ for m in model.modules():
155
+ if not pretrained and hasattr(m, "reset_parameters"):
156
+ m.reset_parameters()
157
+ if isinstance(m, torch.nn.Dropout) and opt.dropout is not None:
158
+ m.p = opt.dropout # set dropout
159
+ for p in model.parameters():
160
+ p.requires_grad = True # for training
161
+ model = model.to(device)
162
+
163
+ # Info
164
+ if RANK in {-1, 0}:
165
+ model.names = trainloader.dataset.classes # attach class names
166
+ model.transforms = testloader.dataset.torch_transforms # attach inference transforms
167
+ model_info(model)
168
+ if opt.verbose:
169
+ LOGGER.info(model)
170
+ images, labels = next(iter(trainloader))
171
+ file = imshow_cls(images[:25], labels[:25], names=model.names, f=save_dir / "train_images.jpg")
172
+ logger.log_images(file, name="Train Examples")
173
+ logger.log_graph(model, imgsz) # log model
174
+
175
+ # Optimizer
176
+ optimizer = smart_optimizer(model, opt.optimizer, opt.lr0, momentum=0.9, decay=opt.decay)
177
+
178
+ # Scheduler
179
+ lrf = 0.01 # final lr (fraction of lr0)
180
+
181
+ # lf = lambda x: ((1 + math.cos(x * math.pi / epochs)) / 2) * (1 - lrf) + lrf # cosine
182
+ def lf(x):
183
+ """Linear learning rate scheduler function, scaling learning rate from initial value to `lrf` over `epochs`."""
184
+ return (1 - x / epochs) * (1 - lrf) + lrf # linear
185
+
186
+ scheduler = lr_scheduler.LambdaLR(optimizer, lr_lambda=lf)
187
+ # scheduler = lr_scheduler.OneCycleLR(optimizer, max_lr=lr0, total_steps=epochs, pct_start=0.1,
188
+ # final_div_factor=1 / 25 / lrf)
189
+
190
+ # EMA
191
+ ema = ModelEMA(model) if RANK in {-1, 0} else None
192
+
193
+ # DDP mode
194
+ if cuda and RANK != -1:
195
+ model = smart_DDP(model)
196
+
197
+ # Train
198
+ t0 = time.time()
199
+ criterion = smartCrossEntropyLoss(label_smoothing=opt.label_smoothing) # loss function
200
+ best_fitness = 0.0
201
+ scaler = amp.GradScaler(enabled=cuda)
202
+ val = test_dir.stem # 'val' or 'test'
203
+ LOGGER.info(
204
+ f'Image sizes {imgsz} train, {imgsz} test\n'
205
+ f'Using {nw * WORLD_SIZE} dataloader workers\n'
206
+ f"Logging results to {colorstr('bold', save_dir)}\n"
207
+ f'Starting {opt.model} training on {data} dataset with {nc} classes for {epochs} epochs...\n\n'
208
+ f"{'Epoch':>10}{'GPU_mem':>10}{'train_loss':>12}{f'{val}_loss':>12}{'top1_acc':>12}{'top5_acc':>12}"
209
+ )
210
+ for epoch in range(epochs): # loop over the dataset multiple times
211
+ tloss, vloss, fitness = 0.0, 0.0, 0.0 # train loss, val loss, fitness
212
+ model.train()
213
+ if RANK != -1:
214
+ trainloader.sampler.set_epoch(epoch)
215
+ pbar = enumerate(trainloader)
216
+ if RANK in {-1, 0}:
217
+ pbar = tqdm(enumerate(trainloader), total=len(trainloader), bar_format=TQDM_BAR_FORMAT)
218
+ for i, (images, labels) in pbar: # progress bar
219
+ images, labels = images.to(device, non_blocking=True), labels.to(device)
220
+
221
+ # Forward
222
+ with amp.autocast(enabled=cuda): # stability issues when enabled
223
+ loss = criterion(model(images), labels)
224
+
225
+ # Backward
226
+ scaler.scale(loss).backward()
227
+
228
+ # Optimize
229
+ scaler.unscale_(optimizer) # unscale gradients
230
+ torch.nn.utils.clip_grad_norm_(model.parameters(), max_norm=10.0) # clip gradients
231
+ scaler.step(optimizer)
232
+ scaler.update()
233
+ optimizer.zero_grad()
234
+ if ema:
235
+ ema.update(model)
236
+
237
+ if RANK in {-1, 0}:
238
+ # Print
239
+ tloss = (tloss * i + loss.item()) / (i + 1) # update mean losses
240
+ mem = "%.3gG" % (torch.cuda.memory_reserved() / 1e9 if torch.cuda.is_available() else 0) # (GB)
241
+ pbar.desc = f"{f'{epoch + 1}/{epochs}':>10}{mem:>10}{tloss:>12.3g}" + " " * 36
242
+
243
+ # Test
244
+ if i == len(pbar) - 1: # last batch
245
+ top1, top5, vloss = validate.run(
246
+ model=ema.ema, dataloader=testloader, criterion=criterion, pbar=pbar
247
+ ) # test accuracy, loss
248
+ fitness = top1 # define fitness as top1 accuracy
249
+
250
+ # Scheduler
251
+ scheduler.step()
252
+
253
+ # Log metrics
254
+ if RANK in {-1, 0}:
255
+ # Best fitness
256
+ if fitness > best_fitness:
257
+ best_fitness = fitness
258
+
259
+ # Log
260
+ metrics = {
261
+ "train/loss": tloss,
262
+ f"{val}/loss": vloss,
263
+ "metrics/accuracy_top1": top1,
264
+ "metrics/accuracy_top5": top5,
265
+ "lr/0": optimizer.param_groups[0]["lr"],
266
+ } # learning rate
267
+ logger.log_metrics(metrics, epoch)
268
+
269
+ # Save model
270
+ final_epoch = epoch + 1 == epochs
271
+ if (not opt.nosave) or final_epoch:
272
+ ckpt = {
273
+ "epoch": epoch,
274
+ "best_fitness": best_fitness,
275
+ "model": deepcopy(ema.ema).half(), # deepcopy(de_parallel(model)).half(),
276
+ "ema": None, # deepcopy(ema.ema).half(),
277
+ "updates": ema.updates,
278
+ "optimizer": None, # optimizer.state_dict(),
279
+ "opt": vars(opt),
280
+ "git": GIT_INFO, # {remote, branch, commit} if a git repo
281
+ "date": datetime.now().isoformat(),
282
+ }
283
+
284
+ # Save last, best and delete
285
+ torch.save(ckpt, last)
286
+ if best_fitness == fitness:
287
+ torch.save(ckpt, best)
288
+ del ckpt
289
+
290
+ # Train complete
291
+ if RANK in {-1, 0} and final_epoch:
292
+ LOGGER.info(
293
+ f'\nTraining complete ({(time.time() - t0) / 3600:.3f} hours)'
294
+ f"\nResults saved to {colorstr('bold', save_dir)}"
295
+ f'\nPredict: python classify/predict.py --weights {best} --source im.jpg'
296
+ f'\nValidate: python classify/val.py --weights {best} --data {data_dir}'
297
+ f'\nExport: python export.py --weights {best} --include onnx'
298
+ f"\nPyTorch Hub: model = torch.hub.load('ultralytics/yolov5', 'custom', '{best}')"
299
+ f'\nVisualize: https://netron.app\n'
300
+ )
301
+
302
+ # Plot examples
303
+ images, labels = (x[:25] for x in next(iter(testloader))) # first 25 images and labels
304
+ pred = torch.max(ema.ema(images.to(device)), 1)[1]
305
+ file = imshow_cls(images, labels, pred, de_parallel(model).names, verbose=False, f=save_dir / "test_images.jpg")
306
+
307
+ # Log results
308
+ meta = {"epochs": epochs, "top1_acc": best_fitness, "date": datetime.now().isoformat()}
309
+ logger.log_images(file, name="Test Examples (true-predicted)", epoch=epoch)
310
+ logger.log_model(best, epochs, metadata=meta)
311
+
312
+
313
+ def parse_opt(known=False):
314
+ """Parses command line arguments for YOLOv5 training including model path, dataset, epochs, and more, returning
315
+ parsed arguments.
316
+ """
317
+ parser = argparse.ArgumentParser()
318
+ parser.add_argument("--model", type=str, default="yolov5s-cls.pt", help="initial weights path")
319
+ parser.add_argument("--data", type=str, default="imagenette160", help="cifar10, cifar100, mnist, imagenet, ...")
320
+ parser.add_argument("--epochs", type=int, default=10, help="total training epochs")
321
+ parser.add_argument("--batch-size", type=int, default=64, help="total batch size for all GPUs")
322
+ parser.add_argument("--imgsz", "--img", "--img-size", type=int, default=224, help="train, val image size (pixels)")
323
+ parser.add_argument("--nosave", action="store_true", help="only save final checkpoint")
324
+ parser.add_argument("--cache", type=str, nargs="?", const="ram", help='--cache images in "ram" (default) or "disk"')
325
+ parser.add_argument("--device", default="", help="cuda device, i.e. 0 or 0,1,2,3 or cpu")
326
+ parser.add_argument("--workers", type=int, default=8, help="max dataloader workers (per RANK in DDP mode)")
327
+ parser.add_argument("--project", default=ROOT / "runs/train-cls", help="save to project/name")
328
+ parser.add_argument("--name", default="exp", help="save to project/name")
329
+ parser.add_argument("--exist-ok", action="store_true", help="existing project/name ok, do not increment")
330
+ parser.add_argument("--pretrained", nargs="?", const=True, default=True, help="start from i.e. --pretrained False")
331
+ parser.add_argument("--optimizer", choices=["SGD", "Adam", "AdamW", "RMSProp"], default="Adam", help="optimizer")
332
+ parser.add_argument("--lr0", type=float, default=0.001, help="initial learning rate")
333
+ parser.add_argument("--decay", type=float, default=5e-5, help="weight decay")
334
+ parser.add_argument("--label-smoothing", type=float, default=0.1, help="Label smoothing epsilon")
335
+ parser.add_argument("--cutoff", type=int, default=None, help="Model layer cutoff index for Classify() head")
336
+ parser.add_argument("--dropout", type=float, default=None, help="Dropout (fraction)")
337
+ parser.add_argument("--verbose", action="store_true", help="Verbose mode")
338
+ parser.add_argument("--seed", type=int, default=0, help="Global training seed")
339
+ parser.add_argument("--local_rank", type=int, default=-1, help="Automatic DDP Multi-GPU argument, do not modify")
340
+ return parser.parse_known_args()[0] if known else parser.parse_args()
341
+
342
+
343
+ def main(opt):
344
+ """Executes YOLOv5 training with given options, handling device setup and DDP mode; includes pre-training checks."""
345
+ if RANK in {-1, 0}:
346
+ print_args(vars(opt))
347
+ check_git_status()
348
+ check_requirements(ROOT / "requirements.txt")
349
+
350
+ # DDP mode
351
+ device = select_device(opt.device, batch_size=opt.batch_size)
352
+ if LOCAL_RANK != -1:
353
+ assert opt.batch_size != -1, "AutoBatch is coming soon for classification, please pass a valid --batch-size"
354
+ assert opt.batch_size % WORLD_SIZE == 0, f"--batch-size {opt.batch_size} must be multiple of WORLD_SIZE"
355
+ assert torch.cuda.device_count() > LOCAL_RANK, "insufficient CUDA devices for DDP command"
356
+ torch.cuda.set_device(LOCAL_RANK)
357
+ device = torch.device("cuda", LOCAL_RANK)
358
+ dist.init_process_group(backend="nccl" if dist.is_nccl_available() else "gloo")
359
+
360
+ # Parameters
361
+ opt.save_dir = increment_path(Path(opt.project) / opt.name, exist_ok=opt.exist_ok) # increment run
362
+
363
+ # Train
364
+ train(opt, device)
365
+
366
+
367
+ def run(**kwargs):
368
+ """
369
+ Executes YOLOv5 model training or inference with specified parameters, returning updated options.
370
+
371
+ Example: from yolov5 import classify; classify.train.run(data=mnist, imgsz=320, model='yolov5m')
372
+ """
373
+ opt = parse_opt(True)
374
+ for k, v in kwargs.items():
375
+ setattr(opt, k, v)
376
+ main(opt)
377
+ return opt
378
+
379
+
380
+ if __name__ == "__main__":
381
+ opt = parse_opt()
382
+ main(opt)
yolov5/classify/tutorial.ipynb ADDED
@@ -0,0 +1,1488 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "metadata": {
6
+ "id": "t6MPjfT5NrKQ"
7
+ },
8
+ "source": [
9
+ "<div align=\"center\">\n",
10
+ "\n",
11
+ " <a href=\"https://ultralytics.com/yolov5\" target=\"_blank\">\n",
12
+ " <img width=\"1024\", src=\"https://raw.githubusercontent.com/ultralytics/assets/main/yolov5/v70/splash.png\"></a>\n",
13
+ "\n",
14
+ "\n",
15
+ "<br>\n",
16
+ " <a href=\"https://bit.ly/yolov5-paperspace-notebook\"><img src=\"https://assets.paperspace.io/img/gradient-badge.svg\" alt=\"Run on Gradient\"></a>\n",
17
+ " <a href=\"https://colab.research.google.com/github/ultralytics/yolov5/blob/master/classify/tutorial.ipynb\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"></a>\n",
18
+ " <a href=\"https://www.kaggle.com/ultralytics/yolov5\"><img src=\"https://kaggle.com/static/images/open-in-kaggle.svg\" alt=\"Open In Kaggle\"></a>\n",
19
+ "<br>\n",
20
+ "\n",
21
+ "This <a href=\"https://github.com/ultralytics/yolov5\">YOLOv5</a> 🚀 notebook by <a href=\"https://ultralytics.com\">Ultralytics</a> presents simple train, validate and predict examples to help start your AI adventure.<br>See <a href=\"https://github.com/ultralytics/yolov5/issues/new/choose\">GitHub</a> for community support or <a href=\"https://ultralytics.com/contact\">contact us</a> for professional support.\n",
22
+ "\n",
23
+ "</div>"
24
+ ]
25
+ },
26
+ {
27
+ "cell_type": "markdown",
28
+ "metadata": {
29
+ "id": "7mGmQbAO5pQb"
30
+ },
31
+ "source": [
32
+ "# Setup\n",
33
+ "\n",
34
+ "Clone GitHub [repository](https://github.com/ultralytics/yolov5), install [dependencies](https://github.com/ultralytics/yolov5/blob/master/requirements.txt) and check PyTorch and GPU."
35
+ ]
36
+ },
37
+ {
38
+ "cell_type": "code",
39
+ "execution_count": null,
40
+ "metadata": {
41
+ "colab": {
42
+ "base_uri": "https://localhost:8080/"
43
+ },
44
+ "id": "wbvMlHd_QwMG",
45
+ "outputId": "0806e375-610d-4ec0-c867-763dbb518279"
46
+ },
47
+ "outputs": [
48
+ {
49
+ "name": "stderr",
50
+ "output_type": "stream",
51
+ "text": [
52
+ "YOLOv5 🚀 v7.0-3-g61ebf5e Python-3.7.15 torch-1.12.1+cu113 CUDA:0 (Tesla T4, 15110MiB)\n"
53
+ ]
54
+ },
55
+ {
56
+ "name": "stdout",
57
+ "output_type": "stream",
58
+ "text": [
59
+ "Setup complete ✅ (2 CPUs, 12.7 GB RAM, 22.6/78.2 GB disk)\n"
60
+ ]
61
+ }
62
+ ],
63
+ "source": [
64
+ "!git clone https://github.com/ultralytics/yolov5 # clone\n",
65
+ "%cd yolov5\n",
66
+ "%pip install -qr requirements.txt # install\n",
67
+ "\n",
68
+ "import torch\n",
69
+ "\n",
70
+ "import utils\n",
71
+ "\n",
72
+ "display = utils.notebook_init() # checks"
73
+ ]
74
+ },
75
+ {
76
+ "cell_type": "markdown",
77
+ "metadata": {
78
+ "id": "4JnkELT0cIJg"
79
+ },
80
+ "source": [
81
+ "# 1. Predict\n",
82
+ "\n",
83
+ "`classify/predict.py` runs YOLOv5 Classification inference on a variety of sources, downloading models automatically from the [latest YOLOv5 release](https://github.com/ultralytics/yolov5/releases), and saving results to `runs/predict-cls`. Example inference sources are:\n",
84
+ "\n",
85
+ "```shell\n",
86
+ "python classify/predict.py --source 0 # webcam\n",
87
+ " img.jpg # image \n",
88
+ " vid.mp4 # video\n",
89
+ " screen # screenshot\n",
90
+ " path/ # directory\n",
91
+ " 'path/*.jpg' # glob\n",
92
+ " 'https://youtu.be/LNwODJXcvt4' # YouTube\n",
93
+ " 'rtsp://example.com/media.mp4' # RTSP, RTMP, HTTP stream\n",
94
+ "```"
95
+ ]
96
+ },
97
+ {
98
+ "cell_type": "code",
99
+ "execution_count": null,
100
+ "metadata": {
101
+ "colab": {
102
+ "base_uri": "https://localhost:8080/"
103
+ },
104
+ "id": "zR9ZbuQCH7FX",
105
+ "outputId": "50504ef7-aa3e-4281-a4e3-d0c7df3c0ffe"
106
+ },
107
+ "outputs": [
108
+ {
109
+ "name": "stdout",
110
+ "output_type": "stream",
111
+ "text": [
112
+ "\u001b[34m\u001b[1mclassify/predict: \u001b[0mweights=['yolov5s-cls.pt'], source=data/images, data=data/coco128.yaml, imgsz=[224, 224], device=, view_img=False, save_txt=False, nosave=False, augment=False, visualize=False, update=False, project=runs/predict-cls, name=exp, exist_ok=False, half=False, dnn=False, vid_stride=1\n",
113
+ "YOLOv5 🚀 v7.0-3-g61ebf5e Python-3.7.15 torch-1.12.1+cu113 CUDA:0 (Tesla T4, 15110MiB)\n",
114
+ "\n",
115
+ "Downloading https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5s-cls.pt to yolov5s-cls.pt...\n",
116
+ "100% 10.5M/10.5M [00:00<00:00, 12.3MB/s]\n",
117
+ "\n",
118
+ "Fusing layers... \n",
119
+ "Model summary: 117 layers, 5447688 parameters, 0 gradients, 11.4 GFLOPs\n",
120
+ "image 1/2 /content/yolov5/data/images/bus.jpg: 224x224 minibus 0.39, police van 0.24, amphibious vehicle 0.05, recreational vehicle 0.04, trolleybus 0.03, 3.9ms\n",
121
+ "image 2/2 /content/yolov5/data/images/zidane.jpg: 224x224 suit 0.38, bow tie 0.19, bridegroom 0.18, rugby ball 0.04, stage 0.02, 4.6ms\n",
122
+ "Speed: 0.3ms pre-process, 4.3ms inference, 1.5ms NMS per image at shape (1, 3, 224, 224)\n",
123
+ "Results saved to \u001b[1mruns/predict-cls/exp\u001b[0m\n"
124
+ ]
125
+ }
126
+ ],
127
+ "source": [
128
+ "!python classify/predict.py --weights yolov5s-cls.pt --img 224 --source data/images\n",
129
+ "# display.Image(filename='runs/predict-cls/exp/zidane.jpg', width=600)"
130
+ ]
131
+ },
132
+ {
133
+ "cell_type": "markdown",
134
+ "metadata": {
135
+ "id": "hkAzDWJ7cWTr"
136
+ },
137
+ "source": [
138
+ "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n",
139
+ "<img align=\"left\" src=\"https://user-images.githubusercontent.com/26833433/202808393-50deb439-ae1b-4246-a685-7560c9b37211.jpg\" width=\"600\">"
140
+ ]
141
+ },
142
+ {
143
+ "cell_type": "markdown",
144
+ "metadata": {
145
+ "id": "0eq1SMWl6Sfn"
146
+ },
147
+ "source": [
148
+ "# 2. Validate\n",
149
+ "Validate a model's accuracy on the [Imagenet](https://image-net.org/) dataset's `val` or `test` splits. Models are downloaded automatically from the [latest YOLOv5 release](https://github.com/ultralytics/yolov5/releases). To show results by class use the `--verbose` flag."
150
+ ]
151
+ },
152
+ {
153
+ "cell_type": "code",
154
+ "execution_count": null,
155
+ "metadata": {
156
+ "colab": {
157
+ "base_uri": "https://localhost:8080/"
158
+ },
159
+ "id": "WQPtK1QYVaD_",
160
+ "outputId": "20fc0630-141e-4a90-ea06-342cbd7ce496"
161
+ },
162
+ "outputs": [
163
+ {
164
+ "name": "stdout",
165
+ "output_type": "stream",
166
+ "text": [
167
+ "--2022-11-22 19:53:40-- https://image-net.org/data/ILSVRC/2012/ILSVRC2012_img_val.tar\n",
168
+ "Resolving image-net.org (image-net.org)... 171.64.68.16\n",
169
+ "Connecting to image-net.org (image-net.org)|171.64.68.16|:443... connected.\n",
170
+ "HTTP request sent, awaiting response... 200 OK\n",
171
+ "Length: 6744924160 (6.3G) [application/x-tar]\n",
172
+ "Saving to: ‘ILSVRC2012_img_val.tar’\n",
173
+ "\n",
174
+ "ILSVRC2012_img_val. 100%[===================>] 6.28G 16.1MB/s in 10m 52s \n",
175
+ "\n",
176
+ "2022-11-22 20:04:32 (9.87 MB/s) - ‘ILSVRC2012_img_val.tar’ saved [6744924160/6744924160]\n",
177
+ "\n"
178
+ ]
179
+ }
180
+ ],
181
+ "source": [
182
+ "# Download Imagenet val (6.3G, 50000 images)\n",
183
+ "!bash data/scripts/get_imagenet.sh --val"
184
+ ]
185
+ },
186
+ {
187
+ "cell_type": "code",
188
+ "execution_count": null,
189
+ "metadata": {
190
+ "colab": {
191
+ "base_uri": "https://localhost:8080/"
192
+ },
193
+ "id": "X58w8JLpMnjH",
194
+ "outputId": "41843132-98e2-4c25-d474-4cd7b246fb8e"
195
+ },
196
+ "outputs": [
197
+ {
198
+ "name": "stdout",
199
+ "output_type": "stream",
200
+ "text": [
201
+ "\u001b[34m\u001b[1mclassify/val: \u001b[0mdata=../datasets/imagenet, weights=['yolov5s-cls.pt'], batch_size=128, imgsz=224, device=, workers=8, verbose=True, project=runs/val-cls, name=exp, exist_ok=False, half=True, dnn=False\n",
202
+ "YOLOv5 🚀 v7.0-3-g61ebf5e Python-3.7.15 torch-1.12.1+cu113 CUDA:0 (Tesla T4, 15110MiB)\n",
203
+ "\n",
204
+ "Fusing layers... \n",
205
+ "Model summary: 117 layers, 5447688 parameters, 0 gradients, 11.4 GFLOPs\n",
206
+ "validating: 100% 391/391 [04:57<00:00, 1.31it/s]\n",
207
+ " Class Images top1_acc top5_acc\n",
208
+ " all 50000 0.715 0.902\n",
209
+ " tench 50 0.94 0.98\n",
210
+ " goldfish 50 0.88 0.92\n",
211
+ " great white shark 50 0.78 0.96\n",
212
+ " tiger shark 50 0.68 0.96\n",
213
+ " hammerhead shark 50 0.82 0.92\n",
214
+ " electric ray 50 0.76 0.9\n",
215
+ " stingray 50 0.7 0.9\n",
216
+ " cock 50 0.78 0.92\n",
217
+ " hen 50 0.84 0.96\n",
218
+ " ostrich 50 0.98 1\n",
219
+ " brambling 50 0.9 0.96\n",
220
+ " goldfinch 50 0.92 0.98\n",
221
+ " house finch 50 0.88 0.96\n",
222
+ " junco 50 0.94 0.98\n",
223
+ " indigo bunting 50 0.86 0.88\n",
224
+ " American robin 50 0.9 0.96\n",
225
+ " bulbul 50 0.84 0.96\n",
226
+ " jay 50 0.9 0.96\n",
227
+ " magpie 50 0.84 0.96\n",
228
+ " chickadee 50 0.9 1\n",
229
+ " American dipper 50 0.82 0.92\n",
230
+ " kite 50 0.76 0.94\n",
231
+ " bald eagle 50 0.92 1\n",
232
+ " vulture 50 0.96 1\n",
233
+ " great grey owl 50 0.94 0.98\n",
234
+ " fire salamander 50 0.96 0.98\n",
235
+ " smooth newt 50 0.58 0.94\n",
236
+ " newt 50 0.74 0.9\n",
237
+ " spotted salamander 50 0.86 0.94\n",
238
+ " axolotl 50 0.86 0.96\n",
239
+ " American bullfrog 50 0.78 0.92\n",
240
+ " tree frog 50 0.84 0.96\n",
241
+ " tailed frog 50 0.48 0.8\n",
242
+ " loggerhead sea turtle 50 0.68 0.94\n",
243
+ " leatherback sea turtle 50 0.5 0.8\n",
244
+ " mud turtle 50 0.64 0.84\n",
245
+ " terrapin 50 0.52 0.98\n",
246
+ " box turtle 50 0.84 0.98\n",
247
+ " banded gecko 50 0.7 0.88\n",
248
+ " green iguana 50 0.76 0.94\n",
249
+ " Carolina anole 50 0.58 0.96\n",
250
+ "desert grassland whiptail lizard 50 0.82 0.94\n",
251
+ " agama 50 0.74 0.92\n",
252
+ " frilled-necked lizard 50 0.84 0.86\n",
253
+ " alligator lizard 50 0.58 0.78\n",
254
+ " Gila monster 50 0.72 0.8\n",
255
+ " European green lizard 50 0.42 0.9\n",
256
+ " chameleon 50 0.76 0.84\n",
257
+ " Komodo dragon 50 0.86 0.96\n",
258
+ " Nile crocodile 50 0.7 0.84\n",
259
+ " American alligator 50 0.76 0.96\n",
260
+ " triceratops 50 0.9 0.94\n",
261
+ " worm snake 50 0.76 0.88\n",
262
+ " ring-necked snake 50 0.8 0.92\n",
263
+ " eastern hog-nosed snake 50 0.58 0.88\n",
264
+ " smooth green snake 50 0.6 0.94\n",
265
+ " kingsnake 50 0.82 0.9\n",
266
+ " garter snake 50 0.88 0.94\n",
267
+ " water snake 50 0.7 0.94\n",
268
+ " vine snake 50 0.66 0.76\n",
269
+ " night snake 50 0.34 0.82\n",
270
+ " boa constrictor 50 0.8 0.96\n",
271
+ " African rock python 50 0.48 0.76\n",
272
+ " Indian cobra 50 0.82 0.94\n",
273
+ " green mamba 50 0.54 0.86\n",
274
+ " sea snake 50 0.62 0.9\n",
275
+ " Saharan horned viper 50 0.56 0.86\n",
276
+ "eastern diamondback rattlesnake 50 0.6 0.86\n",
277
+ " sidewinder 50 0.28 0.86\n",
278
+ " trilobite 50 0.98 0.98\n",
279
+ " harvestman 50 0.86 0.94\n",
280
+ " scorpion 50 0.86 0.94\n",
281
+ " yellow garden spider 50 0.92 0.96\n",
282
+ " barn spider 50 0.38 0.98\n",
283
+ " European garden spider 50 0.62 0.98\n",
284
+ " southern black widow 50 0.88 0.94\n",
285
+ " tarantula 50 0.94 1\n",
286
+ " wolf spider 50 0.82 0.92\n",
287
+ " tick 50 0.74 0.84\n",
288
+ " centipede 50 0.68 0.82\n",
289
+ " black grouse 50 0.88 0.98\n",
290
+ " ptarmigan 50 0.78 0.94\n",
291
+ " ruffed grouse 50 0.88 1\n",
292
+ " prairie grouse 50 0.92 1\n",
293
+ " peacock 50 0.88 0.9\n",
294
+ " quail 50 0.9 0.94\n",
295
+ " partridge 50 0.74 0.96\n",
296
+ " grey parrot 50 0.9 0.96\n",
297
+ " macaw 50 0.88 0.98\n",
298
+ "sulphur-crested cockatoo 50 0.86 0.92\n",
299
+ " lorikeet 50 0.96 1\n",
300
+ " coucal 50 0.82 0.88\n",
301
+ " bee eater 50 0.96 0.98\n",
302
+ " hornbill 50 0.9 0.96\n",
303
+ " hummingbird 50 0.88 0.96\n",
304
+ " jacamar 50 0.92 0.94\n",
305
+ " toucan 50 0.84 0.94\n",
306
+ " duck 50 0.76 0.94\n",
307
+ " red-breasted merganser 50 0.86 0.96\n",
308
+ " goose 50 0.74 0.96\n",
309
+ " black swan 50 0.94 0.98\n",
310
+ " tusker 50 0.54 0.92\n",
311
+ " echidna 50 0.98 1\n",
312
+ " platypus 50 0.72 0.84\n",
313
+ " wallaby 50 0.78 0.88\n",
314
+ " koala 50 0.84 0.92\n",
315
+ " wombat 50 0.78 0.84\n",
316
+ " jellyfish 50 0.88 0.96\n",
317
+ " sea anemone 50 0.72 0.9\n",
318
+ " brain coral 50 0.88 0.96\n",
319
+ " flatworm 50 0.8 0.98\n",
320
+ " nematode 50 0.86 0.9\n",
321
+ " conch 50 0.74 0.88\n",
322
+ " snail 50 0.78 0.88\n",
323
+ " slug 50 0.74 0.82\n",
324
+ " sea slug 50 0.88 0.98\n",
325
+ " chiton 50 0.88 0.98\n",
326
+ " chambered nautilus 50 0.88 0.92\n",
327
+ " Dungeness crab 50 0.78 0.94\n",
328
+ " rock crab 50 0.68 0.86\n",
329
+ " fiddler crab 50 0.64 0.86\n",
330
+ " red king crab 50 0.76 0.96\n",
331
+ " American lobster 50 0.78 0.96\n",
332
+ " spiny lobster 50 0.74 0.88\n",
333
+ " crayfish 50 0.56 0.86\n",
334
+ " hermit crab 50 0.78 0.96\n",
335
+ " isopod 50 0.66 0.78\n",
336
+ " white stork 50 0.88 0.96\n",
337
+ " black stork 50 0.84 0.98\n",
338
+ " spoonbill 50 0.96 1\n",
339
+ " flamingo 50 0.94 1\n",
340
+ " little blue heron 50 0.92 0.98\n",
341
+ " great egret 50 0.9 0.96\n",
342
+ " bittern 50 0.86 0.94\n",
343
+ " crane (bird) 50 0.62 0.9\n",
344
+ " limpkin 50 0.98 1\n",
345
+ " common gallinule 50 0.92 0.96\n",
346
+ " American coot 50 0.9 0.98\n",
347
+ " bustard 50 0.92 0.96\n",
348
+ " ruddy turnstone 50 0.94 1\n",
349
+ " dunlin 50 0.86 0.94\n",
350
+ " common redshank 50 0.9 0.96\n",
351
+ " dowitcher 50 0.84 0.96\n",
352
+ " oystercatcher 50 0.86 0.94\n",
353
+ " pelican 50 0.92 0.96\n",
354
+ " king penguin 50 0.88 0.96\n",
355
+ " albatross 50 0.9 1\n",
356
+ " grey whale 50 0.84 0.92\n",
357
+ " killer whale 50 0.92 1\n",
358
+ " dugong 50 0.84 0.96\n",
359
+ " sea lion 50 0.82 0.92\n",
360
+ " Chihuahua 50 0.66 0.84\n",
361
+ " Japanese Chin 50 0.72 0.98\n",
362
+ " Maltese 50 0.76 0.94\n",
363
+ " Pekingese 50 0.84 0.94\n",
364
+ " Shih Tzu 50 0.74 0.96\n",
365
+ " King Charles Spaniel 50 0.88 0.98\n",
366
+ " Papillon 50 0.86 0.94\n",
367
+ " toy terrier 50 0.48 0.94\n",
368
+ " Rhodesian Ridgeback 50 0.76 0.98\n",
369
+ " Afghan Hound 50 0.84 1\n",
370
+ " Basset Hound 50 0.8 0.92\n",
371
+ " Beagle 50 0.82 0.96\n",
372
+ " Bloodhound 50 0.48 0.72\n",
373
+ " Bluetick Coonhound 50 0.86 0.94\n",
374
+ " Black and Tan Coonhound 50 0.54 0.8\n",
375
+ "Treeing Walker Coonhound 50 0.66 0.98\n",
376
+ " English foxhound 50 0.32 0.84\n",
377
+ " Redbone Coonhound 50 0.62 0.94\n",
378
+ " borzoi 50 0.92 1\n",
379
+ " Irish Wolfhound 50 0.48 0.88\n",
380
+ " Italian Greyhound 50 0.76 0.98\n",
381
+ " Whippet 50 0.74 0.92\n",
382
+ " Ibizan Hound 50 0.6 0.86\n",
383
+ " Norwegian Elkhound 50 0.88 0.98\n",
384
+ " Otterhound 50 0.62 0.9\n",
385
+ " Saluki 50 0.72 0.92\n",
386
+ " Scottish Deerhound 50 0.86 0.98\n",
387
+ " Weimaraner 50 0.88 0.94\n",
388
+ "Staffordshire Bull Terrier 50 0.66 0.98\n",
389
+ "American Staffordshire Terrier 50 0.64 0.92\n",
390
+ " Bedlington Terrier 50 0.9 0.92\n",
391
+ " Border Terrier 50 0.86 0.92\n",
392
+ " Kerry Blue Terrier 50 0.78 0.98\n",
393
+ " Irish Terrier 50 0.7 0.96\n",
394
+ " Norfolk Terrier 50 0.68 0.9\n",
395
+ " Norwich Terrier 50 0.72 1\n",
396
+ " Yorkshire Terrier 50 0.66 0.9\n",
397
+ " Wire Fox Terrier 50 0.64 0.98\n",
398
+ " Lakeland Terrier 50 0.74 0.92\n",
399
+ " Sealyham Terrier 50 0.76 0.9\n",
400
+ " Airedale Terrier 50 0.82 0.92\n",
401
+ " Cairn Terrier 50 0.76 0.9\n",
402
+ " Australian Terrier 50 0.48 0.84\n",
403
+ " Dandie Dinmont Terrier 50 0.82 0.92\n",
404
+ " Boston Terrier 50 0.92 1\n",
405
+ " Miniature Schnauzer 50 0.68 0.9\n",
406
+ " Giant Schnauzer 50 0.72 0.98\n",
407
+ " Standard Schnauzer 50 0.74 1\n",
408
+ " Scottish Terrier 50 0.76 0.96\n",
409
+ " Tibetan Terrier 50 0.48 1\n",
410
+ "Australian Silky Terrier 50 0.66 0.96\n",
411
+ "Soft-coated Wheaten Terrier 50 0.74 0.96\n",
412
+ "West Highland White Terrier 50 0.88 0.96\n",
413
+ " Lhasa Apso 50 0.68 0.96\n",
414
+ " Flat-Coated Retriever 50 0.72 0.94\n",
415
+ " Curly-coated Retriever 50 0.82 0.94\n",
416
+ " Golden Retriever 50 0.86 0.94\n",
417
+ " Labrador Retriever 50 0.82 0.94\n",
418
+ "Chesapeake Bay Retriever 50 0.76 0.96\n",
419
+ "German Shorthaired Pointer 50 0.8 0.96\n",
420
+ " Vizsla 50 0.68 0.96\n",
421
+ " English Setter 50 0.7 1\n",
422
+ " Irish Setter 50 0.8 0.9\n",
423
+ " Gordon Setter 50 0.84 0.92\n",
424
+ " Brittany 50 0.84 0.96\n",
425
+ " Clumber Spaniel 50 0.92 0.96\n",
426
+ "English Springer Spaniel 50 0.88 1\n",
427
+ " Welsh Springer Spaniel 50 0.92 1\n",
428
+ " Cocker Spaniels 50 0.7 0.94\n",
429
+ " Sussex Spaniel 50 0.72 0.92\n",
430
+ " Irish Water Spaniel 50 0.88 0.98\n",
431
+ " Kuvasz 50 0.66 0.9\n",
432
+ " Schipperke 50 0.9 0.98\n",
433
+ " Groenendael 50 0.8 0.94\n",
434
+ " Malinois 50 0.86 0.98\n",
435
+ " Briard 50 0.52 0.8\n",
436
+ " Australian Kelpie 50 0.6 0.88\n",
437
+ " Komondor 50 0.88 0.94\n",
438
+ " Old English Sheepdog 50 0.94 0.98\n",
439
+ " Shetland Sheepdog 50 0.74 0.9\n",
440
+ " collie 50 0.6 0.96\n",
441
+ " Border Collie 50 0.74 0.96\n",
442
+ " Bouvier des Flandres 50 0.78 0.94\n",
443
+ " Rottweiler 50 0.88 0.96\n",
444
+ " German Shepherd Dog 50 0.8 0.98\n",
445
+ " Dobermann 50 0.68 0.96\n",
446
+ " Miniature Pinscher 50 0.76 0.88\n",
447
+ "Greater Swiss Mountain Dog 50 0.68 0.94\n",
448
+ " Bernese Mountain Dog 50 0.96 1\n",
449
+ " Appenzeller Sennenhund 50 0.22 1\n",
450
+ " Entlebucher Sennenhund 50 0.64 0.98\n",
451
+ " Boxer 50 0.7 0.92\n",
452
+ " Bullmastiff 50 0.78 0.98\n",
453
+ " Tibetan Mastiff 50 0.88 0.96\n",
454
+ " French Bulldog 50 0.84 0.94\n",
455
+ " Great Dane 50 0.54 0.9\n",
456
+ " St. Bernard 50 0.92 1\n",
457
+ " husky 50 0.46 0.98\n",
458
+ " Alaskan Malamute 50 0.76 0.96\n",
459
+ " Siberian Husky 50 0.46 0.98\n",
460
+ " Dalmatian 50 0.94 0.98\n",
461
+ " Affenpinscher 50 0.78 0.9\n",
462
+ " Basenji 50 0.92 0.94\n",
463
+ " pug 50 0.94 0.98\n",
464
+ " Leonberger 50 1 1\n",
465
+ " Newfoundland 50 0.78 0.96\n",
466
+ " Pyrenean Mountain Dog 50 0.78 0.96\n",
467
+ " Samoyed 50 0.96 1\n",
468
+ " Pomeranian 50 0.98 1\n",
469
+ " Chow Chow 50 0.9 0.96\n",
470
+ " Keeshond 50 0.88 0.94\n",
471
+ " Griffon Bruxellois 50 0.84 0.98\n",
472
+ " Pembroke Welsh Corgi 50 0.82 0.94\n",
473
+ " Cardigan Welsh Corgi 50 0.66 0.98\n",
474
+ " Toy Poodle 50 0.52 0.88\n",
475
+ " Miniature Poodle 50 0.52 0.92\n",
476
+ " Standard Poodle 50 0.8 1\n",
477
+ " Mexican hairless dog 50 0.88 0.98\n",
478
+ " grey wolf 50 0.82 0.92\n",
479
+ " Alaskan tundra wolf 50 0.78 0.98\n",
480
+ " red wolf 50 0.48 0.9\n",
481
+ " coyote 50 0.64 0.86\n",
482
+ " dingo 50 0.76 0.88\n",
483
+ " dhole 50 0.9 0.98\n",
484
+ " African wild dog 50 0.98 1\n",
485
+ " hyena 50 0.88 0.96\n",
486
+ " red fox 50 0.54 0.92\n",
487
+ " kit fox 50 0.72 0.98\n",
488
+ " Arctic fox 50 0.94 1\n",
489
+ " grey fox 50 0.7 0.94\n",
490
+ " tabby cat 50 0.54 0.92\n",
491
+ " tiger cat 50 0.22 0.94\n",
492
+ " Persian cat 50 0.9 0.98\n",
493
+ " Siamese cat 50 0.96 1\n",
494
+ " Egyptian Mau 50 0.54 0.8\n",
495
+ " cougar 50 0.9 1\n",
496
+ " lynx 50 0.72 0.88\n",
497
+ " leopard 50 0.78 0.98\n",
498
+ " snow leopard 50 0.9 0.98\n",
499
+ " jaguar 50 0.7 0.94\n",
500
+ " lion 50 0.9 0.98\n",
501
+ " tiger 50 0.92 0.98\n",
502
+ " cheetah 50 0.94 0.98\n",
503
+ " brown bear 50 0.94 0.98\n",
504
+ " American black bear 50 0.8 1\n",
505
+ " polar bear 50 0.84 0.96\n",
506
+ " sloth bear 50 0.72 0.92\n",
507
+ " mongoose 50 0.7 0.92\n",
508
+ " meerkat 50 0.82 0.92\n",
509
+ " tiger beetle 50 0.92 0.94\n",
510
+ " ladybug 50 0.86 0.94\n",
511
+ " ground beetle 50 0.64 0.94\n",
512
+ " longhorn beetle 50 0.62 0.88\n",
513
+ " leaf beetle 50 0.64 0.98\n",
514
+ " dung beetle 50 0.86 0.98\n",
515
+ " rhinoceros beetle 50 0.86 0.94\n",
516
+ " weevil 50 0.9 1\n",
517
+ " fly 50 0.78 0.94\n",
518
+ " bee 50 0.68 0.94\n",
519
+ " ant 50 0.68 0.78\n",
520
+ " grasshopper 50 0.5 0.92\n",
521
+ " cricket 50 0.64 0.92\n",
522
+ " stick insect 50 0.64 0.92\n",
523
+ " cockroach 50 0.72 0.8\n",
524
+ " mantis 50 0.64 0.86\n",
525
+ " cicada 50 0.9 0.96\n",
526
+ " leafhopper 50 0.88 0.94\n",
527
+ " lacewing 50 0.78 0.92\n",
528
+ " dragonfly 50 0.82 0.98\n",
529
+ " damselfly 50 0.82 1\n",
530
+ " red admiral 50 0.94 0.96\n",
531
+ " ringlet 50 0.86 0.98\n",
532
+ " monarch butterfly 50 0.9 0.92\n",
533
+ " small white 50 0.9 1\n",
534
+ " sulphur butterfly 50 0.92 1\n",
535
+ "gossamer-winged butterfly 50 0.88 1\n",
536
+ " starfish 50 0.88 0.92\n",
537
+ " sea urchin 50 0.84 0.94\n",
538
+ " sea cucumber 50 0.66 0.84\n",
539
+ " cottontail rabbit 50 0.72 0.94\n",
540
+ " hare 50 0.84 0.96\n",
541
+ " Angora rabbit 50 0.94 0.98\n",
542
+ " hamster 50 0.96 1\n",
543
+ " porcupine 50 0.88 0.98\n",
544
+ " fox squirrel 50 0.76 0.94\n",
545
+ " marmot 50 0.92 0.96\n",
546
+ " beaver 50 0.78 0.94\n",
547
+ " guinea pig 50 0.78 0.94\n",
548
+ " common sorrel 50 0.96 0.98\n",
549
+ " zebra 50 0.94 0.96\n",
550
+ " pig 50 0.5 0.76\n",
551
+ " wild boar 50 0.84 0.96\n",
552
+ " warthog 50 0.84 0.96\n",
553
+ " hippopotamus 50 0.88 0.96\n",
554
+ " ox 50 0.48 0.94\n",
555
+ " water buffalo 50 0.78 0.94\n",
556
+ " bison 50 0.88 0.96\n",
557
+ " ram 50 0.58 0.92\n",
558
+ " bighorn sheep 50 0.66 1\n",
559
+ " Alpine ibex 50 0.92 0.98\n",
560
+ " hartebeest 50 0.94 1\n",
561
+ " impala 50 0.82 0.96\n",
562
+ " gazelle 50 0.7 0.96\n",
563
+ " dromedary 50 0.9 1\n",
564
+ " llama 50 0.82 0.94\n",
565
+ " weasel 50 0.44 0.92\n",
566
+ " mink 50 0.78 0.96\n",
567
+ " European polecat 50 0.46 0.9\n",
568
+ " black-footed ferret 50 0.68 0.96\n",
569
+ " otter 50 0.66 0.88\n",
570
+ " skunk 50 0.96 0.96\n",
571
+ " badger 50 0.86 0.92\n",
572
+ " armadillo 50 0.88 0.9\n",
573
+ " three-toed sloth 50 0.96 1\n",
574
+ " orangutan 50 0.78 0.92\n",
575
+ " gorilla 50 0.82 0.94\n",
576
+ " chimpanzee 50 0.84 0.94\n",
577
+ " gibbon 50 0.76 0.86\n",
578
+ " siamang 50 0.68 0.94\n",
579
+ " guenon 50 0.8 0.94\n",
580
+ " patas monkey 50 0.62 0.82\n",
581
+ " baboon 50 0.9 0.98\n",
582
+ " macaque 50 0.8 0.86\n",
583
+ " langur 50 0.6 0.82\n",
584
+ " black-and-white colobus 50 0.86 0.9\n",
585
+ " proboscis monkey 50 1 1\n",
586
+ " marmoset 50 0.74 0.98\n",
587
+ " white-headed capuchin 50 0.72 0.9\n",
588
+ " howler monkey 50 0.86 0.94\n",
589
+ " titi 50 0.5 0.9\n",
590
+ "Geoffroy's spider monkey 50 0.42 0.8\n",
591
+ " common squirrel monkey 50 0.76 0.92\n",
592
+ " ring-tailed lemur 50 0.72 0.94\n",
593
+ " indri 50 0.9 0.96\n",
594
+ " Asian elephant 50 0.58 0.92\n",
595
+ " African bush elephant 50 0.7 0.98\n",
596
+ " red panda 50 0.94 0.94\n",
597
+ " giant panda 50 0.94 0.98\n",
598
+ " snoek 50 0.74 0.9\n",
599
+ " eel 50 0.6 0.84\n",
600
+ " coho salmon 50 0.84 0.96\n",
601
+ " rock beauty 50 0.88 0.98\n",
602
+ " clownfish 50 0.78 0.98\n",
603
+ " sturgeon 50 0.68 0.94\n",
604
+ " garfish 50 0.62 0.8\n",
605
+ " lionfish 50 0.96 0.96\n",
606
+ " pufferfish 50 0.88 0.96\n",
607
+ " abacus 50 0.74 0.88\n",
608
+ " abaya 50 0.84 0.92\n",
609
+ " academic gown 50 0.42 0.86\n",
610
+ " accordion 50 0.8 0.9\n",
611
+ " acoustic guitar 50 0.5 0.76\n",
612
+ " aircraft carrier 50 0.8 0.96\n",
613
+ " airliner 50 0.92 1\n",
614
+ " airship 50 0.76 0.82\n",
615
+ " altar 50 0.64 0.98\n",
616
+ " ambulance 50 0.88 0.98\n",
617
+ " amphibious vehicle 50 0.64 0.94\n",
618
+ " analog clock 50 0.52 0.92\n",
619
+ " apiary 50 0.82 0.96\n",
620
+ " apron 50 0.7 0.84\n",
621
+ " waste container 50 0.4 0.8\n",
622
+ " assault rifle 50 0.42 0.84\n",
623
+ " backpack 50 0.34 0.64\n",
624
+ " bakery 50 0.4 0.68\n",
625
+ " balance beam 50 0.8 0.98\n",
626
+ " balloon 50 0.86 0.96\n",
627
+ " ballpoint pen 50 0.52 0.96\n",
628
+ " Band-Aid 50 0.7 0.9\n",
629
+ " banjo 50 0.84 1\n",
630
+ " baluster 50 0.68 0.94\n",
631
+ " barbell 50 0.56 0.9\n",
632
+ " barber chair 50 0.7 0.92\n",
633
+ " barbershop 50 0.54 0.86\n",
634
+ " barn 50 0.96 0.96\n",
635
+ " barometer 50 0.84 0.98\n",
636
+ " barrel 50 0.56 0.88\n",
637
+ " wheelbarrow 50 0.66 0.88\n",
638
+ " baseball 50 0.74 0.98\n",
639
+ " basketball 50 0.88 0.98\n",
640
+ " bassinet 50 0.66 0.92\n",
641
+ " bassoon 50 0.74 0.98\n",
642
+ " swimming cap 50 0.62 0.88\n",
643
+ " bath towel 50 0.54 0.78\n",
644
+ " bathtub 50 0.4 0.88\n",
645
+ " station wagon 50 0.66 0.84\n",
646
+ " lighthouse 50 0.78 0.94\n",
647
+ " beaker 50 0.52 0.68\n",
648
+ " military cap 50 0.84 0.96\n",
649
+ " beer bottle 50 0.66 0.88\n",
650
+ " beer glass 50 0.6 0.84\n",
651
+ " bell-cot 50 0.56 0.96\n",
652
+ " bib 50 0.58 0.82\n",
653
+ " tandem bicycle 50 0.86 0.96\n",
654
+ " bikini 50 0.56 0.88\n",
655
+ " ring binder 50 0.64 0.84\n",
656
+ " binoculars 50 0.54 0.78\n",
657
+ " birdhouse 50 0.86 0.94\n",
658
+ " boathouse 50 0.74 0.92\n",
659
+ " bobsleigh 50 0.92 0.96\n",
660
+ " bolo tie 50 0.8 0.94\n",
661
+ " poke bonnet 50 0.64 0.86\n",
662
+ " bookcase 50 0.66 0.92\n",
663
+ " bookstore 50 0.62 0.88\n",
664
+ " bottle cap 50 0.58 0.7\n",
665
+ " bow 50 0.72 0.86\n",
666
+ " bow tie 50 0.7 0.9\n",
667
+ " brass 50 0.92 0.96\n",
668
+ " bra 50 0.5 0.7\n",
669
+ " breakwater 50 0.62 0.86\n",
670
+ " breastplate 50 0.4 0.9\n",
671
+ " broom 50 0.6 0.86\n",
672
+ " bucket 50 0.66 0.8\n",
673
+ " buckle 50 0.5 0.68\n",
674
+ " bulletproof vest 50 0.5 0.78\n",
675
+ " high-speed train 50 0.94 0.96\n",
676
+ " butcher shop 50 0.74 0.94\n",
677
+ " taxicab 50 0.64 0.86\n",
678
+ " cauldron 50 0.44 0.66\n",
679
+ " candle 50 0.48 0.74\n",
680
+ " cannon 50 0.88 0.94\n",
681
+ " canoe 50 0.94 1\n",
682
+ " can opener 50 0.66 0.86\n",
683
+ " cardigan 50 0.68 0.8\n",
684
+ " car mirror 50 0.94 0.96\n",
685
+ " carousel 50 0.94 0.98\n",
686
+ " tool kit 50 0.56 0.78\n",
687
+ " carton 50 0.42 0.7\n",
688
+ " car wheel 50 0.38 0.74\n",
689
+ "automated teller machine 50 0.76 0.94\n",
690
+ " cassette 50 0.52 0.8\n",
691
+ " cassette player 50 0.28 0.9\n",
692
+ " castle 50 0.78 0.88\n",
693
+ " catamaran 50 0.78 1\n",
694
+ " CD player 50 0.52 0.82\n",
695
+ " cello 50 0.82 1\n",
696
+ " mobile phone 50 0.68 0.86\n",
697
+ " chain 50 0.38 0.66\n",
698
+ " chain-link fence 50 0.7 0.84\n",
699
+ " chain mail 50 0.64 0.9\n",
700
+ " chainsaw 50 0.84 0.92\n",
701
+ " chest 50 0.68 0.92\n",
702
+ " chiffonier 50 0.26 0.64\n",
703
+ " chime 50 0.62 0.84\n",
704
+ " china cabinet 50 0.82 0.96\n",
705
+ " Christmas stocking 50 0.92 0.94\n",
706
+ " church 50 0.62 0.9\n",
707
+ " movie theater 50 0.58 0.88\n",
708
+ " cleaver 50 0.32 0.62\n",
709
+ " cliff dwelling 50 0.88 1\n",
710
+ " cloak 50 0.32 0.64\n",
711
+ " clogs 50 0.58 0.88\n",
712
+ " cocktail shaker 50 0.62 0.7\n",
713
+ " coffee mug 50 0.44 0.72\n",
714
+ " coffeemaker 50 0.64 0.92\n",
715
+ " coil 50 0.66 0.84\n",
716
+ " combination lock 50 0.64 0.84\n",
717
+ " computer keyboard 50 0.7 0.82\n",
718
+ " confectionery store 50 0.54 0.86\n",
719
+ " container ship 50 0.82 0.98\n",
720
+ " convertible 50 0.78 0.98\n",
721
+ " corkscrew 50 0.82 0.92\n",
722
+ " cornet 50 0.46 0.88\n",
723
+ " cowboy boot 50 0.64 0.8\n",
724
+ " cowboy hat 50 0.64 0.82\n",
725
+ " cradle 50 0.38 0.8\n",
726
+ " crane (machine) 50 0.78 0.94\n",
727
+ " crash helmet 50 0.92 0.96\n",
728
+ " crate 50 0.52 0.82\n",
729
+ " infant bed 50 0.74 1\n",
730
+ " Crock Pot 50 0.78 0.9\n",
731
+ " croquet ball 50 0.9 0.96\n",
732
+ " crutch 50 0.46 0.7\n",
733
+ " cuirass 50 0.54 0.86\n",
734
+ " dam 50 0.74 0.92\n",
735
+ " desk 50 0.6 0.86\n",
736
+ " desktop computer 50 0.54 0.94\n",
737
+ " rotary dial telephone 50 0.88 0.94\n",
738
+ " diaper 50 0.68 0.84\n",
739
+ " digital clock 50 0.54 0.76\n",
740
+ " digital watch 50 0.58 0.86\n",
741
+ " dining table 50 0.76 0.9\n",
742
+ " dishcloth 50 0.94 1\n",
743
+ " dishwasher 50 0.44 0.78\n",
744
+ " disc brake 50 0.98 1\n",
745
+ " dock 50 0.54 0.94\n",
746
+ " dog sled 50 0.84 1\n",
747
+ " dome 50 0.72 0.92\n",
748
+ " doormat 50 0.56 0.82\n",
749
+ " drilling rig 50 0.84 0.96\n",
750
+ " drum 50 0.38 0.68\n",
751
+ " drumstick 50 0.56 0.72\n",
752
+ " dumbbell 50 0.62 0.9\n",
753
+ " Dutch oven 50 0.7 0.84\n",
754
+ " electric fan 50 0.82 0.86\n",
755
+ " electric guitar 50 0.62 0.84\n",
756
+ " electric locomotive 50 0.92 0.98\n",
757
+ " entertainment center 50 0.9 0.98\n",
758
+ " envelope 50 0.44 0.86\n",
759
+ " espresso machine 50 0.72 0.94\n",
760
+ " face powder 50 0.7 0.92\n",
761
+ " feather boa 50 0.7 0.84\n",
762
+ " filing cabinet 50 0.88 0.98\n",
763
+ " fireboat 50 0.94 0.98\n",
764
+ " fire engine 50 0.84 0.9\n",
765
+ " fire screen sheet 50 0.62 0.76\n",
766
+ " flagpole 50 0.74 0.88\n",
767
+ " flute 50 0.36 0.72\n",
768
+ " folding chair 50 0.62 0.84\n",
769
+ " football helmet 50 0.86 0.94\n",
770
+ " forklift 50 0.8 0.92\n",
771
+ " fountain 50 0.84 0.94\n",
772
+ " fountain pen 50 0.76 0.92\n",
773
+ " four-poster bed 50 0.78 0.94\n",
774
+ " freight car 50 0.96 1\n",
775
+ " French horn 50 0.76 0.92\n",
776
+ " frying pan 50 0.36 0.78\n",
777
+ " fur coat 50 0.84 0.96\n",
778
+ " garbage truck 50 0.9 0.98\n",
779
+ " gas mask 50 0.84 0.92\n",
780
+ " gas pump 50 0.9 0.98\n",
781
+ " goblet 50 0.68 0.82\n",
782
+ " go-kart 50 0.9 1\n",
783
+ " golf ball 50 0.84 0.9\n",
784
+ " golf cart 50 0.78 0.86\n",
785
+ " gondola 50 0.98 0.98\n",
786
+ " gong 50 0.74 0.92\n",
787
+ " gown 50 0.62 0.96\n",
788
+ " grand piano 50 0.7 0.96\n",
789
+ " greenhouse 50 0.8 0.98\n",
790
+ " grille 50 0.72 0.9\n",
791
+ " grocery store 50 0.66 0.94\n",
792
+ " guillotine 50 0.86 0.92\n",
793
+ " barrette 50 0.52 0.66\n",
794
+ " hair spray 50 0.5 0.74\n",
795
+ " half-track 50 0.78 0.9\n",
796
+ " hammer 50 0.56 0.76\n",
797
+ " hamper 50 0.64 0.84\n",
798
+ " hair dryer 50 0.56 0.74\n",
799
+ " hand-held computer 50 0.42 0.86\n",
800
+ " handkerchief 50 0.78 0.94\n",
801
+ " hard disk drive 50 0.76 0.84\n",
802
+ " harmonica 50 0.7 0.88\n",
803
+ " harp 50 0.88 0.96\n",
804
+ " harvester 50 0.78 1\n",
805
+ " hatchet 50 0.54 0.74\n",
806
+ " holster 50 0.66 0.84\n",
807
+ " home theater 50 0.64 0.94\n",
808
+ " honeycomb 50 0.56 0.88\n",
809
+ " hook 50 0.3 0.6\n",
810
+ " hoop skirt 50 0.64 0.86\n",
811
+ " horizontal bar 50 0.68 0.98\n",
812
+ " horse-drawn vehicle 50 0.88 0.94\n",
813
+ " hourglass 50 0.88 0.96\n",
814
+ " iPod 50 0.76 0.94\n",
815
+ " clothes iron 50 0.82 0.88\n",
816
+ " jack-o'-lantern 50 0.98 0.98\n",
817
+ " jeans 50 0.68 0.84\n",
818
+ " jeep 50 0.72 0.9\n",
819
+ " T-shirt 50 0.72 0.96\n",
820
+ " jigsaw puzzle 50 0.84 0.94\n",
821
+ " pulled rickshaw 50 0.86 0.94\n",
822
+ " joystick 50 0.8 0.9\n",
823
+ " kimono 50 0.84 0.96\n",
824
+ " knee pad 50 0.62 0.88\n",
825
+ " knot 50 0.66 0.8\n",
826
+ " lab coat 50 0.8 0.96\n",
827
+ " ladle 50 0.36 0.64\n",
828
+ " lampshade 50 0.48 0.84\n",
829
+ " laptop computer 50 0.26 0.88\n",
830
+ " lawn mower 50 0.78 0.96\n",
831
+ " lens cap 50 0.46 0.72\n",
832
+ " paper knife 50 0.26 0.5\n",
833
+ " library 50 0.54 0.9\n",
834
+ " lifeboat 50 0.92 0.98\n",
835
+ " lighter 50 0.56 0.78\n",
836
+ " limousine 50 0.76 0.92\n",
837
+ " ocean liner 50 0.88 0.94\n",
838
+ " lipstick 50 0.74 0.9\n",
839
+ " slip-on shoe 50 0.74 0.92\n",
840
+ " lotion 50 0.5 0.86\n",
841
+ " speaker 50 0.52 0.68\n",
842
+ " loupe 50 0.32 0.52\n",
843
+ " sawmill 50 0.72 0.9\n",
844
+ " magnetic compass 50 0.52 0.82\n",
845
+ " mail bag 50 0.68 0.92\n",
846
+ " mailbox 50 0.82 0.92\n",
847
+ " tights 50 0.22 0.94\n",
848
+ " tank suit 50 0.24 0.9\n",
849
+ " manhole cover 50 0.96 0.98\n",
850
+ " maraca 50 0.74 0.9\n",
851
+ " marimba 50 0.84 0.94\n",
852
+ " mask 50 0.44 0.82\n",
853
+ " match 50 0.66 0.9\n",
854
+ " maypole 50 0.96 1\n",
855
+ " maze 50 0.8 0.96\n",
856
+ " measuring cup 50 0.54 0.76\n",
857
+ " medicine chest 50 0.6 0.84\n",
858
+ " megalith 50 0.8 0.92\n",
859
+ " microphone 50 0.52 0.7\n",
860
+ " microwave oven 50 0.48 0.72\n",
861
+ " military uniform 50 0.62 0.84\n",
862
+ " milk can 50 0.68 0.82\n",
863
+ " minibus 50 0.7 1\n",
864
+ " miniskirt 50 0.46 0.76\n",
865
+ " minivan 50 0.38 0.8\n",
866
+ " missile 50 0.4 0.84\n",
867
+ " mitten 50 0.76 0.88\n",
868
+ " mixing bowl 50 0.8 0.92\n",
869
+ " mobile home 50 0.54 0.78\n",
870
+ " Model T 50 0.92 0.96\n",
871
+ " modem 50 0.58 0.86\n",
872
+ " monastery 50 0.44 0.9\n",
873
+ " monitor 50 0.4 0.86\n",
874
+ " moped 50 0.56 0.94\n",
875
+ " mortar 50 0.68 0.94\n",
876
+ " square academic cap 50 0.5 0.84\n",
877
+ " mosque 50 0.9 1\n",
878
+ " mosquito net 50 0.9 0.98\n",
879
+ " scooter 50 0.9 0.98\n",
880
+ " mountain bike 50 0.78 0.96\n",
881
+ " tent 50 0.88 0.96\n",
882
+ " computer mouse 50 0.42 0.82\n",
883
+ " mousetrap 50 0.76 0.88\n",
884
+ " moving van 50 0.4 0.72\n",
885
+ " muzzle 50 0.5 0.72\n",
886
+ " nail 50 0.68 0.74\n",
887
+ " neck brace 50 0.56 0.68\n",
888
+ " necklace 50 0.86 1\n",
889
+ " nipple 50 0.7 0.88\n",
890
+ " notebook computer 50 0.34 0.84\n",
891
+ " obelisk 50 0.8 0.92\n",
892
+ " oboe 50 0.6 0.84\n",
893
+ " ocarina 50 0.8 0.86\n",
894
+ " odometer 50 0.96 1\n",
895
+ " oil filter 50 0.58 0.82\n",
896
+ " organ 50 0.82 0.9\n",
897
+ " oscilloscope 50 0.9 0.96\n",
898
+ " overskirt 50 0.2 0.7\n",
899
+ " bullock cart 50 0.7 0.94\n",
900
+ " oxygen mask 50 0.46 0.84\n",
901
+ " packet 50 0.5 0.78\n",
902
+ " paddle 50 0.56 0.94\n",
903
+ " paddle wheel 50 0.86 0.96\n",
904
+ " padlock 50 0.74 0.78\n",
905
+ " paintbrush 50 0.62 0.8\n",
906
+ " pajamas 50 0.56 0.92\n",
907
+ " palace 50 0.64 0.96\n",
908
+ " pan flute 50 0.84 0.86\n",
909
+ " paper towel 50 0.66 0.84\n",
910
+ " parachute 50 0.92 0.94\n",
911
+ " parallel bars 50 0.62 0.96\n",
912
+ " park bench 50 0.74 0.9\n",
913
+ " parking meter 50 0.84 0.92\n",
914
+ " passenger car 50 0.5 0.82\n",
915
+ " patio 50 0.58 0.84\n",
916
+ " payphone 50 0.74 0.92\n",
917
+ " pedestal 50 0.52 0.9\n",
918
+ " pencil case 50 0.64 0.92\n",
919
+ " pencil sharpener 50 0.52 0.78\n",
920
+ " perfume 50 0.7 0.9\n",
921
+ " Petri dish 50 0.6 0.8\n",
922
+ " photocopier 50 0.88 0.98\n",
923
+ " plectrum 50 0.7 0.84\n",
924
+ " Pickelhaube 50 0.72 0.86\n",
925
+ " picket fence 50 0.84 0.94\n",
926
+ " pickup truck 50 0.64 0.92\n",
927
+ " pier 50 0.52 0.82\n",
928
+ " piggy bank 50 0.82 0.94\n",
929
+ " pill bottle 50 0.76 0.86\n",
930
+ " pillow 50 0.76 0.9\n",
931
+ " ping-pong ball 50 0.84 0.88\n",
932
+ " pinwheel 50 0.76 0.88\n",
933
+ " pirate ship 50 0.76 0.94\n",
934
+ " pitcher 50 0.46 0.84\n",
935
+ " hand plane 50 0.84 0.94\n",
936
+ " planetarium 50 0.88 0.98\n",
937
+ " plastic bag 50 0.36 0.62\n",
938
+ " plate rack 50 0.52 0.78\n",
939
+ " plow 50 0.78 0.88\n",
940
+ " plunger 50 0.42 0.7\n",
941
+ " Polaroid camera 50 0.84 0.92\n",
942
+ " pole 50 0.38 0.74\n",
943
+ " police van 50 0.76 0.94\n",
944
+ " poncho 50 0.58 0.86\n",
945
+ " billiard table 50 0.8 0.88\n",
946
+ " soda bottle 50 0.56 0.94\n",
947
+ " pot 50 0.78 0.92\n",
948
+ " potter's wheel 50 0.9 0.94\n",
949
+ " power drill 50 0.42 0.72\n",
950
+ " prayer rug 50 0.7 0.86\n",
951
+ " printer 50 0.54 0.86\n",
952
+ " prison 50 0.7 0.9\n",
953
+ " projectile 50 0.28 0.9\n",
954
+ " projector 50 0.62 0.84\n",
955
+ " hockey puck 50 0.92 0.96\n",
956
+ " punching bag 50 0.6 0.68\n",
957
+ " purse 50 0.42 0.78\n",
958
+ " quill 50 0.68 0.84\n",
959
+ " quilt 50 0.64 0.9\n",
960
+ " race car 50 0.72 0.92\n",
961
+ " racket 50 0.72 0.9\n",
962
+ " radiator 50 0.66 0.76\n",
963
+ " radio 50 0.64 0.92\n",
964
+ " radio telescope 50 0.9 0.96\n",
965
+ " rain barrel 50 0.8 0.98\n",
966
+ " recreational vehicle 50 0.84 0.94\n",
967
+ " reel 50 0.72 0.82\n",
968
+ " reflex camera 50 0.72 0.92\n",
969
+ " refrigerator 50 0.7 0.9\n",
970
+ " remote control 50 0.7 0.88\n",
971
+ " restaurant 50 0.5 0.66\n",
972
+ " revolver 50 0.82 1\n",
973
+ " rifle 50 0.38 0.7\n",
974
+ " rocking chair 50 0.62 0.84\n",
975
+ " rotisserie 50 0.88 0.92\n",
976
+ " eraser 50 0.54 0.76\n",
977
+ " rugby ball 50 0.86 0.94\n",
978
+ " ruler 50 0.68 0.86\n",
979
+ " running shoe 50 0.78 0.94\n",
980
+ " safe 50 0.82 0.92\n",
981
+ " safety pin 50 0.4 0.62\n",
982
+ " salt shaker 50 0.66 0.9\n",
983
+ " sandal 50 0.66 0.86\n",
984
+ " sarong 50 0.64 0.86\n",
985
+ " saxophone 50 0.66 0.88\n",
986
+ " scabbard 50 0.76 0.92\n",
987
+ " weighing scale 50 0.58 0.78\n",
988
+ " school bus 50 0.92 1\n",
989
+ " schooner 50 0.84 1\n",
990
+ " scoreboard 50 0.9 0.96\n",
991
+ " CRT screen 50 0.14 0.7\n",
992
+ " screw 50 0.9 0.98\n",
993
+ " screwdriver 50 0.3 0.58\n",
994
+ " seat belt 50 0.88 0.94\n",
995
+ " sewing machine 50 0.76 0.9\n",
996
+ " shield 50 0.56 0.82\n",
997
+ " shoe store 50 0.78 0.96\n",
998
+ " shoji 50 0.8 0.92\n",
999
+ " shopping basket 50 0.52 0.88\n",
1000
+ " shopping cart 50 0.76 0.92\n",
1001
+ " shovel 50 0.62 0.84\n",
1002
+ " shower cap 50 0.7 0.84\n",
1003
+ " shower curtain 50 0.64 0.82\n",
1004
+ " ski 50 0.74 0.92\n",
1005
+ " ski mask 50 0.72 0.88\n",
1006
+ " sleeping bag 50 0.68 0.8\n",
1007
+ " slide rule 50 0.72 0.88\n",
1008
+ " sliding door 50 0.44 0.78\n",
1009
+ " slot machine 50 0.94 0.98\n",
1010
+ " snorkel 50 0.86 0.98\n",
1011
+ " snowmobile 50 0.88 1\n",
1012
+ " snowplow 50 0.84 0.98\n",
1013
+ " soap dispenser 50 0.56 0.86\n",
1014
+ " soccer ball 50 0.86 0.96\n",
1015
+ " sock 50 0.62 0.76\n",
1016
+ " solar thermal collector 50 0.72 0.96\n",
1017
+ " sombrero 50 0.6 0.84\n",
1018
+ " soup bowl 50 0.56 0.94\n",
1019
+ " space bar 50 0.34 0.88\n",
1020
+ " space heater 50 0.52 0.74\n",
1021
+ " space shuttle 50 0.82 0.96\n",
1022
+ " spatula 50 0.3 0.6\n",
1023
+ " motorboat 50 0.86 1\n",
1024
+ " spider web 50 0.7 0.9\n",
1025
+ " spindle 50 0.86 0.98\n",
1026
+ " sports car 50 0.6 0.94\n",
1027
+ " spotlight 50 0.26 0.6\n",
1028
+ " stage 50 0.68 0.86\n",
1029
+ " steam locomotive 50 0.94 1\n",
1030
+ " through arch bridge 50 0.84 0.96\n",
1031
+ " steel drum 50 0.82 0.9\n",
1032
+ " stethoscope 50 0.6 0.82\n",
1033
+ " scarf 50 0.5 0.92\n",
1034
+ " stone wall 50 0.76 0.9\n",
1035
+ " stopwatch 50 0.58 0.9\n",
1036
+ " stove 50 0.46 0.74\n",
1037
+ " strainer 50 0.64 0.84\n",
1038
+ " tram 50 0.88 0.96\n",
1039
+ " stretcher 50 0.6 0.8\n",
1040
+ " couch 50 0.8 0.96\n",
1041
+ " stupa 50 0.88 0.88\n",
1042
+ " submarine 50 0.72 0.92\n",
1043
+ " suit 50 0.4 0.78\n",
1044
+ " sundial 50 0.58 0.74\n",
1045
+ " sunglass 50 0.14 0.58\n",
1046
+ " sunglasses 50 0.28 0.58\n",
1047
+ " sunscreen 50 0.32 0.7\n",
1048
+ " suspension bridge 50 0.6 0.94\n",
1049
+ " mop 50 0.74 0.92\n",
1050
+ " sweatshirt 50 0.28 0.66\n",
1051
+ " swimsuit 50 0.52 0.82\n",
1052
+ " swing 50 0.76 0.84\n",
1053
+ " switch 50 0.56 0.76\n",
1054
+ " syringe 50 0.62 0.82\n",
1055
+ " table lamp 50 0.6 0.88\n",
1056
+ " tank 50 0.8 0.96\n",
1057
+ " tape player 50 0.46 0.76\n",
1058
+ " teapot 50 0.84 1\n",
1059
+ " teddy bear 50 0.82 0.94\n",
1060
+ " television 50 0.6 0.9\n",
1061
+ " tennis ball 50 0.7 0.94\n",
1062
+ " thatched roof 50 0.88 0.9\n",
1063
+ " front curtain 50 0.8 0.92\n",
1064
+ " thimble 50 0.6 0.8\n",
1065
+ " threshing machine 50 0.56 0.88\n",
1066
+ " throne 50 0.72 0.82\n",
1067
+ " tile roof 50 0.72 0.94\n",
1068
+ " toaster 50 0.66 0.84\n",
1069
+ " tobacco shop 50 0.42 0.7\n",
1070
+ " toilet seat 50 0.62 0.88\n",
1071
+ " torch 50 0.64 0.84\n",
1072
+ " totem pole 50 0.92 0.98\n",
1073
+ " tow truck 50 0.62 0.88\n",
1074
+ " toy store 50 0.6 0.94\n",
1075
+ " tractor 50 0.76 0.98\n",
1076
+ " semi-trailer truck 50 0.78 0.92\n",
1077
+ " tray 50 0.46 0.64\n",
1078
+ " trench coat 50 0.54 0.72\n",
1079
+ " tricycle 50 0.72 0.94\n",
1080
+ " trimaran 50 0.7 0.98\n",
1081
+ " tripod 50 0.58 0.86\n",
1082
+ " triumphal arch 50 0.92 0.98\n",
1083
+ " trolleybus 50 0.9 1\n",
1084
+ " trombone 50 0.54 0.88\n",
1085
+ " tub 50 0.24 0.82\n",
1086
+ " turnstile 50 0.84 0.94\n",
1087
+ " typewriter keyboard 50 0.68 0.98\n",
1088
+ " umbrella 50 0.52 0.7\n",
1089
+ " unicycle 50 0.74 0.96\n",
1090
+ " upright piano 50 0.76 0.9\n",
1091
+ " vacuum cleaner 50 0.62 0.9\n",
1092
+ " vase 50 0.5 0.78\n",
1093
+ " vault 50 0.76 0.92\n",
1094
+ " velvet 50 0.2 0.42\n",
1095
+ " vending machine 50 0.9 1\n",
1096
+ " vestment 50 0.54 0.82\n",
1097
+ " viaduct 50 0.78 0.86\n",
1098
+ " violin 50 0.68 0.78\n",
1099
+ " volleyball 50 0.86 1\n",
1100
+ " waffle iron 50 0.72 0.88\n",
1101
+ " wall clock 50 0.54 0.88\n",
1102
+ " wallet 50 0.52 0.9\n",
1103
+ " wardrobe 50 0.68 0.88\n",
1104
+ " military aircraft 50 0.9 0.98\n",
1105
+ " sink 50 0.72 0.96\n",
1106
+ " washing machine 50 0.78 0.94\n",
1107
+ " water bottle 50 0.54 0.74\n",
1108
+ " water jug 50 0.22 0.74\n",
1109
+ " water tower 50 0.9 0.96\n",
1110
+ " whiskey jug 50 0.64 0.74\n",
1111
+ " whistle 50 0.72 0.84\n",
1112
+ " wig 50 0.84 0.9\n",
1113
+ " window screen 50 0.68 0.8\n",
1114
+ " window shade 50 0.52 0.76\n",
1115
+ " Windsor tie 50 0.22 0.66\n",
1116
+ " wine bottle 50 0.42 0.82\n",
1117
+ " wing 50 0.54 0.96\n",
1118
+ " wok 50 0.46 0.82\n",
1119
+ " wooden spoon 50 0.58 0.8\n",
1120
+ " wool 50 0.32 0.82\n",
1121
+ " split-rail fence 50 0.74 0.9\n",
1122
+ " shipwreck 50 0.84 0.96\n",
1123
+ " yawl 50 0.78 0.96\n",
1124
+ " yurt 50 0.84 1\n",
1125
+ " website 50 0.98 1\n",
1126
+ " comic book 50 0.62 0.9\n",
1127
+ " crossword 50 0.84 0.88\n",
1128
+ " traffic sign 50 0.78 0.9\n",
1129
+ " traffic light 50 0.8 0.94\n",
1130
+ " dust jacket 50 0.72 0.94\n",
1131
+ " menu 50 0.82 0.96\n",
1132
+ " plate 50 0.44 0.88\n",
1133
+ " guacamole 50 0.8 0.92\n",
1134
+ " consomme 50 0.54 0.88\n",
1135
+ " hot pot 50 0.86 0.98\n",
1136
+ " trifle 50 0.92 0.98\n",
1137
+ " ice cream 50 0.68 0.94\n",
1138
+ " ice pop 50 0.62 0.84\n",
1139
+ " baguette 50 0.62 0.88\n",
1140
+ " bagel 50 0.64 0.92\n",
1141
+ " pretzel 50 0.72 0.88\n",
1142
+ " cheeseburger 50 0.9 1\n",
1143
+ " hot dog 50 0.74 0.94\n",
1144
+ " mashed potato 50 0.74 0.9\n",
1145
+ " cabbage 50 0.84 0.96\n",
1146
+ " broccoli 50 0.9 0.96\n",
1147
+ " cauliflower 50 0.82 1\n",
1148
+ " zucchini 50 0.74 0.9\n",
1149
+ " spaghetti squash 50 0.8 0.96\n",
1150
+ " acorn squash 50 0.82 0.96\n",
1151
+ " butternut squash 50 0.7 0.94\n",
1152
+ " cucumber 50 0.6 0.96\n",
1153
+ " artichoke 50 0.84 0.94\n",
1154
+ " bell pepper 50 0.84 0.98\n",
1155
+ " cardoon 50 0.88 0.94\n",
1156
+ " mushroom 50 0.38 0.92\n",
1157
+ " Granny Smith 50 0.9 0.96\n",
1158
+ " strawberry 50 0.6 0.88\n",
1159
+ " orange 50 0.7 0.92\n",
1160
+ " lemon 50 0.78 0.98\n",
1161
+ " fig 50 0.82 0.96\n",
1162
+ " pineapple 50 0.86 0.96\n",
1163
+ " banana 50 0.84 0.96\n",
1164
+ " jackfruit 50 0.9 0.98\n",
1165
+ " custard apple 50 0.86 0.96\n",
1166
+ " pomegranate 50 0.82 0.98\n",
1167
+ " hay 50 0.8 0.92\n",
1168
+ " carbonara 50 0.88 0.94\n",
1169
+ " chocolate syrup 50 0.46 0.84\n",
1170
+ " dough 50 0.4 0.6\n",
1171
+ " meatloaf 50 0.58 0.84\n",
1172
+ " pizza 50 0.84 0.96\n",
1173
+ " pot pie 50 0.68 0.9\n",
1174
+ " burrito 50 0.8 0.98\n",
1175
+ " red wine 50 0.54 0.82\n",
1176
+ " espresso 50 0.64 0.88\n",
1177
+ " cup 50 0.38 0.7\n",
1178
+ " eggnog 50 0.38 0.7\n",
1179
+ " alp 50 0.54 0.88\n",
1180
+ " bubble 50 0.8 0.96\n",
1181
+ " cliff 50 0.64 1\n",
1182
+ " coral reef 50 0.72 0.96\n",
1183
+ " geyser 50 0.94 1\n",
1184
+ " lakeshore 50 0.54 0.88\n",
1185
+ " promontory 50 0.58 0.94\n",
1186
+ " shoal 50 0.6 0.96\n",
1187
+ " seashore 50 0.44 0.78\n",
1188
+ " valley 50 0.72 0.94\n",
1189
+ " volcano 50 0.78 0.96\n",
1190
+ " baseball player 50 0.72 0.94\n",
1191
+ " bridegroom 50 0.72 0.88\n",
1192
+ " scuba diver 50 0.8 1\n",
1193
+ " rapeseed 50 0.94 0.98\n",
1194
+ " daisy 50 0.96 0.98\n",
1195
+ " yellow lady's slipper 50 1 1\n",
1196
+ " corn 50 0.4 0.88\n",
1197
+ " acorn 50 0.92 0.98\n",
1198
+ " rose hip 50 0.92 0.98\n",
1199
+ " horse chestnut seed 50 0.94 0.98\n",
1200
+ " coral fungus 50 0.96 0.96\n",
1201
+ " agaric 50 0.82 0.94\n",
1202
+ " gyromitra 50 0.98 1\n",
1203
+ " stinkhorn mushroom 50 0.8 0.94\n",
1204
+ " earth star 50 0.98 1\n",
1205
+ " hen-of-the-woods 50 0.8 0.96\n",
1206
+ " bolete 50 0.74 0.94\n",
1207
+ " ear 50 0.48 0.94\n",
1208
+ " toilet paper 50 0.36 0.68\n",
1209
+ "Speed: 0.1ms pre-process, 0.3ms inference, 0.0ms post-process per image at shape (1, 3, 224, 224)\n",
1210
+ "Results saved to \u001b[1mruns/val-cls/exp\u001b[0m\n"
1211
+ ]
1212
+ }
1213
+ ],
1214
+ "source": [
1215
+ "# Validate YOLOv5s on Imagenet val\n",
1216
+ "!python classify/val.py --weights yolov5s-cls.pt --data ../datasets/imagenet --img 224 --half"
1217
+ ]
1218
+ },
1219
+ {
1220
+ "cell_type": "markdown",
1221
+ "metadata": {
1222
+ "id": "ZY2VXXXu74w5"
1223
+ },
1224
+ "source": [
1225
+ "# 3. Train\n",
1226
+ "\n",
1227
+ "<p align=\"\"><a href=\"https://roboflow.com/?ref=ultralytics\"><img width=\"1000\" src=\"https://github.com/ultralytics/assets/raw/main/im/integrations-loop.png\"/></a></p>\n",
1228
+ "Close the active learning loop by sampling images from your inference conditions with the `roboflow` pip package\n",
1229
+ "<br><br>\n",
1230
+ "\n",
1231
+ "Train a YOLOv5s Classification model on the [Imagenette](https://image-net.org/) dataset with `--data imagenet`, starting from pretrained `--pretrained yolov5s-cls.pt`.\n",
1232
+ "\n",
1233
+ "- **Pretrained [Models](https://github.com/ultralytics/yolov5/tree/master/models)** are downloaded\n",
1234
+ "automatically from the [latest YOLOv5 release](https://github.com/ultralytics/yolov5/releases)\n",
1235
+ "- **Training Results** are saved to `runs/train-cls/` with incrementing run directories, i.e. `runs/train-cls/exp2`, `runs/train-cls/exp3` etc.\n",
1236
+ "<br><br>\n",
1237
+ "\n",
1238
+ "A **Mosaic Dataloader** is used for training which combines 4 images into 1 mosaic.\n",
1239
+ "\n",
1240
+ "## Train on Custom Data with Roboflow 🌟 NEW\n",
1241
+ "\n",
1242
+ "[Roboflow](https://roboflow.com/?ref=ultralytics) enables you to easily **organize, label, and prepare** a high quality dataset with your own custom data. Roboflow also makes it easy to establish an active learning pipeline, collaborate with your team on dataset improvement, and integrate directly into your model building workflow with the `roboflow` pip package.\n",
1243
+ "\n",
1244
+ "- Custom Training Example: [https://blog.roboflow.com/train-yolov5-classification-custom-data/](https://blog.roboflow.com/train-yolov5-classification-custom-data/?ref=ultralytics)\n",
1245
+ "- Custom Training Notebook: [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1KZiKUAjtARHAfZCXbJRv14-pOnIsBLPV?usp=sharing)\n",
1246
+ "<br>\n",
1247
+ "\n",
1248
+ "<p align=\"\"><a href=\"https://roboflow.com/?ref=ultralytics\"><img width=\"480\" src=\"https://user-images.githubusercontent.com/26833433/202802162-92e60571-ab58-4409-948d-b31fddcd3c6f.png\"/></a></p>Label images lightning fast (including with model-assisted labeling)"
1249
+ ]
1250
+ },
1251
+ {
1252
+ "cell_type": "code",
1253
+ "execution_count": null,
1254
+ "metadata": {
1255
+ "id": "i3oKtE4g-aNn"
1256
+ },
1257
+ "outputs": [],
1258
+ "source": [
1259
+ "# @title Select YOLOv5 🚀 logger {run: 'auto'}\n",
1260
+ "logger = \"Comet\" # @param ['Comet', 'ClearML', 'TensorBoard']\n",
1261
+ "\n",
1262
+ "if logger == \"Comet\":\n",
1263
+ " %pip install -q comet_ml\n",
1264
+ " import comet_ml\n",
1265
+ "\n",
1266
+ " comet_ml.init()\n",
1267
+ "elif logger == \"ClearML\":\n",
1268
+ " %pip install -q clearml\n",
1269
+ " import clearml\n",
1270
+ "\n",
1271
+ " clearml.browser_login()\n",
1272
+ "elif logger == \"TensorBoard\":\n",
1273
+ " %load_ext tensorboard\n",
1274
+ " %tensorboard --logdir runs/train"
1275
+ ]
1276
+ },
1277
+ {
1278
+ "cell_type": "code",
1279
+ "execution_count": null,
1280
+ "metadata": {
1281
+ "colab": {
1282
+ "base_uri": "https://localhost:8080/"
1283
+ },
1284
+ "id": "1NcFxRcFdJ_O",
1285
+ "outputId": "77c8d487-16db-4073-b3ea-06cabf2e7766"
1286
+ },
1287
+ "outputs": [
1288
+ {
1289
+ "name": "stdout",
1290
+ "output_type": "stream",
1291
+ "text": [
1292
+ "\u001b[34m\u001b[1mclassify/train: \u001b[0mmodel=yolov5s-cls.pt, data=imagenette160, epochs=5, batch_size=64, imgsz=224, nosave=False, cache=ram, device=, workers=8, project=runs/train-cls, name=exp, exist_ok=False, pretrained=True, optimizer=Adam, lr0=0.001, decay=5e-05, label_smoothing=0.1, cutoff=None, dropout=None, verbose=False, seed=0, local_rank=-1\n",
1293
+ "\u001b[34m\u001b[1mgithub: \u001b[0mup to date with https://github.com/ultralytics/yolov5 ✅\n",
1294
+ "YOLOv5 🚀 v7.0-3-g61ebf5e Python-3.7.15 torch-1.12.1+cu113 CUDA:0 (Tesla T4, 15110MiB)\n",
1295
+ "\n",
1296
+ "\u001b[34m\u001b[1mTensorBoard: \u001b[0mStart with 'tensorboard --logdir runs/train-cls', view at http://localhost:6006/\n",
1297
+ "\n",
1298
+ "Dataset not found ⚠️, missing path /content/datasets/imagenette160, attempting download...\n",
1299
+ "Downloading https://github.com/ultralytics/assets/releases/download/v0.0.0/imagenette160.zip to /content/datasets/imagenette160.zip...\n",
1300
+ "100% 103M/103M [00:00<00:00, 347MB/s] \n",
1301
+ "Unzipping /content/datasets/imagenette160.zip...\n",
1302
+ "Dataset download success ✅ (3.3s), saved to \u001b[1m/content/datasets/imagenette160\u001b[0m\n",
1303
+ "\n",
1304
+ "\u001b[34m\u001b[1malbumentations: \u001b[0mRandomResizedCrop(p=1.0, height=224, width=224, scale=(0.08, 1.0), ratio=(0.75, 1.3333333333333333), interpolation=1), HorizontalFlip(p=0.5), ColorJitter(p=0.5, brightness=[0.6, 1.4], contrast=[0.6, 1.4], saturation=[0.6, 1.4], hue=[0, 0]), Normalize(p=1.0, mean=(0.485, 0.456, 0.406), std=(0.229, 0.224, 0.225), max_pixel_value=255.0), ToTensorV2(always_apply=True, p=1.0, transpose_mask=False)\n",
1305
+ "Model summary: 149 layers, 4185290 parameters, 4185290 gradients, 10.5 GFLOPs\n",
1306
+ "\u001b[34m\u001b[1moptimizer:\u001b[0m Adam(lr=0.001) with parameter groups 32 weight(decay=0.0), 33 weight(decay=5e-05), 33 bias\n",
1307
+ "Image sizes 224 train, 224 test\n",
1308
+ "Using 1 dataloader workers\n",
1309
+ "Logging results to \u001b[1mruns/train-cls/exp\u001b[0m\n",
1310
+ "Starting yolov5s-cls.pt training on imagenette160 dataset with 10 classes for 5 epochs...\n",
1311
+ "\n",
1312
+ " Epoch GPU_mem train_loss val_loss top1_acc top5_acc\n",
1313
+ " 1/5 1.47G 1.05 0.974 0.828 0.975: 100% 148/148 [00:38<00:00, 3.82it/s]\n",
1314
+ " 2/5 1.73G 0.895 0.766 0.911 0.994: 100% 148/148 [00:36<00:00, 4.03it/s]\n",
1315
+ " 3/5 1.73G 0.82 0.704 0.934 0.996: 100% 148/148 [00:35<00:00, 4.20it/s]\n",
1316
+ " 4/5 1.73G 0.766 0.664 0.951 0.998: 100% 148/148 [00:36<00:00, 4.05it/s]\n",
1317
+ " 5/5 1.73G 0.724 0.634 0.959 0.997: 100% 148/148 [00:37<00:00, 3.94it/s]\n",
1318
+ "\n",
1319
+ "Training complete (0.052 hours)\n",
1320
+ "Results saved to \u001b[1mruns/train-cls/exp\u001b[0m\n",
1321
+ "Predict: python classify/predict.py --weights runs/train-cls/exp/weights/best.pt --source im.jpg\n",
1322
+ "Validate: python classify/val.py --weights runs/train-cls/exp/weights/best.pt --data /content/datasets/imagenette160\n",
1323
+ "Export: python export.py --weights runs/train-cls/exp/weights/best.pt --include onnx\n",
1324
+ "PyTorch Hub: model = torch.hub.load('ultralytics/yolov5', 'custom', 'runs/train-cls/exp/weights/best.pt')\n",
1325
+ "Visualize: https://netron.app\n",
1326
+ "\n"
1327
+ ]
1328
+ }
1329
+ ],
1330
+ "source": [
1331
+ "# Train YOLOv5s Classification on Imagenette160 for 3 epochs\n",
1332
+ "!python classify/train.py --model yolov5s-cls.pt --data imagenette160 --epochs 5 --img 224 --cache"
1333
+ ]
1334
+ },
1335
+ {
1336
+ "cell_type": "markdown",
1337
+ "metadata": {
1338
+ "id": "15glLzbQx5u0"
1339
+ },
1340
+ "source": [
1341
+ "# 4. Visualize"
1342
+ ]
1343
+ },
1344
+ {
1345
+ "cell_type": "markdown",
1346
+ "metadata": {
1347
+ "id": "nWOsI5wJR1o3"
1348
+ },
1349
+ "source": [
1350
+ "## Comet Logging and Visualization 🌟 NEW\n",
1351
+ "\n",
1352
+ "[Comet](https://www.comet.com/site/lp/yolov5-with-comet/?utm_source=yolov5&utm_medium=partner&utm_campaign=partner_yolov5_2022&utm_content=yolov5_colab) is now fully integrated with YOLOv5. Track and visualize model metrics in real time, save your hyperparameters, datasets, and model checkpoints, and visualize your model predictions with [Comet Custom Panels](https://www.comet.com/docs/v2/guides/comet-dashboard/code-panels/about-panels/?utm_source=yolov5&utm_medium=partner&utm_campaign=partner_yolov5_2022&utm_content=yolov5_colab)! Comet makes sure you never lose track of your work and makes it easy to share results and collaborate across teams of all sizes!\n",
1353
+ "\n",
1354
+ "Getting started is easy:\n",
1355
+ "```shell\n",
1356
+ "pip install comet_ml # 1. install\n",
1357
+ "export COMET_API_KEY=<Your API Key> # 2. paste API key\n",
1358
+ "python train.py --img 640 --epochs 3 --data coco128.yaml --weights yolov5s.pt # 3. train\n",
1359
+ "```\n",
1360
+ "To learn more about all of the supported Comet features for this integration, check out the [Comet Tutorial](https://docs.ultralytics.com/yolov5/tutorials/comet_logging_integration). If you'd like to learn more about Comet, head over to our [documentation](https://www.comet.com/docs/v2/?utm_source=yolov5&utm_medium=partner&utm_campaign=partner_yolov5_2022&utm_content=yolov5_colab). Get started by trying out the Comet Colab Notebook:\n",
1361
+ "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1RG0WOQyxlDlo5Km8GogJpIEJlg_5lyYO?usp=sharing)\n",
1362
+ "\n",
1363
+ "<a href=\"https://bit.ly/yolov5-readme-comet2\">\n",
1364
+ "<img alt=\"Comet Dashboard\" src=\"https://user-images.githubusercontent.com/26833433/202851203-164e94e1-2238-46dd-91f8-de020e9d6b41.png\" width=\"1280\"/></a>"
1365
+ ]
1366
+ },
1367
+ {
1368
+ "cell_type": "markdown",
1369
+ "metadata": {
1370
+ "id": "Lay2WsTjNJzP"
1371
+ },
1372
+ "source": [
1373
+ "## ClearML Logging and Automation 🌟 NEW\n",
1374
+ "\n",
1375
+ "[ClearML](https://cutt.ly/yolov5-notebook-clearml) is completely integrated into YOLOv5 to track your experimentation, manage dataset versions and even remotely execute training runs. To enable ClearML (check cells above):\n",
1376
+ "\n",
1377
+ "- `pip install clearml`\n",
1378
+ "- run `clearml-init` to connect to a ClearML server (**deploy your own [open-source server](https://github.com/allegroai/clearml-server)**, or use our [free hosted server](https://cutt.ly/yolov5-notebook-clearml))\n",
1379
+ "\n",
1380
+ "You'll get all the great expected features from an experiment manager: live updates, model upload, experiment comparison etc. but ClearML also tracks uncommitted changes and installed packages for example. Thanks to that ClearML Tasks (which is what we call experiments) are also reproducible on different machines! With only 1 extra line, we can schedule a YOLOv5 training task on a queue to be executed by any number of ClearML Agents (workers).\n",
1381
+ "\n",
1382
+ "You can use ClearML Data to version your dataset and then pass it to YOLOv5 simply using its unique ID. This will help you keep track of your data without adding extra hassle. Explore the [ClearML Tutorial](https://docs.ultralytics.com/yolov5/tutorials/clearml_logging_integration) for details!\n",
1383
+ "\n",
1384
+ "<a href=\"https://cutt.ly/yolov5-notebook-clearml\">\n",
1385
+ "<img alt=\"ClearML Experiment Management UI\" src=\"https://github.com/thepycoder/clearml_screenshots/raw/main/scalars.jpg\" width=\"1280\"/></a>"
1386
+ ]
1387
+ },
1388
+ {
1389
+ "cell_type": "markdown",
1390
+ "metadata": {
1391
+ "id": "-WPvRbS5Swl6"
1392
+ },
1393
+ "source": [
1394
+ "## Local Logging\n",
1395
+ "\n",
1396
+ "Training results are automatically logged with [Tensorboard](https://www.tensorflow.org/tensorboard) and [CSV](https://github.com/ultralytics/yolov5/pull/4148) loggers to `runs/train`, with a new experiment directory created for each new training as `runs/train/exp2`, `runs/train/exp3`, etc.\n",
1397
+ "\n",
1398
+ "This directory contains train and val statistics, mosaics, labels, predictions and augmentated mosaics, as well as metrics and charts including precision-recall (PR) curves and confusion matrices. \n",
1399
+ "\n",
1400
+ "<img alt=\"Local logging results\" src=\"https://user-images.githubusercontent.com/26833433/183222430-e1abd1b7-782c-4cde-b04d-ad52926bf818.jpg\" width=\"1280\"/>\n"
1401
+ ]
1402
+ },
1403
+ {
1404
+ "cell_type": "markdown",
1405
+ "metadata": {
1406
+ "id": "Zelyeqbyt3GD"
1407
+ },
1408
+ "source": [
1409
+ "# Environments\n",
1410
+ "\n",
1411
+ "YOLOv5 may be run in any of the following up-to-date verified environments (with all dependencies including [CUDA](https://developer.nvidia.com/cuda)/[CUDNN](https://developer.nvidia.com/cudnn), [Python](https://www.python.org/) and [PyTorch](https://pytorch.org/) preinstalled):\n",
1412
+ "\n",
1413
+ "- **Notebooks** with free GPU: <a href=\"https://bit.ly/yolov5-paperspace-notebook\"><img src=\"https://assets.paperspace.io/img/gradient-badge.svg\" alt=\"Run on Gradient\"></a> <a href=\"https://colab.research.google.com/github/ultralytics/yolov5/blob/master/tutorial.ipynb\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"></a> <a href=\"https://www.kaggle.com/ultralytics/yolov5\"><img src=\"https://kaggle.com/static/images/open-in-kaggle.svg\" alt=\"Open In Kaggle\"></a>\n",
1414
+ "- **Google Cloud** Deep Learning VM. See [GCP Quickstart Guide](https://docs.ultralytics.com/yolov5/environments/google_cloud_quickstart_tutorial/)\n",
1415
+ "- **Amazon** Deep Learning AMI. See [AWS Quickstart Guide](https://docs.ultralytics.com/yolov5/environments/aws_quickstart_tutorial/)\n",
1416
+ "- **Docker Image**. See [Docker Quickstart Guide](https://docs.ultralytics.com/yolov5/environments/docker_image_quickstart_tutorial/) <a href=\"https://hub.docker.com/r/ultralytics/yolov5\"><img src=\"https://img.shields.io/docker/pulls/ultralytics/yolov5?logo=docker\" alt=\"Docker Pulls\"></a>\n"
1417
+ ]
1418
+ },
1419
+ {
1420
+ "cell_type": "markdown",
1421
+ "metadata": {
1422
+ "id": "6Qu7Iesl0p54"
1423
+ },
1424
+ "source": [
1425
+ "# Status\n",
1426
+ "\n",
1427
+ "![YOLOv5 CI](https://github.com/ultralytics/yolov5/actions/workflows/ci-testing.yml/badge.svg)\n",
1428
+ "\n",
1429
+ "If this badge is green, all [YOLOv5 GitHub Actions](https://github.com/ultralytics/yolov5/actions) Continuous Integration (CI) tests are currently passing. CI tests verify correct operation of YOLOv5 training ([train.py](https://github.com/ultralytics/yolov5/blob/master/train.py)), testing ([val.py](https://github.com/ultralytics/yolov5/blob/master/val.py)), inference ([detect.py](https://github.com/ultralytics/yolov5/blob/master/detect.py)) and export ([export.py](https://github.com/ultralytics/yolov5/blob/master/export.py)) on macOS, Windows, and Ubuntu every 24 hours and on every commit.\n"
1430
+ ]
1431
+ },
1432
+ {
1433
+ "cell_type": "markdown",
1434
+ "metadata": {
1435
+ "id": "IEijrePND_2I"
1436
+ },
1437
+ "source": [
1438
+ "# Appendix\n",
1439
+ "\n",
1440
+ "Additional content below."
1441
+ ]
1442
+ },
1443
+ {
1444
+ "cell_type": "code",
1445
+ "execution_count": null,
1446
+ "metadata": {
1447
+ "id": "GMusP4OAxFu6"
1448
+ },
1449
+ "outputs": [],
1450
+ "source": [
1451
+ "# YOLOv5 PyTorch HUB Inference (DetectionModels only)\n",
1452
+ "\n",
1453
+ "model = torch.hub.load(\n",
1454
+ " \"ultralytics/yolov5\", \"yolov5s\", force_reload=True, trust_repo=True\n",
1455
+ ") # or yolov5n - yolov5x6 or custom\n",
1456
+ "im = \"https://ultralytics.com/images/zidane.jpg\" # file, Path, PIL.Image, OpenCV, nparray, list\n",
1457
+ "results = model(im) # inference\n",
1458
+ "results.print() # or .show(), .save(), .crop(), .pandas(), etc."
1459
+ ]
1460
+ }
1461
+ ],
1462
+ "metadata": {
1463
+ "accelerator": "GPU",
1464
+ "colab": {
1465
+ "name": "YOLOv5 Classification Tutorial",
1466
+ "provenance": []
1467
+ },
1468
+ "kernelspec": {
1469
+ "display_name": "Python 3 (ipykernel)",
1470
+ "language": "python",
1471
+ "name": "python3"
1472
+ },
1473
+ "language_info": {
1474
+ "codemirror_mode": {
1475
+ "name": "ipython",
1476
+ "version": 3
1477
+ },
1478
+ "file_extension": ".py",
1479
+ "mimetype": "text/x-python",
1480
+ "name": "python",
1481
+ "nbconvert_exporter": "python",
1482
+ "pygments_lexer": "ipython3",
1483
+ "version": "3.7.12"
1484
+ }
1485
+ },
1486
+ "nbformat": 4,
1487
+ "nbformat_minor": 0
1488
+ }
yolov5/classify/val.py ADDED
@@ -0,0 +1,178 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ """
3
+ Validate a trained YOLOv5 classification model on a classification dataset.
4
+
5
+ Usage:
6
+ $ bash data/scripts/get_imagenet.sh --val # download ImageNet val split (6.3G, 50000 images)
7
+ $ python classify/val.py --weights yolov5m-cls.pt --data ../datasets/imagenet --img 224 # validate ImageNet
8
+
9
+ Usage - formats:
10
+ $ python classify/val.py --weights yolov5s-cls.pt # PyTorch
11
+ yolov5s-cls.torchscript # TorchScript
12
+ yolov5s-cls.onnx # ONNX Runtime or OpenCV DNN with --dnn
13
+ yolov5s-cls_openvino_model # OpenVINO
14
+ yolov5s-cls.engine # TensorRT
15
+ yolov5s-cls.mlmodel # CoreML (macOS-only)
16
+ yolov5s-cls_saved_model # TensorFlow SavedModel
17
+ yolov5s-cls.pb # TensorFlow GraphDef
18
+ yolov5s-cls.tflite # TensorFlow Lite
19
+ yolov5s-cls_edgetpu.tflite # TensorFlow Edge TPU
20
+ yolov5s-cls_paddle_model # PaddlePaddle
21
+ """
22
+
23
+ import argparse
24
+ import os
25
+ import sys
26
+ from pathlib import Path
27
+
28
+ import torch
29
+ from tqdm import tqdm
30
+
31
+ FILE = Path(__file__).resolve()
32
+ ROOT = FILE.parents[1] # YOLOv5 root directory
33
+ if str(ROOT) not in sys.path:
34
+ sys.path.append(str(ROOT)) # add ROOT to PATH
35
+ ROOT = Path(os.path.relpath(ROOT, Path.cwd())) # relative
36
+
37
+ from models.common import DetectMultiBackend
38
+ from utils.dataloaders import create_classification_dataloader
39
+ from utils.general import (
40
+ LOGGER,
41
+ TQDM_BAR_FORMAT,
42
+ Profile,
43
+ check_img_size,
44
+ check_requirements,
45
+ colorstr,
46
+ increment_path,
47
+ print_args,
48
+ )
49
+ from utils.torch_utils import select_device, smart_inference_mode
50
+
51
+
52
+ @smart_inference_mode()
53
+ def run(
54
+ data=ROOT / "../datasets/mnist", # dataset dir
55
+ weights=ROOT / "yolov5s-cls.pt", # model.pt path(s)
56
+ batch_size=128, # batch size
57
+ imgsz=224, # inference size (pixels)
58
+ device="", # cuda device, i.e. 0 or 0,1,2,3 or cpu
59
+ workers=8, # max dataloader workers (per RANK in DDP mode)
60
+ verbose=False, # verbose output
61
+ project=ROOT / "runs/val-cls", # save to project/name
62
+ name="exp", # save to project/name
63
+ exist_ok=False, # existing project/name ok, do not increment
64
+ half=False, # use FP16 half-precision inference
65
+ dnn=False, # use OpenCV DNN for ONNX inference
66
+ model=None,
67
+ dataloader=None,
68
+ criterion=None,
69
+ pbar=None,
70
+ ):
71
+ """Validates a YOLOv5 classification model on a dataset, computing metrics like top1 and top5 accuracy."""
72
+ # Initialize/load model and set device
73
+ training = model is not None
74
+ if training: # called by train.py
75
+ device, pt, jit, engine = next(model.parameters()).device, True, False, False # get model device, PyTorch model
76
+ half &= device.type != "cpu" # half precision only supported on CUDA
77
+ model.half() if half else model.float()
78
+ else: # called directly
79
+ device = select_device(device, batch_size=batch_size)
80
+
81
+ # Directories
82
+ save_dir = increment_path(Path(project) / name, exist_ok=exist_ok) # increment run
83
+ save_dir.mkdir(parents=True, exist_ok=True) # make dir
84
+
85
+ # Load model
86
+ model = DetectMultiBackend(weights, device=device, dnn=dnn, fp16=half)
87
+ stride, pt, jit, engine = model.stride, model.pt, model.jit, model.engine
88
+ imgsz = check_img_size(imgsz, s=stride) # check image size
89
+ half = model.fp16 # FP16 supported on limited backends with CUDA
90
+ if engine:
91
+ batch_size = model.batch_size
92
+ else:
93
+ device = model.device
94
+ if not (pt or jit):
95
+ batch_size = 1 # export.py models default to batch-size 1
96
+ LOGGER.info(f"Forcing --batch-size 1 square inference (1,3,{imgsz},{imgsz}) for non-PyTorch models")
97
+
98
+ # Dataloader
99
+ data = Path(data)
100
+ test_dir = data / "test" if (data / "test").exists() else data / "val" # data/test or data/val
101
+ dataloader = create_classification_dataloader(
102
+ path=test_dir, imgsz=imgsz, batch_size=batch_size, augment=False, rank=-1, workers=workers
103
+ )
104
+
105
+ model.eval()
106
+ pred, targets, loss, dt = [], [], 0, (Profile(device=device), Profile(device=device), Profile(device=device))
107
+ n = len(dataloader) # number of batches
108
+ action = "validating" if dataloader.dataset.root.stem == "val" else "testing"
109
+ desc = f"{pbar.desc[:-36]}{action:>36}" if pbar else f"{action}"
110
+ bar = tqdm(dataloader, desc, n, not training, bar_format=TQDM_BAR_FORMAT, position=0)
111
+ with torch.cuda.amp.autocast(enabled=device.type != "cpu"):
112
+ for images, labels in bar:
113
+ with dt[0]:
114
+ images, labels = images.to(device, non_blocking=True), labels.to(device)
115
+
116
+ with dt[1]:
117
+ y = model(images)
118
+
119
+ with dt[2]:
120
+ pred.append(y.argsort(1, descending=True)[:, :5])
121
+ targets.append(labels)
122
+ if criterion:
123
+ loss += criterion(y, labels)
124
+
125
+ loss /= n
126
+ pred, targets = torch.cat(pred), torch.cat(targets)
127
+ correct = (targets[:, None] == pred).float()
128
+ acc = torch.stack((correct[:, 0], correct.max(1).values), dim=1) # (top1, top5) accuracy
129
+ top1, top5 = acc.mean(0).tolist()
130
+
131
+ if pbar:
132
+ pbar.desc = f"{pbar.desc[:-36]}{loss:>12.3g}{top1:>12.3g}{top5:>12.3g}"
133
+ if verbose: # all classes
134
+ LOGGER.info(f"{'Class':>24}{'Images':>12}{'top1_acc':>12}{'top5_acc':>12}")
135
+ LOGGER.info(f"{'all':>24}{targets.shape[0]:>12}{top1:>12.3g}{top5:>12.3g}")
136
+ for i, c in model.names.items():
137
+ acc_i = acc[targets == i]
138
+ top1i, top5i = acc_i.mean(0).tolist()
139
+ LOGGER.info(f"{c:>24}{acc_i.shape[0]:>12}{top1i:>12.3g}{top5i:>12.3g}")
140
+
141
+ # Print results
142
+ t = tuple(x.t / len(dataloader.dataset.samples) * 1e3 for x in dt) # speeds per image
143
+ shape = (1, 3, imgsz, imgsz)
144
+ LOGGER.info(f"Speed: %.1fms pre-process, %.1fms inference, %.1fms post-process per image at shape {shape}" % t)
145
+ LOGGER.info(f"Results saved to {colorstr('bold', save_dir)}")
146
+
147
+ return top1, top5, loss
148
+
149
+
150
+ def parse_opt():
151
+ """Parses and returns command line arguments for YOLOv5 model evaluation and inference settings."""
152
+ parser = argparse.ArgumentParser()
153
+ parser.add_argument("--data", type=str, default=ROOT / "../datasets/mnist", help="dataset path")
154
+ parser.add_argument("--weights", nargs="+", type=str, default=ROOT / "yolov5s-cls.pt", help="model.pt path(s)")
155
+ parser.add_argument("--batch-size", type=int, default=128, help="batch size")
156
+ parser.add_argument("--imgsz", "--img", "--img-size", type=int, default=224, help="inference size (pixels)")
157
+ parser.add_argument("--device", default="", help="cuda device, i.e. 0 or 0,1,2,3 or cpu")
158
+ parser.add_argument("--workers", type=int, default=8, help="max dataloader workers (per RANK in DDP mode)")
159
+ parser.add_argument("--verbose", nargs="?", const=True, default=True, help="verbose output")
160
+ parser.add_argument("--project", default=ROOT / "runs/val-cls", help="save to project/name")
161
+ parser.add_argument("--name", default="exp", help="save to project/name")
162
+ parser.add_argument("--exist-ok", action="store_true", help="existing project/name ok, do not increment")
163
+ parser.add_argument("--half", action="store_true", help="use FP16 half-precision inference")
164
+ parser.add_argument("--dnn", action="store_true", help="use OpenCV DNN for ONNX inference")
165
+ opt = parser.parse_args()
166
+ print_args(vars(opt))
167
+ return opt
168
+
169
+
170
+ def main(opt):
171
+ """Executes the YOLOv5 model prediction workflow, handling argument parsing and requirement checks."""
172
+ check_requirements(ROOT / "requirements.txt", exclude=("tensorboard", "thop"))
173
+ run(**vars(opt))
174
+
175
+
176
+ if __name__ == "__main__":
177
+ opt = parse_opt()
178
+ main(opt)
yolov5/data/Argoverse.yaml ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # Argoverse-HD dataset (ring-front-center camera) http://www.cs.cmu.edu/~mengtial/proj/streaming/ by Argo AI
3
+ # Example usage: python train.py --data Argoverse.yaml
4
+ # parent
5
+ # ├── yolov5
6
+ # └── datasets
7
+ # └── Argoverse ← downloads here (31.3 GB)
8
+
9
+ # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
10
+ path: ../datasets/Argoverse # dataset root dir
11
+ train: Argoverse-1.1/images/train/ # train images (relative to 'path') 39384 images
12
+ val: Argoverse-1.1/images/val/ # val images (relative to 'path') 15062 images
13
+ test: Argoverse-1.1/images/test/ # test images (optional) https://eval.ai/web/challenges/challenge-page/800/overview
14
+
15
+ # Classes
16
+ names:
17
+ 0: person
18
+ 1: bicycle
19
+ 2: car
20
+ 3: motorcycle
21
+ 4: bus
22
+ 5: truck
23
+ 6: traffic_light
24
+ 7: stop_sign
25
+
26
+ # Download script/URL (optional) ---------------------------------------------------------------------------------------
27
+ download: |
28
+ import json
29
+
30
+ from tqdm import tqdm
31
+ from utils.general import download, Path
32
+
33
+
34
+ def argoverse2yolo(set):
35
+ labels = {}
36
+ a = json.load(open(set, "rb"))
37
+ for annot in tqdm(a['annotations'], desc=f"Converting {set} to YOLOv5 format..."):
38
+ img_id = annot['image_id']
39
+ img_name = a['images'][img_id]['name']
40
+ img_label_name = f'{img_name[:-3]}txt'
41
+
42
+ cls = annot['category_id'] # instance class id
43
+ x_center, y_center, width, height = annot['bbox']
44
+ x_center = (x_center + width / 2) / 1920.0 # offset and scale
45
+ y_center = (y_center + height / 2) / 1200.0 # offset and scale
46
+ width /= 1920.0 # scale
47
+ height /= 1200.0 # scale
48
+
49
+ img_dir = set.parents[2] / 'Argoverse-1.1' / 'labels' / a['seq_dirs'][a['images'][annot['image_id']]['sid']]
50
+ if not img_dir.exists():
51
+ img_dir.mkdir(parents=True, exist_ok=True)
52
+
53
+ k = str(img_dir / img_label_name)
54
+ if k not in labels:
55
+ labels[k] = []
56
+ labels[k].append(f"{cls} {x_center} {y_center} {width} {height}\n")
57
+
58
+ for k in labels:
59
+ with open(k, "w") as f:
60
+ f.writelines(labels[k])
61
+
62
+
63
+ # Download
64
+ dir = Path(yaml['path']) # dataset root dir
65
+ urls = ['https://argoverse-hd.s3.us-east-2.amazonaws.com/Argoverse-HD-Full.zip']
66
+ download(urls, dir=dir, delete=False)
67
+
68
+ # Convert
69
+ annotations_dir = 'Argoverse-HD/annotations/'
70
+ (dir / 'Argoverse-1.1' / 'tracking').rename(dir / 'Argoverse-1.1' / 'images') # rename 'tracking' to 'images'
71
+ for d in "train.json", "val.json":
72
+ argoverse2yolo(dir / annotations_dir / d) # convert VisDrone annotations to YOLO labels
yolov5/data/GlobalWheat2020.yaml ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # Global Wheat 2020 dataset http://www.global-wheat.com/ by University of Saskatchewan
3
+ # Example usage: python train.py --data GlobalWheat2020.yaml
4
+ # parent
5
+ # ├── yolov5
6
+ # └── datasets
7
+ # └── GlobalWheat2020 ← downloads here (7.0 GB)
8
+
9
+ # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
10
+ path: ../datasets/GlobalWheat2020 # dataset root dir
11
+ train: # train images (relative to 'path') 3422 images
12
+ - images/arvalis_1
13
+ - images/arvalis_2
14
+ - images/arvalis_3
15
+ - images/ethz_1
16
+ - images/rres_1
17
+ - images/inrae_1
18
+ - images/usask_1
19
+ val: # val images (relative to 'path') 748 images (WARNING: train set contains ethz_1)
20
+ - images/ethz_1
21
+ test: # test images (optional) 1276 images
22
+ - images/utokyo_1
23
+ - images/utokyo_2
24
+ - images/nau_1
25
+ - images/uq_1
26
+
27
+ # Classes
28
+ names:
29
+ 0: wheat_head
30
+
31
+ # Download script/URL (optional) ---------------------------------------------------------------------------------------
32
+ download: |
33
+ from utils.general import download, Path
34
+
35
+
36
+ # Download
37
+ dir = Path(yaml['path']) # dataset root dir
38
+ urls = ['https://zenodo.org/record/4298502/files/global-wheat-codalab-official.zip',
39
+ 'https://github.com/ultralytics/assets/releases/download/v0.0.0/GlobalWheat2020_labels.zip']
40
+ download(urls, dir=dir)
41
+
42
+ # Make Directories
43
+ for p in 'annotations', 'images', 'labels':
44
+ (dir / p).mkdir(parents=True, exist_ok=True)
45
+
46
+ # Move
47
+ for p in 'arvalis_1', 'arvalis_2', 'arvalis_3', 'ethz_1', 'rres_1', 'inrae_1', 'usask_1', \
48
+ 'utokyo_1', 'utokyo_2', 'nau_1', 'uq_1':
49
+ (dir / p).rename(dir / 'images' / p) # move to /images
50
+ f = (dir / p).with_suffix('.json') # json file
51
+ if f.exists():
52
+ f.rename((dir / 'annotations' / p).with_suffix('.json')) # move to /annotations
yolov5/data/ImageNet.yaml ADDED
@@ -0,0 +1,1020 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # ImageNet-1k dataset https://www.image-net.org/index.php by Stanford University
3
+ # Simplified class names from https://github.com/anishathalye/imagenet-simple-labels
4
+ # Example usage: python classify/train.py --data imagenet
5
+ # parent
6
+ # ├── yolov5
7
+ # └── datasets
8
+ # └── imagenet ← downloads here (144 GB)
9
+
10
+ # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
11
+ path: ../datasets/imagenet # dataset root dir
12
+ train: train # train images (relative to 'path') 1281167 images
13
+ val: val # val images (relative to 'path') 50000 images
14
+ test: # test images (optional)
15
+
16
+ # Classes
17
+ names:
18
+ 0: tench
19
+ 1: goldfish
20
+ 2: great white shark
21
+ 3: tiger shark
22
+ 4: hammerhead shark
23
+ 5: electric ray
24
+ 6: stingray
25
+ 7: cock
26
+ 8: hen
27
+ 9: ostrich
28
+ 10: brambling
29
+ 11: goldfinch
30
+ 12: house finch
31
+ 13: junco
32
+ 14: indigo bunting
33
+ 15: American robin
34
+ 16: bulbul
35
+ 17: jay
36
+ 18: magpie
37
+ 19: chickadee
38
+ 20: American dipper
39
+ 21: kite
40
+ 22: bald eagle
41
+ 23: vulture
42
+ 24: great grey owl
43
+ 25: fire salamander
44
+ 26: smooth newt
45
+ 27: newt
46
+ 28: spotted salamander
47
+ 29: axolotl
48
+ 30: American bullfrog
49
+ 31: tree frog
50
+ 32: tailed frog
51
+ 33: loggerhead sea turtle
52
+ 34: leatherback sea turtle
53
+ 35: mud turtle
54
+ 36: terrapin
55
+ 37: box turtle
56
+ 38: banded gecko
57
+ 39: green iguana
58
+ 40: Carolina anole
59
+ 41: desert grassland whiptail lizard
60
+ 42: agama
61
+ 43: frilled-necked lizard
62
+ 44: alligator lizard
63
+ 45: Gila monster
64
+ 46: European green lizard
65
+ 47: chameleon
66
+ 48: Komodo dragon
67
+ 49: Nile crocodile
68
+ 50: American alligator
69
+ 51: triceratops
70
+ 52: worm snake
71
+ 53: ring-necked snake
72
+ 54: eastern hog-nosed snake
73
+ 55: smooth green snake
74
+ 56: kingsnake
75
+ 57: garter snake
76
+ 58: water snake
77
+ 59: vine snake
78
+ 60: night snake
79
+ 61: boa constrictor
80
+ 62: African rock python
81
+ 63: Indian cobra
82
+ 64: green mamba
83
+ 65: sea snake
84
+ 66: Saharan horned viper
85
+ 67: eastern diamondback rattlesnake
86
+ 68: sidewinder
87
+ 69: trilobite
88
+ 70: harvestman
89
+ 71: scorpion
90
+ 72: yellow garden spider
91
+ 73: barn spider
92
+ 74: European garden spider
93
+ 75: southern black widow
94
+ 76: tarantula
95
+ 77: wolf spider
96
+ 78: tick
97
+ 79: centipede
98
+ 80: black grouse
99
+ 81: ptarmigan
100
+ 82: ruffed grouse
101
+ 83: prairie grouse
102
+ 84: peacock
103
+ 85: quail
104
+ 86: partridge
105
+ 87: grey parrot
106
+ 88: macaw
107
+ 89: sulphur-crested cockatoo
108
+ 90: lorikeet
109
+ 91: coucal
110
+ 92: bee eater
111
+ 93: hornbill
112
+ 94: hummingbird
113
+ 95: jacamar
114
+ 96: toucan
115
+ 97: duck
116
+ 98: red-breasted merganser
117
+ 99: goose
118
+ 100: black swan
119
+ 101: tusker
120
+ 102: echidna
121
+ 103: platypus
122
+ 104: wallaby
123
+ 105: koala
124
+ 106: wombat
125
+ 107: jellyfish
126
+ 108: sea anemone
127
+ 109: brain coral
128
+ 110: flatworm
129
+ 111: nematode
130
+ 112: conch
131
+ 113: snail
132
+ 114: slug
133
+ 115: sea slug
134
+ 116: chiton
135
+ 117: chambered nautilus
136
+ 118: Dungeness crab
137
+ 119: rock crab
138
+ 120: fiddler crab
139
+ 121: red king crab
140
+ 122: American lobster
141
+ 123: spiny lobster
142
+ 124: crayfish
143
+ 125: hermit crab
144
+ 126: isopod
145
+ 127: white stork
146
+ 128: black stork
147
+ 129: spoonbill
148
+ 130: flamingo
149
+ 131: little blue heron
150
+ 132: great egret
151
+ 133: bittern
152
+ 134: crane (bird)
153
+ 135: limpkin
154
+ 136: common gallinule
155
+ 137: American coot
156
+ 138: bustard
157
+ 139: ruddy turnstone
158
+ 140: dunlin
159
+ 141: common redshank
160
+ 142: dowitcher
161
+ 143: oystercatcher
162
+ 144: pelican
163
+ 145: king penguin
164
+ 146: albatross
165
+ 147: grey whale
166
+ 148: killer whale
167
+ 149: dugong
168
+ 150: sea lion
169
+ 151: Chihuahua
170
+ 152: Japanese Chin
171
+ 153: Maltese
172
+ 154: Pekingese
173
+ 155: Shih Tzu
174
+ 156: King Charles Spaniel
175
+ 157: Papillon
176
+ 158: toy terrier
177
+ 159: Rhodesian Ridgeback
178
+ 160: Afghan Hound
179
+ 161: Basset Hound
180
+ 162: Beagle
181
+ 163: Bloodhound
182
+ 164: Bluetick Coonhound
183
+ 165: Black and Tan Coonhound
184
+ 166: Treeing Walker Coonhound
185
+ 167: English foxhound
186
+ 168: Redbone Coonhound
187
+ 169: borzoi
188
+ 170: Irish Wolfhound
189
+ 171: Italian Greyhound
190
+ 172: Whippet
191
+ 173: Ibizan Hound
192
+ 174: Norwegian Elkhound
193
+ 175: Otterhound
194
+ 176: Saluki
195
+ 177: Scottish Deerhound
196
+ 178: Weimaraner
197
+ 179: Staffordshire Bull Terrier
198
+ 180: American Staffordshire Terrier
199
+ 181: Bedlington Terrier
200
+ 182: Border Terrier
201
+ 183: Kerry Blue Terrier
202
+ 184: Irish Terrier
203
+ 185: Norfolk Terrier
204
+ 186: Norwich Terrier
205
+ 187: Yorkshire Terrier
206
+ 188: Wire Fox Terrier
207
+ 189: Lakeland Terrier
208
+ 190: Sealyham Terrier
209
+ 191: Airedale Terrier
210
+ 192: Cairn Terrier
211
+ 193: Australian Terrier
212
+ 194: Dandie Dinmont Terrier
213
+ 195: Boston Terrier
214
+ 196: Miniature Schnauzer
215
+ 197: Giant Schnauzer
216
+ 198: Standard Schnauzer
217
+ 199: Scottish Terrier
218
+ 200: Tibetan Terrier
219
+ 201: Australian Silky Terrier
220
+ 202: Soft-coated Wheaten Terrier
221
+ 203: West Highland White Terrier
222
+ 204: Lhasa Apso
223
+ 205: Flat-Coated Retriever
224
+ 206: Curly-coated Retriever
225
+ 207: Golden Retriever
226
+ 208: Labrador Retriever
227
+ 209: Chesapeake Bay Retriever
228
+ 210: German Shorthaired Pointer
229
+ 211: Vizsla
230
+ 212: English Setter
231
+ 213: Irish Setter
232
+ 214: Gordon Setter
233
+ 215: Brittany
234
+ 216: Clumber Spaniel
235
+ 217: English Springer Spaniel
236
+ 218: Welsh Springer Spaniel
237
+ 219: Cocker Spaniels
238
+ 220: Sussex Spaniel
239
+ 221: Irish Water Spaniel
240
+ 222: Kuvasz
241
+ 223: Schipperke
242
+ 224: Groenendael
243
+ 225: Malinois
244
+ 226: Briard
245
+ 227: Australian Kelpie
246
+ 228: Komondor
247
+ 229: Old English Sheepdog
248
+ 230: Shetland Sheepdog
249
+ 231: collie
250
+ 232: Border Collie
251
+ 233: Bouvier des Flandres
252
+ 234: Rottweiler
253
+ 235: German Shepherd Dog
254
+ 236: Dobermann
255
+ 237: Miniature Pinscher
256
+ 238: Greater Swiss Mountain Dog
257
+ 239: Bernese Mountain Dog
258
+ 240: Appenzeller Sennenhund
259
+ 241: Entlebucher Sennenhund
260
+ 242: Boxer
261
+ 243: Bullmastiff
262
+ 244: Tibetan Mastiff
263
+ 245: French Bulldog
264
+ 246: Great Dane
265
+ 247: St. Bernard
266
+ 248: husky
267
+ 249: Alaskan Malamute
268
+ 250: Siberian Husky
269
+ 251: Dalmatian
270
+ 252: Affenpinscher
271
+ 253: Basenji
272
+ 254: pug
273
+ 255: Leonberger
274
+ 256: Newfoundland
275
+ 257: Pyrenean Mountain Dog
276
+ 258: Samoyed
277
+ 259: Pomeranian
278
+ 260: Chow Chow
279
+ 261: Keeshond
280
+ 262: Griffon Bruxellois
281
+ 263: Pembroke Welsh Corgi
282
+ 264: Cardigan Welsh Corgi
283
+ 265: Toy Poodle
284
+ 266: Miniature Poodle
285
+ 267: Standard Poodle
286
+ 268: Mexican hairless dog
287
+ 269: grey wolf
288
+ 270: Alaskan tundra wolf
289
+ 271: red wolf
290
+ 272: coyote
291
+ 273: dingo
292
+ 274: dhole
293
+ 275: African wild dog
294
+ 276: hyena
295
+ 277: red fox
296
+ 278: kit fox
297
+ 279: Arctic fox
298
+ 280: grey fox
299
+ 281: tabby cat
300
+ 282: tiger cat
301
+ 283: Persian cat
302
+ 284: Siamese cat
303
+ 285: Egyptian Mau
304
+ 286: cougar
305
+ 287: lynx
306
+ 288: leopard
307
+ 289: snow leopard
308
+ 290: jaguar
309
+ 291: lion
310
+ 292: tiger
311
+ 293: cheetah
312
+ 294: brown bear
313
+ 295: American black bear
314
+ 296: polar bear
315
+ 297: sloth bear
316
+ 298: mongoose
317
+ 299: meerkat
318
+ 300: tiger beetle
319
+ 301: ladybug
320
+ 302: ground beetle
321
+ 303: longhorn beetle
322
+ 304: leaf beetle
323
+ 305: dung beetle
324
+ 306: rhinoceros beetle
325
+ 307: weevil
326
+ 308: fly
327
+ 309: bee
328
+ 310: ant
329
+ 311: grasshopper
330
+ 312: cricket
331
+ 313: stick insect
332
+ 314: cockroach
333
+ 315: mantis
334
+ 316: cicada
335
+ 317: leafhopper
336
+ 318: lacewing
337
+ 319: dragonfly
338
+ 320: damselfly
339
+ 321: red admiral
340
+ 322: ringlet
341
+ 323: monarch butterfly
342
+ 324: small white
343
+ 325: sulphur butterfly
344
+ 326: gossamer-winged butterfly
345
+ 327: starfish
346
+ 328: sea urchin
347
+ 329: sea cucumber
348
+ 330: cottontail rabbit
349
+ 331: hare
350
+ 332: Angora rabbit
351
+ 333: hamster
352
+ 334: porcupine
353
+ 335: fox squirrel
354
+ 336: marmot
355
+ 337: beaver
356
+ 338: guinea pig
357
+ 339: common sorrel
358
+ 340: zebra
359
+ 341: pig
360
+ 342: wild boar
361
+ 343: warthog
362
+ 344: hippopotamus
363
+ 345: ox
364
+ 346: water buffalo
365
+ 347: bison
366
+ 348: ram
367
+ 349: bighorn sheep
368
+ 350: Alpine ibex
369
+ 351: hartebeest
370
+ 352: impala
371
+ 353: gazelle
372
+ 354: dromedary
373
+ 355: llama
374
+ 356: weasel
375
+ 357: mink
376
+ 358: European polecat
377
+ 359: black-footed ferret
378
+ 360: otter
379
+ 361: skunk
380
+ 362: badger
381
+ 363: armadillo
382
+ 364: three-toed sloth
383
+ 365: orangutan
384
+ 366: gorilla
385
+ 367: chimpanzee
386
+ 368: gibbon
387
+ 369: siamang
388
+ 370: guenon
389
+ 371: patas monkey
390
+ 372: baboon
391
+ 373: macaque
392
+ 374: langur
393
+ 375: black-and-white colobus
394
+ 376: proboscis monkey
395
+ 377: marmoset
396
+ 378: white-headed capuchin
397
+ 379: howler monkey
398
+ 380: titi
399
+ 381: Geoffroy's spider monkey
400
+ 382: common squirrel monkey
401
+ 383: ring-tailed lemur
402
+ 384: indri
403
+ 385: Asian elephant
404
+ 386: African bush elephant
405
+ 387: red panda
406
+ 388: giant panda
407
+ 389: snoek
408
+ 390: eel
409
+ 391: coho salmon
410
+ 392: rock beauty
411
+ 393: clownfish
412
+ 394: sturgeon
413
+ 395: garfish
414
+ 396: lionfish
415
+ 397: pufferfish
416
+ 398: abacus
417
+ 399: abaya
418
+ 400: academic gown
419
+ 401: accordion
420
+ 402: acoustic guitar
421
+ 403: aircraft carrier
422
+ 404: airliner
423
+ 405: airship
424
+ 406: altar
425
+ 407: ambulance
426
+ 408: amphibious vehicle
427
+ 409: analog clock
428
+ 410: apiary
429
+ 411: apron
430
+ 412: waste container
431
+ 413: assault rifle
432
+ 414: backpack
433
+ 415: bakery
434
+ 416: balance beam
435
+ 417: balloon
436
+ 418: ballpoint pen
437
+ 419: Band-Aid
438
+ 420: banjo
439
+ 421: baluster
440
+ 422: barbell
441
+ 423: barber chair
442
+ 424: barbershop
443
+ 425: barn
444
+ 426: barometer
445
+ 427: barrel
446
+ 428: wheelbarrow
447
+ 429: baseball
448
+ 430: basketball
449
+ 431: bassinet
450
+ 432: bassoon
451
+ 433: swimming cap
452
+ 434: bath towel
453
+ 435: bathtub
454
+ 436: station wagon
455
+ 437: lighthouse
456
+ 438: beaker
457
+ 439: military cap
458
+ 440: beer bottle
459
+ 441: beer glass
460
+ 442: bell-cot
461
+ 443: bib
462
+ 444: tandem bicycle
463
+ 445: bikini
464
+ 446: ring binder
465
+ 447: binoculars
466
+ 448: birdhouse
467
+ 449: boathouse
468
+ 450: bobsleigh
469
+ 451: bolo tie
470
+ 452: poke bonnet
471
+ 453: bookcase
472
+ 454: bookstore
473
+ 455: bottle cap
474
+ 456: bow
475
+ 457: bow tie
476
+ 458: brass
477
+ 459: bra
478
+ 460: breakwater
479
+ 461: breastplate
480
+ 462: broom
481
+ 463: bucket
482
+ 464: buckle
483
+ 465: bulletproof vest
484
+ 466: high-speed train
485
+ 467: butcher shop
486
+ 468: taxicab
487
+ 469: cauldron
488
+ 470: candle
489
+ 471: cannon
490
+ 472: canoe
491
+ 473: can opener
492
+ 474: cardigan
493
+ 475: car mirror
494
+ 476: carousel
495
+ 477: tool kit
496
+ 478: carton
497
+ 479: car wheel
498
+ 480: automated teller machine
499
+ 481: cassette
500
+ 482: cassette player
501
+ 483: castle
502
+ 484: catamaran
503
+ 485: CD player
504
+ 486: cello
505
+ 487: mobile phone
506
+ 488: chain
507
+ 489: chain-link fence
508
+ 490: chain mail
509
+ 491: chainsaw
510
+ 492: chest
511
+ 493: chiffonier
512
+ 494: chime
513
+ 495: china cabinet
514
+ 496: Christmas stocking
515
+ 497: church
516
+ 498: movie theater
517
+ 499: cleaver
518
+ 500: cliff dwelling
519
+ 501: cloak
520
+ 502: clogs
521
+ 503: cocktail shaker
522
+ 504: coffee mug
523
+ 505: coffeemaker
524
+ 506: coil
525
+ 507: combination lock
526
+ 508: computer keyboard
527
+ 509: confectionery store
528
+ 510: container ship
529
+ 511: convertible
530
+ 512: corkscrew
531
+ 513: cornet
532
+ 514: cowboy boot
533
+ 515: cowboy hat
534
+ 516: cradle
535
+ 517: crane (machine)
536
+ 518: crash helmet
537
+ 519: crate
538
+ 520: infant bed
539
+ 521: Crock Pot
540
+ 522: croquet ball
541
+ 523: crutch
542
+ 524: cuirass
543
+ 525: dam
544
+ 526: desk
545
+ 527: desktop computer
546
+ 528: rotary dial telephone
547
+ 529: diaper
548
+ 530: digital clock
549
+ 531: digital watch
550
+ 532: dining table
551
+ 533: dishcloth
552
+ 534: dishwasher
553
+ 535: disc brake
554
+ 536: dock
555
+ 537: dog sled
556
+ 538: dome
557
+ 539: doormat
558
+ 540: drilling rig
559
+ 541: drum
560
+ 542: drumstick
561
+ 543: dumbbell
562
+ 544: Dutch oven
563
+ 545: electric fan
564
+ 546: electric guitar
565
+ 547: electric locomotive
566
+ 548: entertainment center
567
+ 549: envelope
568
+ 550: espresso machine
569
+ 551: face powder
570
+ 552: feather boa
571
+ 553: filing cabinet
572
+ 554: fireboat
573
+ 555: fire engine
574
+ 556: fire screen sheet
575
+ 557: flagpole
576
+ 558: flute
577
+ 559: folding chair
578
+ 560: football helmet
579
+ 561: forklift
580
+ 562: fountain
581
+ 563: fountain pen
582
+ 564: four-poster bed
583
+ 565: freight car
584
+ 566: French horn
585
+ 567: frying pan
586
+ 568: fur coat
587
+ 569: garbage truck
588
+ 570: gas mask
589
+ 571: gas pump
590
+ 572: goblet
591
+ 573: go-kart
592
+ 574: golf ball
593
+ 575: golf cart
594
+ 576: gondola
595
+ 577: gong
596
+ 578: gown
597
+ 579: grand piano
598
+ 580: greenhouse
599
+ 581: grille
600
+ 582: grocery store
601
+ 583: guillotine
602
+ 584: barrette
603
+ 585: hair spray
604
+ 586: half-track
605
+ 587: hammer
606
+ 588: hamper
607
+ 589: hair dryer
608
+ 590: hand-held computer
609
+ 591: handkerchief
610
+ 592: hard disk drive
611
+ 593: harmonica
612
+ 594: harp
613
+ 595: harvester
614
+ 596: hatchet
615
+ 597: holster
616
+ 598: home theater
617
+ 599: honeycomb
618
+ 600: hook
619
+ 601: hoop skirt
620
+ 602: horizontal bar
621
+ 603: horse-drawn vehicle
622
+ 604: hourglass
623
+ 605: iPod
624
+ 606: clothes iron
625
+ 607: jack-o'-lantern
626
+ 608: jeans
627
+ 609: jeep
628
+ 610: T-shirt
629
+ 611: jigsaw puzzle
630
+ 612: pulled rickshaw
631
+ 613: joystick
632
+ 614: kimono
633
+ 615: knee pad
634
+ 616: knot
635
+ 617: lab coat
636
+ 618: ladle
637
+ 619: lampshade
638
+ 620: laptop computer
639
+ 621: lawn mower
640
+ 622: lens cap
641
+ 623: paper knife
642
+ 624: library
643
+ 625: lifeboat
644
+ 626: lighter
645
+ 627: limousine
646
+ 628: ocean liner
647
+ 629: lipstick
648
+ 630: slip-on shoe
649
+ 631: lotion
650
+ 632: speaker
651
+ 633: loupe
652
+ 634: sawmill
653
+ 635: magnetic compass
654
+ 636: mail bag
655
+ 637: mailbox
656
+ 638: tights
657
+ 639: tank suit
658
+ 640: manhole cover
659
+ 641: maraca
660
+ 642: marimba
661
+ 643: mask
662
+ 644: match
663
+ 645: maypole
664
+ 646: maze
665
+ 647: measuring cup
666
+ 648: medicine chest
667
+ 649: megalith
668
+ 650: microphone
669
+ 651: microwave oven
670
+ 652: military uniform
671
+ 653: milk can
672
+ 654: minibus
673
+ 655: miniskirt
674
+ 656: minivan
675
+ 657: missile
676
+ 658: mitten
677
+ 659: mixing bowl
678
+ 660: mobile home
679
+ 661: Model T
680
+ 662: modem
681
+ 663: monastery
682
+ 664: monitor
683
+ 665: moped
684
+ 666: mortar
685
+ 667: square academic cap
686
+ 668: mosque
687
+ 669: mosquito net
688
+ 670: scooter
689
+ 671: mountain bike
690
+ 672: tent
691
+ 673: computer mouse
692
+ 674: mousetrap
693
+ 675: moving van
694
+ 676: muzzle
695
+ 677: nail
696
+ 678: neck brace
697
+ 679: necklace
698
+ 680: nipple
699
+ 681: notebook computer
700
+ 682: obelisk
701
+ 683: oboe
702
+ 684: ocarina
703
+ 685: odometer
704
+ 686: oil filter
705
+ 687: organ
706
+ 688: oscilloscope
707
+ 689: overskirt
708
+ 690: bullock cart
709
+ 691: oxygen mask
710
+ 692: packet
711
+ 693: paddle
712
+ 694: paddle wheel
713
+ 695: padlock
714
+ 696: paintbrush
715
+ 697: pajamas
716
+ 698: palace
717
+ 699: pan flute
718
+ 700: paper towel
719
+ 701: parachute
720
+ 702: parallel bars
721
+ 703: park bench
722
+ 704: parking meter
723
+ 705: passenger car
724
+ 706: patio
725
+ 707: payphone
726
+ 708: pedestal
727
+ 709: pencil case
728
+ 710: pencil sharpener
729
+ 711: perfume
730
+ 712: Petri dish
731
+ 713: photocopier
732
+ 714: plectrum
733
+ 715: Pickelhaube
734
+ 716: picket fence
735
+ 717: pickup truck
736
+ 718: pier
737
+ 719: piggy bank
738
+ 720: pill bottle
739
+ 721: pillow
740
+ 722: ping-pong ball
741
+ 723: pinwheel
742
+ 724: pirate ship
743
+ 725: pitcher
744
+ 726: hand plane
745
+ 727: planetarium
746
+ 728: plastic bag
747
+ 729: plate rack
748
+ 730: plow
749
+ 731: plunger
750
+ 732: Polaroid camera
751
+ 733: pole
752
+ 734: police van
753
+ 735: poncho
754
+ 736: billiard table
755
+ 737: soda bottle
756
+ 738: pot
757
+ 739: potter's wheel
758
+ 740: power drill
759
+ 741: prayer rug
760
+ 742: printer
761
+ 743: prison
762
+ 744: projectile
763
+ 745: projector
764
+ 746: hockey puck
765
+ 747: punching bag
766
+ 748: purse
767
+ 749: quill
768
+ 750: quilt
769
+ 751: race car
770
+ 752: racket
771
+ 753: radiator
772
+ 754: radio
773
+ 755: radio telescope
774
+ 756: rain barrel
775
+ 757: recreational vehicle
776
+ 758: reel
777
+ 759: reflex camera
778
+ 760: refrigerator
779
+ 761: remote control
780
+ 762: restaurant
781
+ 763: revolver
782
+ 764: rifle
783
+ 765: rocking chair
784
+ 766: rotisserie
785
+ 767: eraser
786
+ 768: rugby ball
787
+ 769: ruler
788
+ 770: running shoe
789
+ 771: safe
790
+ 772: safety pin
791
+ 773: salt shaker
792
+ 774: sandal
793
+ 775: sarong
794
+ 776: saxophone
795
+ 777: scabbard
796
+ 778: weighing scale
797
+ 779: school bus
798
+ 780: schooner
799
+ 781: scoreboard
800
+ 782: CRT screen
801
+ 783: screw
802
+ 784: screwdriver
803
+ 785: seat belt
804
+ 786: sewing machine
805
+ 787: shield
806
+ 788: shoe store
807
+ 789: shoji
808
+ 790: shopping basket
809
+ 791: shopping cart
810
+ 792: shovel
811
+ 793: shower cap
812
+ 794: shower curtain
813
+ 795: ski
814
+ 796: ski mask
815
+ 797: sleeping bag
816
+ 798: slide rule
817
+ 799: sliding door
818
+ 800: slot machine
819
+ 801: snorkel
820
+ 802: snowmobile
821
+ 803: snowplow
822
+ 804: soap dispenser
823
+ 805: soccer ball
824
+ 806: sock
825
+ 807: solar thermal collector
826
+ 808: sombrero
827
+ 809: soup bowl
828
+ 810: space bar
829
+ 811: space heater
830
+ 812: space shuttle
831
+ 813: spatula
832
+ 814: motorboat
833
+ 815: spider web
834
+ 816: spindle
835
+ 817: sports car
836
+ 818: spotlight
837
+ 819: stage
838
+ 820: steam locomotive
839
+ 821: through arch bridge
840
+ 822: steel drum
841
+ 823: stethoscope
842
+ 824: scarf
843
+ 825: stone wall
844
+ 826: stopwatch
845
+ 827: stove
846
+ 828: strainer
847
+ 829: tram
848
+ 830: stretcher
849
+ 831: couch
850
+ 832: stupa
851
+ 833: submarine
852
+ 834: suit
853
+ 835: sundial
854
+ 836: sunglass
855
+ 837: sunglasses
856
+ 838: sunscreen
857
+ 839: suspension bridge
858
+ 840: mop
859
+ 841: sweatshirt
860
+ 842: swimsuit
861
+ 843: swing
862
+ 844: switch
863
+ 845: syringe
864
+ 846: table lamp
865
+ 847: tank
866
+ 848: tape player
867
+ 849: teapot
868
+ 850: teddy bear
869
+ 851: television
870
+ 852: tennis ball
871
+ 853: thatched roof
872
+ 854: front curtain
873
+ 855: thimble
874
+ 856: threshing machine
875
+ 857: throne
876
+ 858: tile roof
877
+ 859: toaster
878
+ 860: tobacco shop
879
+ 861: toilet seat
880
+ 862: torch
881
+ 863: totem pole
882
+ 864: tow truck
883
+ 865: toy store
884
+ 866: tractor
885
+ 867: semi-trailer truck
886
+ 868: tray
887
+ 869: trench coat
888
+ 870: tricycle
889
+ 871: trimaran
890
+ 872: tripod
891
+ 873: triumphal arch
892
+ 874: trolleybus
893
+ 875: trombone
894
+ 876: tub
895
+ 877: turnstile
896
+ 878: typewriter keyboard
897
+ 879: umbrella
898
+ 880: unicycle
899
+ 881: upright piano
900
+ 882: vacuum cleaner
901
+ 883: vase
902
+ 884: vault
903
+ 885: velvet
904
+ 886: vending machine
905
+ 887: vestment
906
+ 888: viaduct
907
+ 889: violin
908
+ 890: volleyball
909
+ 891: waffle iron
910
+ 892: wall clock
911
+ 893: wallet
912
+ 894: wardrobe
913
+ 895: military aircraft
914
+ 896: sink
915
+ 897: washing machine
916
+ 898: water bottle
917
+ 899: water jug
918
+ 900: water tower
919
+ 901: whiskey jug
920
+ 902: whistle
921
+ 903: wig
922
+ 904: window screen
923
+ 905: window shade
924
+ 906: Windsor tie
925
+ 907: wine bottle
926
+ 908: wing
927
+ 909: wok
928
+ 910: wooden spoon
929
+ 911: wool
930
+ 912: split-rail fence
931
+ 913: shipwreck
932
+ 914: yawl
933
+ 915: yurt
934
+ 916: website
935
+ 917: comic book
936
+ 918: crossword
937
+ 919: traffic sign
938
+ 920: traffic light
939
+ 921: dust jacket
940
+ 922: menu
941
+ 923: plate
942
+ 924: guacamole
943
+ 925: consomme
944
+ 926: hot pot
945
+ 927: trifle
946
+ 928: ice cream
947
+ 929: ice pop
948
+ 930: baguette
949
+ 931: bagel
950
+ 932: pretzel
951
+ 933: cheeseburger
952
+ 934: hot dog
953
+ 935: mashed potato
954
+ 936: cabbage
955
+ 937: broccoli
956
+ 938: cauliflower
957
+ 939: zucchini
958
+ 940: spaghetti squash
959
+ 941: acorn squash
960
+ 942: butternut squash
961
+ 943: cucumber
962
+ 944: artichoke
963
+ 945: bell pepper
964
+ 946: cardoon
965
+ 947: mushroom
966
+ 948: Granny Smith
967
+ 949: strawberry
968
+ 950: orange
969
+ 951: lemon
970
+ 952: fig
971
+ 953: pineapple
972
+ 954: banana
973
+ 955: jackfruit
974
+ 956: custard apple
975
+ 957: pomegranate
976
+ 958: hay
977
+ 959: carbonara
978
+ 960: chocolate syrup
979
+ 961: dough
980
+ 962: meatloaf
981
+ 963: pizza
982
+ 964: pot pie
983
+ 965: burrito
984
+ 966: red wine
985
+ 967: espresso
986
+ 968: cup
987
+ 969: eggnog
988
+ 970: alp
989
+ 971: bubble
990
+ 972: cliff
991
+ 973: coral reef
992
+ 974: geyser
993
+ 975: lakeshore
994
+ 976: promontory
995
+ 977: shoal
996
+ 978: seashore
997
+ 979: valley
998
+ 980: volcano
999
+ 981: baseball player
1000
+ 982: bridegroom
1001
+ 983: scuba diver
1002
+ 984: rapeseed
1003
+ 985: daisy
1004
+ 986: yellow lady's slipper
1005
+ 987: corn
1006
+ 988: acorn
1007
+ 989: rose hip
1008
+ 990: horse chestnut seed
1009
+ 991: coral fungus
1010
+ 992: agaric
1011
+ 993: gyromitra
1012
+ 994: stinkhorn mushroom
1013
+ 995: earth star
1014
+ 996: hen-of-the-woods
1015
+ 997: bolete
1016
+ 998: ear
1017
+ 999: toilet paper
1018
+
1019
+ # Download script/URL (optional)
1020
+ download: data/scripts/get_imagenet.sh
yolov5/data/ImageNet10.yaml ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # ImageNet-1k dataset https://www.image-net.org/index.php by Stanford University
3
+ # Simplified class names from https://github.com/anishathalye/imagenet-simple-labels
4
+ # Example usage: python classify/train.py --data imagenet
5
+ # parent
6
+ # ├── yolov5
7
+ # └── datasets
8
+ # └── imagenet10 ← downloads here
9
+
10
+ # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
11
+ path: ../datasets/imagenet10 # dataset root dir
12
+ train: train # train images (relative to 'path') 1281167 images
13
+ val: val # val images (relative to 'path') 50000 images
14
+ test: # test images (optional)
15
+
16
+ # Classes
17
+ names:
18
+ 0: tench
19
+ 1: goldfish
20
+ 2: great white shark
21
+ 3: tiger shark
22
+ 4: hammerhead shark
23
+ 5: electric ray
24
+ 6: stingray
25
+ 7: cock
26
+ 8: hen
27
+ 9: ostrich
28
+
29
+ # Download script/URL (optional)
30
+ download: data/scripts/get_imagenet10.sh
yolov5/data/ImageNet100.yaml ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # ImageNet-1k dataset https://www.image-net.org/index.php by Stanford University
3
+ # Simplified class names from https://github.com/anishathalye/imagenet-simple-labels
4
+ # Example usage: python classify/train.py --data imagenet
5
+ # parent
6
+ # ├── yolov5
7
+ # └── datasets
8
+ # └── imagenet100 ← downloads here
9
+
10
+ # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
11
+ path: ../datasets/imagenet100 # dataset root dir
12
+ train: train # train images (relative to 'path') 1281167 images
13
+ val: val # val images (relative to 'path') 50000 images
14
+ test: # test images (optional)
15
+
16
+ # Classes
17
+ names:
18
+ 0: tench
19
+ 1: goldfish
20
+ 2: great white shark
21
+ 3: tiger shark
22
+ 4: hammerhead shark
23
+ 5: electric ray
24
+ 6: stingray
25
+ 7: cock
26
+ 8: hen
27
+ 9: ostrich
28
+ 10: brambling
29
+ 11: goldfinch
30
+ 12: house finch
31
+ 13: junco
32
+ 14: indigo bunting
33
+ 15: American robin
34
+ 16: bulbul
35
+ 17: jay
36
+ 18: magpie
37
+ 19: chickadee
38
+ 20: American dipper
39
+ 21: kite
40
+ 22: bald eagle
41
+ 23: vulture
42
+ 24: great grey owl
43
+ 25: fire salamander
44
+ 26: smooth newt
45
+ 27: newt
46
+ 28: spotted salamander
47
+ 29: axolotl
48
+ 30: American bullfrog
49
+ 31: tree frog
50
+ 32: tailed frog
51
+ 33: loggerhead sea turtle
52
+ 34: leatherback sea turtle
53
+ 35: mud turtle
54
+ 36: terrapin
55
+ 37: box turtle
56
+ 38: banded gecko
57
+ 39: green iguana
58
+ 40: Carolina anole
59
+ 41: desert grassland whiptail lizard
60
+ 42: agama
61
+ 43: frilled-necked lizard
62
+ 44: alligator lizard
63
+ 45: Gila monster
64
+ 46: European green lizard
65
+ 47: chameleon
66
+ 48: Komodo dragon
67
+ 49: Nile crocodile
68
+ 50: American alligator
69
+ 51: triceratops
70
+ 52: worm snake
71
+ 53: ring-necked snake
72
+ 54: eastern hog-nosed snake
73
+ 55: smooth green snake
74
+ 56: kingsnake
75
+ 57: garter snake
76
+ 58: water snake
77
+ 59: vine snake
78
+ 60: night snake
79
+ 61: boa constrictor
80
+ 62: African rock python
81
+ 63: Indian cobra
82
+ 64: green mamba
83
+ 65: sea snake
84
+ 66: Saharan horned viper
85
+ 67: eastern diamondback rattlesnake
86
+ 68: sidewinder
87
+ 69: trilobite
88
+ 70: harvestman
89
+ 71: scorpion
90
+ 72: yellow garden spider
91
+ 73: barn spider
92
+ 74: European garden spider
93
+ 75: southern black widow
94
+ 76: tarantula
95
+ 77: wolf spider
96
+ 78: tick
97
+ 79: centipede
98
+ 80: black grouse
99
+ 81: ptarmigan
100
+ 82: ruffed grouse
101
+ 83: prairie grouse
102
+ 84: peacock
103
+ 85: quail
104
+ 86: partridge
105
+ 87: grey parrot
106
+ 88: macaw
107
+ 89: sulphur-crested cockatoo
108
+ 90: lorikeet
109
+ 91: coucal
110
+ 92: bee eater
111
+ 93: hornbill
112
+ 94: hummingbird
113
+ 95: jacamar
114
+ 96: toucan
115
+ 97: duck
116
+ 98: red-breasted merganser
117
+ 99: goose
118
+ # Download script/URL (optional)
119
+ download: data/scripts/get_imagenet100.sh
yolov5/data/ImageNet1000.yaml ADDED
@@ -0,0 +1,1020 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # ImageNet-1k dataset https://www.image-net.org/index.php by Stanford University
3
+ # Simplified class names from https://github.com/anishathalye/imagenet-simple-labels
4
+ # Example usage: python classify/train.py --data imagenet
5
+ # parent
6
+ # ├── yolov5
7
+ # └── datasets
8
+ # └── imagenet100 ← downloads here
9
+
10
+ # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
11
+ path: ../datasets/imagenet1000 # dataset root dir
12
+ train: train # train images (relative to 'path') 1281167 images
13
+ val: val # val images (relative to 'path') 50000 images
14
+ test: # test images (optional)
15
+
16
+ # Classes
17
+ names:
18
+ 0: tench
19
+ 1: goldfish
20
+ 2: great white shark
21
+ 3: tiger shark
22
+ 4: hammerhead shark
23
+ 5: electric ray
24
+ 6: stingray
25
+ 7: cock
26
+ 8: hen
27
+ 9: ostrich
28
+ 10: brambling
29
+ 11: goldfinch
30
+ 12: house finch
31
+ 13: junco
32
+ 14: indigo bunting
33
+ 15: American robin
34
+ 16: bulbul
35
+ 17: jay
36
+ 18: magpie
37
+ 19: chickadee
38
+ 20: American dipper
39
+ 21: kite
40
+ 22: bald eagle
41
+ 23: vulture
42
+ 24: great grey owl
43
+ 25: fire salamander
44
+ 26: smooth newt
45
+ 27: newt
46
+ 28: spotted salamander
47
+ 29: axolotl
48
+ 30: American bullfrog
49
+ 31: tree frog
50
+ 32: tailed frog
51
+ 33: loggerhead sea turtle
52
+ 34: leatherback sea turtle
53
+ 35: mud turtle
54
+ 36: terrapin
55
+ 37: box turtle
56
+ 38: banded gecko
57
+ 39: green iguana
58
+ 40: Carolina anole
59
+ 41: desert grassland whiptail lizard
60
+ 42: agama
61
+ 43: frilled-necked lizard
62
+ 44: alligator lizard
63
+ 45: Gila monster
64
+ 46: European green lizard
65
+ 47: chameleon
66
+ 48: Komodo dragon
67
+ 49: Nile crocodile
68
+ 50: American alligator
69
+ 51: triceratops
70
+ 52: worm snake
71
+ 53: ring-necked snake
72
+ 54: eastern hog-nosed snake
73
+ 55: smooth green snake
74
+ 56: kingsnake
75
+ 57: garter snake
76
+ 58: water snake
77
+ 59: vine snake
78
+ 60: night snake
79
+ 61: boa constrictor
80
+ 62: African rock python
81
+ 63: Indian cobra
82
+ 64: green mamba
83
+ 65: sea snake
84
+ 66: Saharan horned viper
85
+ 67: eastern diamondback rattlesnake
86
+ 68: sidewinder
87
+ 69: trilobite
88
+ 70: harvestman
89
+ 71: scorpion
90
+ 72: yellow garden spider
91
+ 73: barn spider
92
+ 74: European garden spider
93
+ 75: southern black widow
94
+ 76: tarantula
95
+ 77: wolf spider
96
+ 78: tick
97
+ 79: centipede
98
+ 80: black grouse
99
+ 81: ptarmigan
100
+ 82: ruffed grouse
101
+ 83: prairie grouse
102
+ 84: peacock
103
+ 85: quail
104
+ 86: partridge
105
+ 87: grey parrot
106
+ 88: macaw
107
+ 89: sulphur-crested cockatoo
108
+ 90: lorikeet
109
+ 91: coucal
110
+ 92: bee eater
111
+ 93: hornbill
112
+ 94: hummingbird
113
+ 95: jacamar
114
+ 96: toucan
115
+ 97: duck
116
+ 98: red-breasted merganser
117
+ 99: goose
118
+ 100: black swan
119
+ 101: tusker
120
+ 102: echidna
121
+ 103: platypus
122
+ 104: wallaby
123
+ 105: koala
124
+ 106: wombat
125
+ 107: jellyfish
126
+ 108: sea anemone
127
+ 109: brain coral
128
+ 110: flatworm
129
+ 111: nematode
130
+ 112: conch
131
+ 113: snail
132
+ 114: slug
133
+ 115: sea slug
134
+ 116: chiton
135
+ 117: chambered nautilus
136
+ 118: Dungeness crab
137
+ 119: rock crab
138
+ 120: fiddler crab
139
+ 121: red king crab
140
+ 122: American lobster
141
+ 123: spiny lobster
142
+ 124: crayfish
143
+ 125: hermit crab
144
+ 126: isopod
145
+ 127: white stork
146
+ 128: black stork
147
+ 129: spoonbill
148
+ 130: flamingo
149
+ 131: little blue heron
150
+ 132: great egret
151
+ 133: bittern
152
+ 134: crane (bird)
153
+ 135: limpkin
154
+ 136: common gallinule
155
+ 137: American coot
156
+ 138: bustard
157
+ 139: ruddy turnstone
158
+ 140: dunlin
159
+ 141: common redshank
160
+ 142: dowitcher
161
+ 143: oystercatcher
162
+ 144: pelican
163
+ 145: king penguin
164
+ 146: albatross
165
+ 147: grey whale
166
+ 148: killer whale
167
+ 149: dugong
168
+ 150: sea lion
169
+ 151: Chihuahua
170
+ 152: Japanese Chin
171
+ 153: Maltese
172
+ 154: Pekingese
173
+ 155: Shih Tzu
174
+ 156: King Charles Spaniel
175
+ 157: Papillon
176
+ 158: toy terrier
177
+ 159: Rhodesian Ridgeback
178
+ 160: Afghan Hound
179
+ 161: Basset Hound
180
+ 162: Beagle
181
+ 163: Bloodhound
182
+ 164: Bluetick Coonhound
183
+ 165: Black and Tan Coonhound
184
+ 166: Treeing Walker Coonhound
185
+ 167: English foxhound
186
+ 168: Redbone Coonhound
187
+ 169: borzoi
188
+ 170: Irish Wolfhound
189
+ 171: Italian Greyhound
190
+ 172: Whippet
191
+ 173: Ibizan Hound
192
+ 174: Norwegian Elkhound
193
+ 175: Otterhound
194
+ 176: Saluki
195
+ 177: Scottish Deerhound
196
+ 178: Weimaraner
197
+ 179: Staffordshire Bull Terrier
198
+ 180: American Staffordshire Terrier
199
+ 181: Bedlington Terrier
200
+ 182: Border Terrier
201
+ 183: Kerry Blue Terrier
202
+ 184: Irish Terrier
203
+ 185: Norfolk Terrier
204
+ 186: Norwich Terrier
205
+ 187: Yorkshire Terrier
206
+ 188: Wire Fox Terrier
207
+ 189: Lakeland Terrier
208
+ 190: Sealyham Terrier
209
+ 191: Airedale Terrier
210
+ 192: Cairn Terrier
211
+ 193: Australian Terrier
212
+ 194: Dandie Dinmont Terrier
213
+ 195: Boston Terrier
214
+ 196: Miniature Schnauzer
215
+ 197: Giant Schnauzer
216
+ 198: Standard Schnauzer
217
+ 199: Scottish Terrier
218
+ 200: Tibetan Terrier
219
+ 201: Australian Silky Terrier
220
+ 202: Soft-coated Wheaten Terrier
221
+ 203: West Highland White Terrier
222
+ 204: Lhasa Apso
223
+ 205: Flat-Coated Retriever
224
+ 206: Curly-coated Retriever
225
+ 207: Golden Retriever
226
+ 208: Labrador Retriever
227
+ 209: Chesapeake Bay Retriever
228
+ 210: German Shorthaired Pointer
229
+ 211: Vizsla
230
+ 212: English Setter
231
+ 213: Irish Setter
232
+ 214: Gordon Setter
233
+ 215: Brittany
234
+ 216: Clumber Spaniel
235
+ 217: English Springer Spaniel
236
+ 218: Welsh Springer Spaniel
237
+ 219: Cocker Spaniels
238
+ 220: Sussex Spaniel
239
+ 221: Irish Water Spaniel
240
+ 222: Kuvasz
241
+ 223: Schipperke
242
+ 224: Groenendael
243
+ 225: Malinois
244
+ 226: Briard
245
+ 227: Australian Kelpie
246
+ 228: Komondor
247
+ 229: Old English Sheepdog
248
+ 230: Shetland Sheepdog
249
+ 231: collie
250
+ 232: Border Collie
251
+ 233: Bouvier des Flandres
252
+ 234: Rottweiler
253
+ 235: German Shepherd Dog
254
+ 236: Dobermann
255
+ 237: Miniature Pinscher
256
+ 238: Greater Swiss Mountain Dog
257
+ 239: Bernese Mountain Dog
258
+ 240: Appenzeller Sennenhund
259
+ 241: Entlebucher Sennenhund
260
+ 242: Boxer
261
+ 243: Bullmastiff
262
+ 244: Tibetan Mastiff
263
+ 245: French Bulldog
264
+ 246: Great Dane
265
+ 247: St. Bernard
266
+ 248: husky
267
+ 249: Alaskan Malamute
268
+ 250: Siberian Husky
269
+ 251: Dalmatian
270
+ 252: Affenpinscher
271
+ 253: Basenji
272
+ 254: pug
273
+ 255: Leonberger
274
+ 256: Newfoundland
275
+ 257: Pyrenean Mountain Dog
276
+ 258: Samoyed
277
+ 259: Pomeranian
278
+ 260: Chow Chow
279
+ 261: Keeshond
280
+ 262: Griffon Bruxellois
281
+ 263: Pembroke Welsh Corgi
282
+ 264: Cardigan Welsh Corgi
283
+ 265: Toy Poodle
284
+ 266: Miniature Poodle
285
+ 267: Standard Poodle
286
+ 268: Mexican hairless dog
287
+ 269: grey wolf
288
+ 270: Alaskan tundra wolf
289
+ 271: red wolf
290
+ 272: coyote
291
+ 273: dingo
292
+ 274: dhole
293
+ 275: African wild dog
294
+ 276: hyena
295
+ 277: red fox
296
+ 278: kit fox
297
+ 279: Arctic fox
298
+ 280: grey fox
299
+ 281: tabby cat
300
+ 282: tiger cat
301
+ 283: Persian cat
302
+ 284: Siamese cat
303
+ 285: Egyptian Mau
304
+ 286: cougar
305
+ 287: lynx
306
+ 288: leopard
307
+ 289: snow leopard
308
+ 290: jaguar
309
+ 291: lion
310
+ 292: tiger
311
+ 293: cheetah
312
+ 294: brown bear
313
+ 295: American black bear
314
+ 296: polar bear
315
+ 297: sloth bear
316
+ 298: mongoose
317
+ 299: meerkat
318
+ 300: tiger beetle
319
+ 301: ladybug
320
+ 302: ground beetle
321
+ 303: longhorn beetle
322
+ 304: leaf beetle
323
+ 305: dung beetle
324
+ 306: rhinoceros beetle
325
+ 307: weevil
326
+ 308: fly
327
+ 309: bee
328
+ 310: ant
329
+ 311: grasshopper
330
+ 312: cricket
331
+ 313: stick insect
332
+ 314: cockroach
333
+ 315: mantis
334
+ 316: cicada
335
+ 317: leafhopper
336
+ 318: lacewing
337
+ 319: dragonfly
338
+ 320: damselfly
339
+ 321: red admiral
340
+ 322: ringlet
341
+ 323: monarch butterfly
342
+ 324: small white
343
+ 325: sulphur butterfly
344
+ 326: gossamer-winged butterfly
345
+ 327: starfish
346
+ 328: sea urchin
347
+ 329: sea cucumber
348
+ 330: cottontail rabbit
349
+ 331: hare
350
+ 332: Angora rabbit
351
+ 333: hamster
352
+ 334: porcupine
353
+ 335: fox squirrel
354
+ 336: marmot
355
+ 337: beaver
356
+ 338: guinea pig
357
+ 339: common sorrel
358
+ 340: zebra
359
+ 341: pig
360
+ 342: wild boar
361
+ 343: warthog
362
+ 344: hippopotamus
363
+ 345: ox
364
+ 346: water buffalo
365
+ 347: bison
366
+ 348: ram
367
+ 349: bighorn sheep
368
+ 350: Alpine ibex
369
+ 351: hartebeest
370
+ 352: impala
371
+ 353: gazelle
372
+ 354: dromedary
373
+ 355: llama
374
+ 356: weasel
375
+ 357: mink
376
+ 358: European polecat
377
+ 359: black-footed ferret
378
+ 360: otter
379
+ 361: skunk
380
+ 362: badger
381
+ 363: armadillo
382
+ 364: three-toed sloth
383
+ 365: orangutan
384
+ 366: gorilla
385
+ 367: chimpanzee
386
+ 368: gibbon
387
+ 369: siamang
388
+ 370: guenon
389
+ 371: patas monkey
390
+ 372: baboon
391
+ 373: macaque
392
+ 374: langur
393
+ 375: black-and-white colobus
394
+ 376: proboscis monkey
395
+ 377: marmoset
396
+ 378: white-headed capuchin
397
+ 379: howler monkey
398
+ 380: titi
399
+ 381: Geoffroy's spider monkey
400
+ 382: common squirrel monkey
401
+ 383: ring-tailed lemur
402
+ 384: indri
403
+ 385: Asian elephant
404
+ 386: African bush elephant
405
+ 387: red panda
406
+ 388: giant panda
407
+ 389: snoek
408
+ 390: eel
409
+ 391: coho salmon
410
+ 392: rock beauty
411
+ 393: clownfish
412
+ 394: sturgeon
413
+ 395: garfish
414
+ 396: lionfish
415
+ 397: pufferfish
416
+ 398: abacus
417
+ 399: abaya
418
+ 400: academic gown
419
+ 401: accordion
420
+ 402: acoustic guitar
421
+ 403: aircraft carrier
422
+ 404: airliner
423
+ 405: airship
424
+ 406: altar
425
+ 407: ambulance
426
+ 408: amphibious vehicle
427
+ 409: analog clock
428
+ 410: apiary
429
+ 411: apron
430
+ 412: waste container
431
+ 413: assault rifle
432
+ 414: backpack
433
+ 415: bakery
434
+ 416: balance beam
435
+ 417: balloon
436
+ 418: ballpoint pen
437
+ 419: Band-Aid
438
+ 420: banjo
439
+ 421: baluster
440
+ 422: barbell
441
+ 423: barber chair
442
+ 424: barbershop
443
+ 425: barn
444
+ 426: barometer
445
+ 427: barrel
446
+ 428: wheelbarrow
447
+ 429: baseball
448
+ 430: basketball
449
+ 431: bassinet
450
+ 432: bassoon
451
+ 433: swimming cap
452
+ 434: bath towel
453
+ 435: bathtub
454
+ 436: station wagon
455
+ 437: lighthouse
456
+ 438: beaker
457
+ 439: military cap
458
+ 440: beer bottle
459
+ 441: beer glass
460
+ 442: bell-cot
461
+ 443: bib
462
+ 444: tandem bicycle
463
+ 445: bikini
464
+ 446: ring binder
465
+ 447: binoculars
466
+ 448: birdhouse
467
+ 449: boathouse
468
+ 450: bobsleigh
469
+ 451: bolo tie
470
+ 452: poke bonnet
471
+ 453: bookcase
472
+ 454: bookstore
473
+ 455: bottle cap
474
+ 456: bow
475
+ 457: bow tie
476
+ 458: brass
477
+ 459: bra
478
+ 460: breakwater
479
+ 461: breastplate
480
+ 462: broom
481
+ 463: bucket
482
+ 464: buckle
483
+ 465: bulletproof vest
484
+ 466: high-speed train
485
+ 467: butcher shop
486
+ 468: taxicab
487
+ 469: cauldron
488
+ 470: candle
489
+ 471: cannon
490
+ 472: canoe
491
+ 473: can opener
492
+ 474: cardigan
493
+ 475: car mirror
494
+ 476: carousel
495
+ 477: tool kit
496
+ 478: carton
497
+ 479: car wheel
498
+ 480: automated teller machine
499
+ 481: cassette
500
+ 482: cassette player
501
+ 483: castle
502
+ 484: catamaran
503
+ 485: CD player
504
+ 486: cello
505
+ 487: mobile phone
506
+ 488: chain
507
+ 489: chain-link fence
508
+ 490: chain mail
509
+ 491: chainsaw
510
+ 492: chest
511
+ 493: chiffonier
512
+ 494: chime
513
+ 495: china cabinet
514
+ 496: Christmas stocking
515
+ 497: church
516
+ 498: movie theater
517
+ 499: cleaver
518
+ 500: cliff dwelling
519
+ 501: cloak
520
+ 502: clogs
521
+ 503: cocktail shaker
522
+ 504: coffee mug
523
+ 505: coffeemaker
524
+ 506: coil
525
+ 507: combination lock
526
+ 508: computer keyboard
527
+ 509: confectionery store
528
+ 510: container ship
529
+ 511: convertible
530
+ 512: corkscrew
531
+ 513: cornet
532
+ 514: cowboy boot
533
+ 515: cowboy hat
534
+ 516: cradle
535
+ 517: crane (machine)
536
+ 518: crash helmet
537
+ 519: crate
538
+ 520: infant bed
539
+ 521: Crock Pot
540
+ 522: croquet ball
541
+ 523: crutch
542
+ 524: cuirass
543
+ 525: dam
544
+ 526: desk
545
+ 527: desktop computer
546
+ 528: rotary dial telephone
547
+ 529: diaper
548
+ 530: digital clock
549
+ 531: digital watch
550
+ 532: dining table
551
+ 533: dishcloth
552
+ 534: dishwasher
553
+ 535: disc brake
554
+ 536: dock
555
+ 537: dog sled
556
+ 538: dome
557
+ 539: doormat
558
+ 540: drilling rig
559
+ 541: drum
560
+ 542: drumstick
561
+ 543: dumbbell
562
+ 544: Dutch oven
563
+ 545: electric fan
564
+ 546: electric guitar
565
+ 547: electric locomotive
566
+ 548: entertainment center
567
+ 549: envelope
568
+ 550: espresso machine
569
+ 551: face powder
570
+ 552: feather boa
571
+ 553: filing cabinet
572
+ 554: fireboat
573
+ 555: fire engine
574
+ 556: fire screen sheet
575
+ 557: flagpole
576
+ 558: flute
577
+ 559: folding chair
578
+ 560: football helmet
579
+ 561: forklift
580
+ 562: fountain
581
+ 563: fountain pen
582
+ 564: four-poster bed
583
+ 565: freight car
584
+ 566: French horn
585
+ 567: frying pan
586
+ 568: fur coat
587
+ 569: garbage truck
588
+ 570: gas mask
589
+ 571: gas pump
590
+ 572: goblet
591
+ 573: go-kart
592
+ 574: golf ball
593
+ 575: golf cart
594
+ 576: gondola
595
+ 577: gong
596
+ 578: gown
597
+ 579: grand piano
598
+ 580: greenhouse
599
+ 581: grille
600
+ 582: grocery store
601
+ 583: guillotine
602
+ 584: barrette
603
+ 585: hair spray
604
+ 586: half-track
605
+ 587: hammer
606
+ 588: hamper
607
+ 589: hair dryer
608
+ 590: hand-held computer
609
+ 591: handkerchief
610
+ 592: hard disk drive
611
+ 593: harmonica
612
+ 594: harp
613
+ 595: harvester
614
+ 596: hatchet
615
+ 597: holster
616
+ 598: home theater
617
+ 599: honeycomb
618
+ 600: hook
619
+ 601: hoop skirt
620
+ 602: horizontal bar
621
+ 603: horse-drawn vehicle
622
+ 604: hourglass
623
+ 605: iPod
624
+ 606: clothes iron
625
+ 607: jack-o'-lantern
626
+ 608: jeans
627
+ 609: jeep
628
+ 610: T-shirt
629
+ 611: jigsaw puzzle
630
+ 612: pulled rickshaw
631
+ 613: joystick
632
+ 614: kimono
633
+ 615: knee pad
634
+ 616: knot
635
+ 617: lab coat
636
+ 618: ladle
637
+ 619: lampshade
638
+ 620: laptop computer
639
+ 621: lawn mower
640
+ 622: lens cap
641
+ 623: paper knife
642
+ 624: library
643
+ 625: lifeboat
644
+ 626: lighter
645
+ 627: limousine
646
+ 628: ocean liner
647
+ 629: lipstick
648
+ 630: slip-on shoe
649
+ 631: lotion
650
+ 632: speaker
651
+ 633: loupe
652
+ 634: sawmill
653
+ 635: magnetic compass
654
+ 636: mail bag
655
+ 637: mailbox
656
+ 638: tights
657
+ 639: tank suit
658
+ 640: manhole cover
659
+ 641: maraca
660
+ 642: marimba
661
+ 643: mask
662
+ 644: match
663
+ 645: maypole
664
+ 646: maze
665
+ 647: measuring cup
666
+ 648: medicine chest
667
+ 649: megalith
668
+ 650: microphone
669
+ 651: microwave oven
670
+ 652: military uniform
671
+ 653: milk can
672
+ 654: minibus
673
+ 655: miniskirt
674
+ 656: minivan
675
+ 657: missile
676
+ 658: mitten
677
+ 659: mixing bowl
678
+ 660: mobile home
679
+ 661: Model T
680
+ 662: modem
681
+ 663: monastery
682
+ 664: monitor
683
+ 665: moped
684
+ 666: mortar
685
+ 667: square academic cap
686
+ 668: mosque
687
+ 669: mosquito net
688
+ 670: scooter
689
+ 671: mountain bike
690
+ 672: tent
691
+ 673: computer mouse
692
+ 674: mousetrap
693
+ 675: moving van
694
+ 676: muzzle
695
+ 677: nail
696
+ 678: neck brace
697
+ 679: necklace
698
+ 680: nipple
699
+ 681: notebook computer
700
+ 682: obelisk
701
+ 683: oboe
702
+ 684: ocarina
703
+ 685: odometer
704
+ 686: oil filter
705
+ 687: organ
706
+ 688: oscilloscope
707
+ 689: overskirt
708
+ 690: bullock cart
709
+ 691: oxygen mask
710
+ 692: packet
711
+ 693: paddle
712
+ 694: paddle wheel
713
+ 695: padlock
714
+ 696: paintbrush
715
+ 697: pajamas
716
+ 698: palace
717
+ 699: pan flute
718
+ 700: paper towel
719
+ 701: parachute
720
+ 702: parallel bars
721
+ 703: park bench
722
+ 704: parking meter
723
+ 705: passenger car
724
+ 706: patio
725
+ 707: payphone
726
+ 708: pedestal
727
+ 709: pencil case
728
+ 710: pencil sharpener
729
+ 711: perfume
730
+ 712: Petri dish
731
+ 713: photocopier
732
+ 714: plectrum
733
+ 715: Pickelhaube
734
+ 716: picket fence
735
+ 717: pickup truck
736
+ 718: pier
737
+ 719: piggy bank
738
+ 720: pill bottle
739
+ 721: pillow
740
+ 722: ping-pong ball
741
+ 723: pinwheel
742
+ 724: pirate ship
743
+ 725: pitcher
744
+ 726: hand plane
745
+ 727: planetarium
746
+ 728: plastic bag
747
+ 729: plate rack
748
+ 730: plow
749
+ 731: plunger
750
+ 732: Polaroid camera
751
+ 733: pole
752
+ 734: police van
753
+ 735: poncho
754
+ 736: billiard table
755
+ 737: soda bottle
756
+ 738: pot
757
+ 739: potter's wheel
758
+ 740: power drill
759
+ 741: prayer rug
760
+ 742: printer
761
+ 743: prison
762
+ 744: projectile
763
+ 745: projector
764
+ 746: hockey puck
765
+ 747: punching bag
766
+ 748: purse
767
+ 749: quill
768
+ 750: quilt
769
+ 751: race car
770
+ 752: racket
771
+ 753: radiator
772
+ 754: radio
773
+ 755: radio telescope
774
+ 756: rain barrel
775
+ 757: recreational vehicle
776
+ 758: reel
777
+ 759: reflex camera
778
+ 760: refrigerator
779
+ 761: remote control
780
+ 762: restaurant
781
+ 763: revolver
782
+ 764: rifle
783
+ 765: rocking chair
784
+ 766: rotisserie
785
+ 767: eraser
786
+ 768: rugby ball
787
+ 769: ruler
788
+ 770: running shoe
789
+ 771: safe
790
+ 772: safety pin
791
+ 773: salt shaker
792
+ 774: sandal
793
+ 775: sarong
794
+ 776: saxophone
795
+ 777: scabbard
796
+ 778: weighing scale
797
+ 779: school bus
798
+ 780: schooner
799
+ 781: scoreboard
800
+ 782: CRT screen
801
+ 783: screw
802
+ 784: screwdriver
803
+ 785: seat belt
804
+ 786: sewing machine
805
+ 787: shield
806
+ 788: shoe store
807
+ 789: shoji
808
+ 790: shopping basket
809
+ 791: shopping cart
810
+ 792: shovel
811
+ 793: shower cap
812
+ 794: shower curtain
813
+ 795: ski
814
+ 796: ski mask
815
+ 797: sleeping bag
816
+ 798: slide rule
817
+ 799: sliding door
818
+ 800: slot machine
819
+ 801: snorkel
820
+ 802: snowmobile
821
+ 803: snowplow
822
+ 804: soap dispenser
823
+ 805: soccer ball
824
+ 806: sock
825
+ 807: solar thermal collector
826
+ 808: sombrero
827
+ 809: soup bowl
828
+ 810: space bar
829
+ 811: space heater
830
+ 812: space shuttle
831
+ 813: spatula
832
+ 814: motorboat
833
+ 815: spider web
834
+ 816: spindle
835
+ 817: sports car
836
+ 818: spotlight
837
+ 819: stage
838
+ 820: steam locomotive
839
+ 821: through arch bridge
840
+ 822: steel drum
841
+ 823: stethoscope
842
+ 824: scarf
843
+ 825: stone wall
844
+ 826: stopwatch
845
+ 827: stove
846
+ 828: strainer
847
+ 829: tram
848
+ 830: stretcher
849
+ 831: couch
850
+ 832: stupa
851
+ 833: submarine
852
+ 834: suit
853
+ 835: sundial
854
+ 836: sunglass
855
+ 837: sunglasses
856
+ 838: sunscreen
857
+ 839: suspension bridge
858
+ 840: mop
859
+ 841: sweatshirt
860
+ 842: swimsuit
861
+ 843: swing
862
+ 844: switch
863
+ 845: syringe
864
+ 846: table lamp
865
+ 847: tank
866
+ 848: tape player
867
+ 849: teapot
868
+ 850: teddy bear
869
+ 851: television
870
+ 852: tennis ball
871
+ 853: thatched roof
872
+ 854: front curtain
873
+ 855: thimble
874
+ 856: threshing machine
875
+ 857: throne
876
+ 858: tile roof
877
+ 859: toaster
878
+ 860: tobacco shop
879
+ 861: toilet seat
880
+ 862: torch
881
+ 863: totem pole
882
+ 864: tow truck
883
+ 865: toy store
884
+ 866: tractor
885
+ 867: semi-trailer truck
886
+ 868: tray
887
+ 869: trench coat
888
+ 870: tricycle
889
+ 871: trimaran
890
+ 872: tripod
891
+ 873: triumphal arch
892
+ 874: trolleybus
893
+ 875: trombone
894
+ 876: tub
895
+ 877: turnstile
896
+ 878: typewriter keyboard
897
+ 879: umbrella
898
+ 880: unicycle
899
+ 881: upright piano
900
+ 882: vacuum cleaner
901
+ 883: vase
902
+ 884: vault
903
+ 885: velvet
904
+ 886: vending machine
905
+ 887: vestment
906
+ 888: viaduct
907
+ 889: violin
908
+ 890: volleyball
909
+ 891: waffle iron
910
+ 892: wall clock
911
+ 893: wallet
912
+ 894: wardrobe
913
+ 895: military aircraft
914
+ 896: sink
915
+ 897: washing machine
916
+ 898: water bottle
917
+ 899: water jug
918
+ 900: water tower
919
+ 901: whiskey jug
920
+ 902: whistle
921
+ 903: wig
922
+ 904: window screen
923
+ 905: window shade
924
+ 906: Windsor tie
925
+ 907: wine bottle
926
+ 908: wing
927
+ 909: wok
928
+ 910: wooden spoon
929
+ 911: wool
930
+ 912: split-rail fence
931
+ 913: shipwreck
932
+ 914: yawl
933
+ 915: yurt
934
+ 916: website
935
+ 917: comic book
936
+ 918: crossword
937
+ 919: traffic sign
938
+ 920: traffic light
939
+ 921: dust jacket
940
+ 922: menu
941
+ 923: plate
942
+ 924: guacamole
943
+ 925: consomme
944
+ 926: hot pot
945
+ 927: trifle
946
+ 928: ice cream
947
+ 929: ice pop
948
+ 930: baguette
949
+ 931: bagel
950
+ 932: pretzel
951
+ 933: cheeseburger
952
+ 934: hot dog
953
+ 935: mashed potato
954
+ 936: cabbage
955
+ 937: broccoli
956
+ 938: cauliflower
957
+ 939: zucchini
958
+ 940: spaghetti squash
959
+ 941: acorn squash
960
+ 942: butternut squash
961
+ 943: cucumber
962
+ 944: artichoke
963
+ 945: bell pepper
964
+ 946: cardoon
965
+ 947: mushroom
966
+ 948: Granny Smith
967
+ 949: strawberry
968
+ 950: orange
969
+ 951: lemon
970
+ 952: fig
971
+ 953: pineapple
972
+ 954: banana
973
+ 955: jackfruit
974
+ 956: custard apple
975
+ 957: pomegranate
976
+ 958: hay
977
+ 959: carbonara
978
+ 960: chocolate syrup
979
+ 961: dough
980
+ 962: meatloaf
981
+ 963: pizza
982
+ 964: pot pie
983
+ 965: burrito
984
+ 966: red wine
985
+ 967: espresso
986
+ 968: cup
987
+ 969: eggnog
988
+ 970: alp
989
+ 971: bubble
990
+ 972: cliff
991
+ 973: coral reef
992
+ 974: geyser
993
+ 975: lakeshore
994
+ 976: promontory
995
+ 977: shoal
996
+ 978: seashore
997
+ 979: valley
998
+ 980: volcano
999
+ 981: baseball player
1000
+ 982: bridegroom
1001
+ 983: scuba diver
1002
+ 984: rapeseed
1003
+ 985: daisy
1004
+ 986: yellow lady's slipper
1005
+ 987: corn
1006
+ 988: acorn
1007
+ 989: rose hip
1008
+ 990: horse chestnut seed
1009
+ 991: coral fungus
1010
+ 992: agaric
1011
+ 993: gyromitra
1012
+ 994: stinkhorn mushroom
1013
+ 995: earth star
1014
+ 996: hen-of-the-woods
1015
+ 997: bolete
1016
+ 998: ear
1017
+ 999: toilet paper
1018
+
1019
+ # Download script/URL (optional)
1020
+ download: data/scripts/get_imagenet1000.sh
yolov5/data/Objects365.yaml ADDED
@@ -0,0 +1,436 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # Objects365 dataset https://www.objects365.org/ by Megvii
3
+ # Example usage: python train.py --data Objects365.yaml
4
+ # parent
5
+ # ├── yolov5
6
+ # └── datasets
7
+ # └── Objects365 ← downloads here (712 GB = 367G data + 345G zips)
8
+
9
+ # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
10
+ path: ../datasets/Objects365 # dataset root dir
11
+ train: images/train # train images (relative to 'path') 1742289 images
12
+ val: images/val # val images (relative to 'path') 80000 images
13
+ test: # test images (optional)
14
+
15
+ # Classes
16
+ names:
17
+ 0: Person
18
+ 1: Sneakers
19
+ 2: Chair
20
+ 3: Other Shoes
21
+ 4: Hat
22
+ 5: Car
23
+ 6: Lamp
24
+ 7: Glasses
25
+ 8: Bottle
26
+ 9: Desk
27
+ 10: Cup
28
+ 11: Street Lights
29
+ 12: Cabinet/shelf
30
+ 13: Handbag/Satchel
31
+ 14: Bracelet
32
+ 15: Plate
33
+ 16: Picture/Frame
34
+ 17: Helmet
35
+ 18: Book
36
+ 19: Gloves
37
+ 20: Storage box
38
+ 21: Boat
39
+ 22: Leather Shoes
40
+ 23: Flower
41
+ 24: Bench
42
+ 25: Potted Plant
43
+ 26: Bowl/Basin
44
+ 27: Flag
45
+ 28: Pillow
46
+ 29: Boots
47
+ 30: Vase
48
+ 31: Microphone
49
+ 32: Necklace
50
+ 33: Ring
51
+ 34: SUV
52
+ 35: Wine Glass
53
+ 36: Belt
54
+ 37: Monitor/TV
55
+ 38: Backpack
56
+ 39: Umbrella
57
+ 40: Traffic Light
58
+ 41: Speaker
59
+ 42: Watch
60
+ 43: Tie
61
+ 44: Trash bin Can
62
+ 45: Slippers
63
+ 46: Bicycle
64
+ 47: Stool
65
+ 48: Barrel/bucket
66
+ 49: Van
67
+ 50: Couch
68
+ 51: Sandals
69
+ 52: Basket
70
+ 53: Drum
71
+ 54: Pen/Pencil
72
+ 55: Bus
73
+ 56: Wild Bird
74
+ 57: High Heels
75
+ 58: Motorcycle
76
+ 59: Guitar
77
+ 60: Carpet
78
+ 61: Cell Phone
79
+ 62: Bread
80
+ 63: Camera
81
+ 64: Canned
82
+ 65: Truck
83
+ 66: Traffic cone
84
+ 67: Cymbal
85
+ 68: Lifesaver
86
+ 69: Towel
87
+ 70: Stuffed Toy
88
+ 71: Candle
89
+ 72: Sailboat
90
+ 73: Laptop
91
+ 74: Awning
92
+ 75: Bed
93
+ 76: Faucet
94
+ 77: Tent
95
+ 78: Horse
96
+ 79: Mirror
97
+ 80: Power outlet
98
+ 81: Sink
99
+ 82: Apple
100
+ 83: Air Conditioner
101
+ 84: Knife
102
+ 85: Hockey Stick
103
+ 86: Paddle
104
+ 87: Pickup Truck
105
+ 88: Fork
106
+ 89: Traffic Sign
107
+ 90: Balloon
108
+ 91: Tripod
109
+ 92: Dog
110
+ 93: Spoon
111
+ 94: Clock
112
+ 95: Pot
113
+ 96: Cow
114
+ 97: Cake
115
+ 98: Dinning Table
116
+ 99: Sheep
117
+ 100: Hanger
118
+ 101: Blackboard/Whiteboard
119
+ 102: Napkin
120
+ 103: Other Fish
121
+ 104: Orange/Tangerine
122
+ 105: Toiletry
123
+ 106: Keyboard
124
+ 107: Tomato
125
+ 108: Lantern
126
+ 109: Machinery Vehicle
127
+ 110: Fan
128
+ 111: Green Vegetables
129
+ 112: Banana
130
+ 113: Baseball Glove
131
+ 114: Airplane
132
+ 115: Mouse
133
+ 116: Train
134
+ 117: Pumpkin
135
+ 118: Soccer
136
+ 119: Skiboard
137
+ 120: Luggage
138
+ 121: Nightstand
139
+ 122: Tea pot
140
+ 123: Telephone
141
+ 124: Trolley
142
+ 125: Head Phone
143
+ 126: Sports Car
144
+ 127: Stop Sign
145
+ 128: Dessert
146
+ 129: Scooter
147
+ 130: Stroller
148
+ 131: Crane
149
+ 132: Remote
150
+ 133: Refrigerator
151
+ 134: Oven
152
+ 135: Lemon
153
+ 136: Duck
154
+ 137: Baseball Bat
155
+ 138: Surveillance Camera
156
+ 139: Cat
157
+ 140: Jug
158
+ 141: Broccoli
159
+ 142: Piano
160
+ 143: Pizza
161
+ 144: Elephant
162
+ 145: Skateboard
163
+ 146: Surfboard
164
+ 147: Gun
165
+ 148: Skating and Skiing shoes
166
+ 149: Gas stove
167
+ 150: Donut
168
+ 151: Bow Tie
169
+ 152: Carrot
170
+ 153: Toilet
171
+ 154: Kite
172
+ 155: Strawberry
173
+ 156: Other Balls
174
+ 157: Shovel
175
+ 158: Pepper
176
+ 159: Computer Box
177
+ 160: Toilet Paper
178
+ 161: Cleaning Products
179
+ 162: Chopsticks
180
+ 163: Microwave
181
+ 164: Pigeon
182
+ 165: Baseball
183
+ 166: Cutting/chopping Board
184
+ 167: Coffee Table
185
+ 168: Side Table
186
+ 169: Scissors
187
+ 170: Marker
188
+ 171: Pie
189
+ 172: Ladder
190
+ 173: Snowboard
191
+ 174: Cookies
192
+ 175: Radiator
193
+ 176: Fire Hydrant
194
+ 177: Basketball
195
+ 178: Zebra
196
+ 179: Grape
197
+ 180: Giraffe
198
+ 181: Potato
199
+ 182: Sausage
200
+ 183: Tricycle
201
+ 184: Violin
202
+ 185: Egg
203
+ 186: Fire Extinguisher
204
+ 187: Candy
205
+ 188: Fire Truck
206
+ 189: Billiards
207
+ 190: Converter
208
+ 191: Bathtub
209
+ 192: Wheelchair
210
+ 193: Golf Club
211
+ 194: Briefcase
212
+ 195: Cucumber
213
+ 196: Cigar/Cigarette
214
+ 197: Paint Brush
215
+ 198: Pear
216
+ 199: Heavy Truck
217
+ 200: Hamburger
218
+ 201: Extractor
219
+ 202: Extension Cord
220
+ 203: Tong
221
+ 204: Tennis Racket
222
+ 205: Folder
223
+ 206: American Football
224
+ 207: earphone
225
+ 208: Mask
226
+ 209: Kettle
227
+ 210: Tennis
228
+ 211: Ship
229
+ 212: Swing
230
+ 213: Coffee Machine
231
+ 214: Slide
232
+ 215: Carriage
233
+ 216: Onion
234
+ 217: Green beans
235
+ 218: Projector
236
+ 219: Frisbee
237
+ 220: Washing Machine/Drying Machine
238
+ 221: Chicken
239
+ 222: Printer
240
+ 223: Watermelon
241
+ 224: Saxophone
242
+ 225: Tissue
243
+ 226: Toothbrush
244
+ 227: Ice cream
245
+ 228: Hot-air balloon
246
+ 229: Cello
247
+ 230: French Fries
248
+ 231: Scale
249
+ 232: Trophy
250
+ 233: Cabbage
251
+ 234: Hot dog
252
+ 235: Blender
253
+ 236: Peach
254
+ 237: Rice
255
+ 238: Wallet/Purse
256
+ 239: Volleyball
257
+ 240: Deer
258
+ 241: Goose
259
+ 242: Tape
260
+ 243: Tablet
261
+ 244: Cosmetics
262
+ 245: Trumpet
263
+ 246: Pineapple
264
+ 247: Golf Ball
265
+ 248: Ambulance
266
+ 249: Parking meter
267
+ 250: Mango
268
+ 251: Key
269
+ 252: Hurdle
270
+ 253: Fishing Rod
271
+ 254: Medal
272
+ 255: Flute
273
+ 256: Brush
274
+ 257: Penguin
275
+ 258: Megaphone
276
+ 259: Corn
277
+ 260: Lettuce
278
+ 261: Garlic
279
+ 262: Swan
280
+ 263: Helicopter
281
+ 264: Green Onion
282
+ 265: Sandwich
283
+ 266: Nuts
284
+ 267: Speed Limit Sign
285
+ 268: Induction Cooker
286
+ 269: Broom
287
+ 270: Trombone
288
+ 271: Plum
289
+ 272: Rickshaw
290
+ 273: Goldfish
291
+ 274: Kiwi fruit
292
+ 275: Router/modem
293
+ 276: Poker Card
294
+ 277: Toaster
295
+ 278: Shrimp
296
+ 279: Sushi
297
+ 280: Cheese
298
+ 281: Notepaper
299
+ 282: Cherry
300
+ 283: Pliers
301
+ 284: CD
302
+ 285: Pasta
303
+ 286: Hammer
304
+ 287: Cue
305
+ 288: Avocado
306
+ 289: Hamimelon
307
+ 290: Flask
308
+ 291: Mushroom
309
+ 292: Screwdriver
310
+ 293: Soap
311
+ 294: Recorder
312
+ 295: Bear
313
+ 296: Eggplant
314
+ 297: Board Eraser
315
+ 298: Coconut
316
+ 299: Tape Measure/Ruler
317
+ 300: Pig
318
+ 301: Showerhead
319
+ 302: Globe
320
+ 303: Chips
321
+ 304: Steak
322
+ 305: Crosswalk Sign
323
+ 306: Stapler
324
+ 307: Camel
325
+ 308: Formula 1
326
+ 309: Pomegranate
327
+ 310: Dishwasher
328
+ 311: Crab
329
+ 312: Hoverboard
330
+ 313: Meat ball
331
+ 314: Rice Cooker
332
+ 315: Tuba
333
+ 316: Calculator
334
+ 317: Papaya
335
+ 318: Antelope
336
+ 319: Parrot
337
+ 320: Seal
338
+ 321: Butterfly
339
+ 322: Dumbbell
340
+ 323: Donkey
341
+ 324: Lion
342
+ 325: Urinal
343
+ 326: Dolphin
344
+ 327: Electric Drill
345
+ 328: Hair Dryer
346
+ 329: Egg tart
347
+ 330: Jellyfish
348
+ 331: Treadmill
349
+ 332: Lighter
350
+ 333: Grapefruit
351
+ 334: Game board
352
+ 335: Mop
353
+ 336: Radish
354
+ 337: Baozi
355
+ 338: Target
356
+ 339: French
357
+ 340: Spring Rolls
358
+ 341: Monkey
359
+ 342: Rabbit
360
+ 343: Pencil Case
361
+ 344: Yak
362
+ 345: Red Cabbage
363
+ 346: Binoculars
364
+ 347: Asparagus
365
+ 348: Barbell
366
+ 349: Scallop
367
+ 350: Noddles
368
+ 351: Comb
369
+ 352: Dumpling
370
+ 353: Oyster
371
+ 354: Table Tennis paddle
372
+ 355: Cosmetics Brush/Eyeliner Pencil
373
+ 356: Chainsaw
374
+ 357: Eraser
375
+ 358: Lobster
376
+ 359: Durian
377
+ 360: Okra
378
+ 361: Lipstick
379
+ 362: Cosmetics Mirror
380
+ 363: Curling
381
+ 364: Table Tennis
382
+
383
+ # Download script/URL (optional) ---------------------------------------------------------------------------------------
384
+ download: |
385
+ from tqdm import tqdm
386
+
387
+ from utils.general import Path, check_requirements, download, np, xyxy2xywhn
388
+
389
+ check_requirements('pycocotools>=2.0')
390
+ from pycocotools.coco import COCO
391
+
392
+ # Make Directories
393
+ dir = Path(yaml['path']) # dataset root dir
394
+ for p in 'images', 'labels':
395
+ (dir / p).mkdir(parents=True, exist_ok=True)
396
+ for q in 'train', 'val':
397
+ (dir / p / q).mkdir(parents=True, exist_ok=True)
398
+
399
+ # Train, Val Splits
400
+ for split, patches in [('train', 50 + 1), ('val', 43 + 1)]:
401
+ print(f"Processing {split} in {patches} patches ...")
402
+ images, labels = dir / 'images' / split, dir / 'labels' / split
403
+
404
+ # Download
405
+ url = f"https://dorc.ks3-cn-beijing.ksyun.com/data-set/2020Objects365%E6%95%B0%E6%8D%AE%E9%9B%86/{split}/"
406
+ if split == 'train':
407
+ download([f'{url}zhiyuan_objv2_{split}.tar.gz'], dir=dir, delete=False) # annotations json
408
+ download([f'{url}patch{i}.tar.gz' for i in range(patches)], dir=images, curl=True, delete=False, threads=8)
409
+ elif split == 'val':
410
+ download([f'{url}zhiyuan_objv2_{split}.json'], dir=dir, delete=False) # annotations json
411
+ download([f'{url}images/v1/patch{i}.tar.gz' for i in range(15 + 1)], dir=images, curl=True, delete=False, threads=8)
412
+ download([f'{url}images/v2/patch{i}.tar.gz' for i in range(16, patches)], dir=images, curl=True, delete=False, threads=8)
413
+
414
+ # Move
415
+ for f in tqdm(images.rglob('*.jpg'), desc=f'Moving {split} images'):
416
+ f.rename(images / f.name) # move to /images/{split}
417
+
418
+ # Labels
419
+ coco = COCO(dir / f'zhiyuan_objv2_{split}.json')
420
+ names = [x["name"] for x in coco.loadCats(coco.getCatIds())]
421
+ for cid, cat in enumerate(names):
422
+ catIds = coco.getCatIds(catNms=[cat])
423
+ imgIds = coco.getImgIds(catIds=catIds)
424
+ for im in tqdm(coco.loadImgs(imgIds), desc=f'Class {cid + 1}/{len(names)} {cat}'):
425
+ width, height = im["width"], im["height"]
426
+ path = Path(im["file_name"]) # image filename
427
+ try:
428
+ with open(labels / path.with_suffix('.txt').name, 'a') as file:
429
+ annIds = coco.getAnnIds(imgIds=im["id"], catIds=catIds, iscrowd=False)
430
+ for a in coco.loadAnns(annIds):
431
+ x, y, w, h = a['bbox'] # bounding box in xywh (xy top-left corner)
432
+ xyxy = np.array([x, y, x + w, y + h])[None] # pixels(1,4)
433
+ x, y, w, h = xyxy2xywhn(xyxy, w=width, h=height, clip=True)[0] # normalized and clipped
434
+ file.write(f"{cid} {x:.5f} {y:.5f} {w:.5f} {h:.5f}\n")
435
+ except Exception as e:
436
+ print(e)
yolov5/data/SKU-110K.yaml ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # SKU-110K retail items dataset https://github.com/eg4000/SKU110K_CVPR19 by Trax Retail
3
+ # Example usage: python train.py --data SKU-110K.yaml
4
+ # parent
5
+ # ├── yolov5
6
+ # └── datasets
7
+ # └── SKU-110K ← downloads here (13.6 GB)
8
+
9
+ # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
10
+ path: ../datasets/SKU-110K # dataset root dir
11
+ train: train.txt # train images (relative to 'path') 8219 images
12
+ val: val.txt # val images (relative to 'path') 588 images
13
+ test: test.txt # test images (optional) 2936 images
14
+
15
+ # Classes
16
+ names:
17
+ 0: object
18
+
19
+ # Download script/URL (optional) ---------------------------------------------------------------------------------------
20
+ download: |
21
+ import shutil
22
+ from tqdm import tqdm
23
+ from utils.general import np, pd, Path, download, xyxy2xywh
24
+
25
+
26
+ # Download
27
+ dir = Path(yaml['path']) # dataset root dir
28
+ parent = Path(dir.parent) # download dir
29
+ urls = ['http://trax-geometry.s3.amazonaws.com/cvpr_challenge/SKU110K_fixed.tar.gz']
30
+ download(urls, dir=parent, delete=False)
31
+
32
+ # Rename directories
33
+ if dir.exists():
34
+ shutil.rmtree(dir)
35
+ (parent / 'SKU110K_fixed').rename(dir) # rename dir
36
+ (dir / 'labels').mkdir(parents=True, exist_ok=True) # create labels dir
37
+
38
+ # Convert labels
39
+ names = 'image', 'x1', 'y1', 'x2', 'y2', 'class', 'image_width', 'image_height' # column names
40
+ for d in 'annotations_train.csv', 'annotations_val.csv', 'annotations_test.csv':
41
+ x = pd.read_csv(dir / 'annotations' / d, names=names).values # annotations
42
+ images, unique_images = x[:, 0], np.unique(x[:, 0])
43
+ with open((dir / d).with_suffix('.txt').__str__().replace('annotations_', ''), 'w') as f:
44
+ f.writelines(f'./images/{s}\n' for s in unique_images)
45
+ for im in tqdm(unique_images, desc=f'Converting {dir / d}'):
46
+ cls = 0 # single-class dataset
47
+ with open((dir / 'labels' / im).with_suffix('.txt'), 'a') as f:
48
+ for r in x[images == im]:
49
+ w, h = r[6], r[7] # image width, height
50
+ xywh = xyxy2xywh(np.array([[r[1] / w, r[2] / h, r[3] / w, r[4] / h]]))[0] # instance
51
+ f.write(f"{cls} {xywh[0]:.5f} {xywh[1]:.5f} {xywh[2]:.5f} {xywh[3]:.5f}\n") # write label
yolov5/data/VOC.yaml ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # PASCAL VOC dataset http://host.robots.ox.ac.uk/pascal/VOC by University of Oxford
3
+ # Example usage: python train.py --data VOC.yaml
4
+ # parent
5
+ # ├── yolov5
6
+ # └── datasets
7
+ # └── VOC ← downloads here (2.8 GB)
8
+
9
+ # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
10
+ path: ../datasets/VOC
11
+ train: # train images (relative to 'path') 16551 images
12
+ - images/train2012
13
+ - images/train2007
14
+ - images/val2012
15
+ - images/val2007
16
+ val: # val images (relative to 'path') 4952 images
17
+ - images/test2007
18
+ test: # test images (optional)
19
+ - images/test2007
20
+
21
+ # Classes
22
+ names:
23
+ 0: aeroplane
24
+ 1: bicycle
25
+ 2: bird
26
+ 3: boat
27
+ 4: bottle
28
+ 5: bus
29
+ 6: car
30
+ 7: cat
31
+ 8: chair
32
+ 9: cow
33
+ 10: diningtable
34
+ 11: dog
35
+ 12: horse
36
+ 13: motorbike
37
+ 14: person
38
+ 15: pottedplant
39
+ 16: sheep
40
+ 17: sofa
41
+ 18: train
42
+ 19: tvmonitor
43
+
44
+ # Download script/URL (optional) ---------------------------------------------------------------------------------------
45
+ download: |
46
+ import xml.etree.ElementTree as ET
47
+
48
+ from tqdm import tqdm
49
+ from utils.general import download, Path
50
+
51
+
52
+ def convert_label(path, lb_path, year, image_id):
53
+ def convert_box(size, box):
54
+ dw, dh = 1. / size[0], 1. / size[1]
55
+ x, y, w, h = (box[0] + box[1]) / 2.0 - 1, (box[2] + box[3]) / 2.0 - 1, box[1] - box[0], box[3] - box[2]
56
+ return x * dw, y * dh, w * dw, h * dh
57
+
58
+ in_file = open(path / f'VOC{year}/Annotations/{image_id}.xml')
59
+ out_file = open(lb_path, 'w')
60
+ tree = ET.parse(in_file)
61
+ root = tree.getroot()
62
+ size = root.find('size')
63
+ w = int(size.find('width').text)
64
+ h = int(size.find('height').text)
65
+
66
+ names = list(yaml['names'].values()) # names list
67
+ for obj in root.iter('object'):
68
+ cls = obj.find('name').text
69
+ if cls in names and int(obj.find('difficult').text) != 1:
70
+ xmlbox = obj.find('bndbox')
71
+ bb = convert_box((w, h), [float(xmlbox.find(x).text) for x in ('xmin', 'xmax', 'ymin', 'ymax')])
72
+ cls_id = names.index(cls) # class id
73
+ out_file.write(" ".join([str(a) for a in (cls_id, *bb)]) + '\n')
74
+
75
+
76
+ # Download
77
+ dir = Path(yaml['path']) # dataset root dir
78
+ url = 'https://github.com/ultralytics/assets/releases/download/v0.0.0/'
79
+ urls = [f'{url}VOCtrainval_06-Nov-2007.zip', # 446MB, 5012 images
80
+ f'{url}VOCtest_06-Nov-2007.zip', # 438MB, 4953 images
81
+ f'{url}VOCtrainval_11-May-2012.zip'] # 1.95GB, 17126 images
82
+ download(urls, dir=dir / 'images', delete=False, curl=True, threads=3)
83
+
84
+ # Convert
85
+ path = dir / 'images/VOCdevkit'
86
+ for year, image_set in ('2012', 'train'), ('2012', 'val'), ('2007', 'train'), ('2007', 'val'), ('2007', 'test'):
87
+ imgs_path = dir / 'images' / f'{image_set}{year}'
88
+ lbs_path = dir / 'labels' / f'{image_set}{year}'
89
+ imgs_path.mkdir(exist_ok=True, parents=True)
90
+ lbs_path.mkdir(exist_ok=True, parents=True)
91
+
92
+ with open(path / f'VOC{year}/ImageSets/Main/{image_set}.txt') as f:
93
+ image_ids = f.read().strip().split()
94
+ for id in tqdm(image_ids, desc=f'{image_set}{year}'):
95
+ f = path / f'VOC{year}/JPEGImages/{id}.jpg' # old img path
96
+ lb_path = (lbs_path / f.name).with_suffix('.txt') # new label path
97
+ f.rename(imgs_path / f.name) # move image
98
+ convert_label(path, lb_path, year, id) # convert labels to YOLO format
yolov5/data/VisDrone.yaml ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # VisDrone2019-DET dataset https://github.com/VisDrone/VisDrone-Dataset by Tianjin University
3
+ # Example usage: python train.py --data VisDrone.yaml
4
+ # parent
5
+ # ├── yolov5
6
+ # └── datasets
7
+ # └── VisDrone ← downloads here (2.3 GB)
8
+
9
+ # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
10
+ path: ../datasets/VisDrone # dataset root dir
11
+ train: VisDrone2019-DET-train/images # train images (relative to 'path') 6471 images
12
+ val: VisDrone2019-DET-val/images # val images (relative to 'path') 548 images
13
+ test: VisDrone2019-DET-test-dev/images # test images (optional) 1610 images
14
+
15
+ # Classes
16
+ names:
17
+ 0: pedestrian
18
+ 1: people
19
+ 2: bicycle
20
+ 3: car
21
+ 4: van
22
+ 5: truck
23
+ 6: tricycle
24
+ 7: awning-tricycle
25
+ 8: bus
26
+ 9: motor
27
+
28
+ # Download script/URL (optional) ---------------------------------------------------------------------------------------
29
+ download: |
30
+ from utils.general import download, os, Path
31
+
32
+ def visdrone2yolo(dir):
33
+ from PIL import Image
34
+ from tqdm import tqdm
35
+
36
+ def convert_box(size, box):
37
+ # Convert VisDrone box to YOLO xywh box
38
+ dw = 1. / size[0]
39
+ dh = 1. / size[1]
40
+ return (box[0] + box[2] / 2) * dw, (box[1] + box[3] / 2) * dh, box[2] * dw, box[3] * dh
41
+
42
+ (dir / 'labels').mkdir(parents=True, exist_ok=True) # make labels directory
43
+ pbar = tqdm((dir / 'annotations').glob('*.txt'), desc=f'Converting {dir}')
44
+ for f in pbar:
45
+ img_size = Image.open((dir / 'images' / f.name).with_suffix('.jpg')).size
46
+ lines = []
47
+ with open(f, 'r') as file: # read annotation.txt
48
+ for row in [x.split(',') for x in file.read().strip().splitlines()]:
49
+ if row[4] == '0': # VisDrone 'ignored regions' class 0
50
+ continue
51
+ cls = int(row[5]) - 1
52
+ box = convert_box(img_size, tuple(map(int, row[:4])))
53
+ lines.append(f"{cls} {' '.join(f'{x:.6f}' for x in box)}\n")
54
+ with open(str(f).replace(os.sep + 'annotations' + os.sep, os.sep + 'labels' + os.sep), 'w') as fl:
55
+ fl.writelines(lines) # write label.txt
56
+
57
+
58
+ # Download
59
+ dir = Path(yaml['path']) # dataset root dir
60
+ urls = ['https://github.com/ultralytics/assets/releases/download/v0.0.0/VisDrone2019-DET-train.zip',
61
+ 'https://github.com/ultralytics/assets/releases/download/v0.0.0/VisDrone2019-DET-val.zip',
62
+ 'https://github.com/ultralytics/assets/releases/download/v0.0.0/VisDrone2019-DET-test-dev.zip',
63
+ 'https://github.com/ultralytics/assets/releases/download/v0.0.0/VisDrone2019-DET-test-challenge.zip']
64
+ download(urls, dir=dir, curl=True, threads=4)
65
+
66
+ # Convert
67
+ for d in 'VisDrone2019-DET-train', 'VisDrone2019-DET-val', 'VisDrone2019-DET-test-dev':
68
+ visdrone2yolo(dir / d) # convert VisDrone annotations to YOLO labels
yolov5/data/coco.yaml ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # COCO 2017 dataset http://cocodataset.org by Microsoft
3
+ # Example usage: python train.py --data coco.yaml
4
+ # parent
5
+ # ├── yolov5
6
+ # └── datasets
7
+ # └── coco ← downloads here (20.1 GB)
8
+
9
+ # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
10
+ path: ../datasets/coco # dataset root dir
11
+ train: train2017.txt # train images (relative to 'path') 118287 images
12
+ val: val2017.txt # val images (relative to 'path') 5000 images
13
+ test: test-dev2017.txt # 20288 of 40670 images, submit to https://competitions.codalab.org/competitions/20794
14
+
15
+ # Classes
16
+ names:
17
+ 0: person
18
+ 1: bicycle
19
+ 2: car
20
+ 3: motorcycle
21
+ 4: airplane
22
+ 5: bus
23
+ 6: train
24
+ 7: truck
25
+ 8: boat
26
+ 9: traffic light
27
+ 10: fire hydrant
28
+ 11: stop sign
29
+ 12: parking meter
30
+ 13: bench
31
+ 14: bird
32
+ 15: cat
33
+ 16: dog
34
+ 17: horse
35
+ 18: sheep
36
+ 19: cow
37
+ 20: elephant
38
+ 21: bear
39
+ 22: zebra
40
+ 23: giraffe
41
+ 24: backpack
42
+ 25: umbrella
43
+ 26: handbag
44
+ 27: tie
45
+ 28: suitcase
46
+ 29: frisbee
47
+ 30: skis
48
+ 31: snowboard
49
+ 32: sports ball
50
+ 33: kite
51
+ 34: baseball bat
52
+ 35: baseball glove
53
+ 36: skateboard
54
+ 37: surfboard
55
+ 38: tennis racket
56
+ 39: bottle
57
+ 40: wine glass
58
+ 41: cup
59
+ 42: fork
60
+ 43: knife
61
+ 44: spoon
62
+ 45: bowl
63
+ 46: banana
64
+ 47: apple
65
+ 48: sandwich
66
+ 49: orange
67
+ 50: broccoli
68
+ 51: carrot
69
+ 52: hot dog
70
+ 53: pizza
71
+ 54: donut
72
+ 55: cake
73
+ 56: chair
74
+ 57: couch
75
+ 58: potted plant
76
+ 59: bed
77
+ 60: dining table
78
+ 61: toilet
79
+ 62: tv
80
+ 63: laptop
81
+ 64: mouse
82
+ 65: remote
83
+ 66: keyboard
84
+ 67: cell phone
85
+ 68: microwave
86
+ 69: oven
87
+ 70: toaster
88
+ 71: sink
89
+ 72: refrigerator
90
+ 73: book
91
+ 74: clock
92
+ 75: vase
93
+ 76: scissors
94
+ 77: teddy bear
95
+ 78: hair drier
96
+ 79: toothbrush
97
+
98
+ # Download script/URL (optional)
99
+ download: |
100
+ from utils.general import download, Path
101
+
102
+
103
+ # Download labels
104
+ segments = False # segment or box labels
105
+ dir = Path(yaml['path']) # dataset root dir
106
+ url = 'https://github.com/ultralytics/assets/releases/download/v0.0.0/'
107
+ urls = [url + ('coco2017labels-segments.zip' if segments else 'coco2017labels.zip')] # labels
108
+ download(urls, dir=dir.parent)
109
+
110
+ # Download data
111
+ urls = ['http://images.cocodataset.org/zips/train2017.zip', # 19G, 118k images
112
+ 'http://images.cocodataset.org/zips/val2017.zip', # 1G, 5k images
113
+ 'http://images.cocodataset.org/zips/test2017.zip'] # 7G, 41k images (optional)
114
+ download(urls, dir=dir / 'images', threads=3)
yolov5/data/coco128-seg.yaml ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # COCO128-seg dataset https://www.kaggle.com/ultralytics/coco128 (first 128 images from COCO train2017) by Ultralytics
3
+ # Example usage: python train.py --data coco128.yaml
4
+ # parent
5
+ # ├── yolov5
6
+ # └── datasets
7
+ # └── coco128-seg ← downloads here (7 MB)
8
+
9
+ # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
10
+ path: ../datasets/coco128-seg # dataset root dir
11
+ train: images/train2017 # train images (relative to 'path') 128 images
12
+ val: images/train2017 # val images (relative to 'path') 128 images
13
+ test: # test images (optional)
14
+
15
+ # Classes
16
+ names:
17
+ 0: person
18
+ 1: bicycle
19
+ 2: car
20
+ 3: motorcycle
21
+ 4: airplane
22
+ 5: bus
23
+ 6: train
24
+ 7: truck
25
+ 8: boat
26
+ 9: traffic light
27
+ 10: fire hydrant
28
+ 11: stop sign
29
+ 12: parking meter
30
+ 13: bench
31
+ 14: bird
32
+ 15: cat
33
+ 16: dog
34
+ 17: horse
35
+ 18: sheep
36
+ 19: cow
37
+ 20: elephant
38
+ 21: bear
39
+ 22: zebra
40
+ 23: giraffe
41
+ 24: backpack
42
+ 25: umbrella
43
+ 26: handbag
44
+ 27: tie
45
+ 28: suitcase
46
+ 29: frisbee
47
+ 30: skis
48
+ 31: snowboard
49
+ 32: sports ball
50
+ 33: kite
51
+ 34: baseball bat
52
+ 35: baseball glove
53
+ 36: skateboard
54
+ 37: surfboard
55
+ 38: tennis racket
56
+ 39: bottle
57
+ 40: wine glass
58
+ 41: cup
59
+ 42: fork
60
+ 43: knife
61
+ 44: spoon
62
+ 45: bowl
63
+ 46: banana
64
+ 47: apple
65
+ 48: sandwich
66
+ 49: orange
67
+ 50: broccoli
68
+ 51: carrot
69
+ 52: hot dog
70
+ 53: pizza
71
+ 54: donut
72
+ 55: cake
73
+ 56: chair
74
+ 57: couch
75
+ 58: potted plant
76
+ 59: bed
77
+ 60: dining table
78
+ 61: toilet
79
+ 62: tv
80
+ 63: laptop
81
+ 64: mouse
82
+ 65: remote
83
+ 66: keyboard
84
+ 67: cell phone
85
+ 68: microwave
86
+ 69: oven
87
+ 70: toaster
88
+ 71: sink
89
+ 72: refrigerator
90
+ 73: book
91
+ 74: clock
92
+ 75: vase
93
+ 76: scissors
94
+ 77: teddy bear
95
+ 78: hair drier
96
+ 79: toothbrush
97
+
98
+ # Download script/URL (optional)
99
+ download: https://github.com/ultralytics/assets/releases/download/v0.0.0/coco128-seg.zip
yolov5/data/coco128.yaml ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # COCO128 dataset https://www.kaggle.com/ultralytics/coco128 (first 128 images from COCO train2017) by Ultralytics
3
+ # Example usage: python train.py --data coco128.yaml
4
+ # parent
5
+ # ├── yolov5
6
+ # └── datasets
7
+ # └── coco128 ← downloads here (7 MB)
8
+
9
+ # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
10
+ path: ../datasets/coco128 # dataset root dir
11
+ train: images/train2017 # train images (relative to 'path') 128 images
12
+ val: images/train2017 # val images (relative to 'path') 128 images
13
+ test: # test images (optional)
14
+
15
+ # Classes
16
+ names:
17
+ 0: person
18
+ 1: bicycle
19
+ 2: car
20
+ 3: motorcycle
21
+ 4: airplane
22
+ 5: bus
23
+ 6: train
24
+ 7: truck
25
+ 8: boat
26
+ 9: traffic light
27
+ 10: fire hydrant
28
+ 11: stop sign
29
+ 12: parking meter
30
+ 13: bench
31
+ 14: bird
32
+ 15: cat
33
+ 16: dog
34
+ 17: horse
35
+ 18: sheep
36
+ 19: cow
37
+ 20: elephant
38
+ 21: bear
39
+ 22: zebra
40
+ 23: giraffe
41
+ 24: backpack
42
+ 25: umbrella
43
+ 26: handbag
44
+ 27: tie
45
+ 28: suitcase
46
+ 29: frisbee
47
+ 30: skis
48
+ 31: snowboard
49
+ 32: sports ball
50
+ 33: kite
51
+ 34: baseball bat
52
+ 35: baseball glove
53
+ 36: skateboard
54
+ 37: surfboard
55
+ 38: tennis racket
56
+ 39: bottle
57
+ 40: wine glass
58
+ 41: cup
59
+ 42: fork
60
+ 43: knife
61
+ 44: spoon
62
+ 45: bowl
63
+ 46: banana
64
+ 47: apple
65
+ 48: sandwich
66
+ 49: orange
67
+ 50: broccoli
68
+ 51: carrot
69
+ 52: hot dog
70
+ 53: pizza
71
+ 54: donut
72
+ 55: cake
73
+ 56: chair
74
+ 57: couch
75
+ 58: potted plant
76
+ 59: bed
77
+ 60: dining table
78
+ 61: toilet
79
+ 62: tv
80
+ 63: laptop
81
+ 64: mouse
82
+ 65: remote
83
+ 66: keyboard
84
+ 67: cell phone
85
+ 68: microwave
86
+ 69: oven
87
+ 70: toaster
88
+ 71: sink
89
+ 72: refrigerator
90
+ 73: book
91
+ 74: clock
92
+ 75: vase
93
+ 76: scissors
94
+ 77: teddy bear
95
+ 78: hair drier
96
+ 79: toothbrush
97
+
98
+ # Download script/URL (optional)
99
+ download: https://github.com/ultralytics/assets/releases/download/v0.0.0/coco128.zip
yolov5/data/hyps/hyp.Objects365.yaml ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # Hyperparameters for Objects365 training
3
+ # python train.py --weights yolov5m.pt --data Objects365.yaml --evolve
4
+ # See Hyperparameter Evolution tutorial for details https://github.com/ultralytics/yolov5#tutorials
5
+
6
+ lr0: 0.00258
7
+ lrf: 0.17
8
+ momentum: 0.779
9
+ weight_decay: 0.00058
10
+ warmup_epochs: 1.33
11
+ warmup_momentum: 0.86
12
+ warmup_bias_lr: 0.0711
13
+ box: 0.0539
14
+ cls: 0.299
15
+ cls_pw: 0.825
16
+ obj: 0.632
17
+ obj_pw: 1.0
18
+ iou_t: 0.2
19
+ anchor_t: 3.44
20
+ anchors: 3.2
21
+ fl_gamma: 0.0
22
+ hsv_h: 0.0188
23
+ hsv_s: 0.704
24
+ hsv_v: 0.36
25
+ degrees: 0.0
26
+ translate: 0.0902
27
+ scale: 0.491
28
+ shear: 0.0
29
+ perspective: 0.0
30
+ flipud: 0.0
31
+ fliplr: 0.5
32
+ mosaic: 1.0
33
+ mixup: 0.0
34
+ copy_paste: 0.0
yolov5/data/hyps/hyp.VOC.yaml ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # Hyperparameters for VOC training
3
+ # python train.py --batch 128 --weights yolov5m6.pt --data VOC.yaml --epochs 50 --img 512 --hyp hyp.scratch-med.yaml --evolve
4
+ # See Hyperparameter Evolution tutorial for details https://github.com/ultralytics/yolov5#tutorials
5
+
6
+ # YOLOv5 Hyperparameter Evolution Results
7
+ # Best generation: 467
8
+ # Last generation: 996
9
+ # metrics/precision, metrics/recall, metrics/mAP_0.5, metrics/mAP_0.5:0.95, val/box_loss, val/obj_loss, val/cls_loss
10
+ # 0.87729, 0.85125, 0.91286, 0.72664, 0.0076739, 0.0042529, 0.0013865
11
+
12
+ lr0: 0.00334
13
+ lrf: 0.15135
14
+ momentum: 0.74832
15
+ weight_decay: 0.00025
16
+ warmup_epochs: 3.3835
17
+ warmup_momentum: 0.59462
18
+ warmup_bias_lr: 0.18657
19
+ box: 0.02
20
+ cls: 0.21638
21
+ cls_pw: 0.5
22
+ obj: 0.51728
23
+ obj_pw: 0.67198
24
+ iou_t: 0.2
25
+ anchor_t: 3.3744
26
+ fl_gamma: 0.0
27
+ hsv_h: 0.01041
28
+ hsv_s: 0.54703
29
+ hsv_v: 0.27739
30
+ degrees: 0.0
31
+ translate: 0.04591
32
+ scale: 0.75544
33
+ shear: 0.0
34
+ perspective: 0.0
35
+ flipud: 0.0
36
+ fliplr: 0.5
37
+ mosaic: 0.85834
38
+ mixup: 0.04266
39
+ copy_paste: 0.0
40
+ anchors: 3.412
yolov5/data/hyps/hyp.no-augmentation.yaml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # Hyperparameters when using Albumentations frameworks
3
+ # python train.py --hyp hyp.no-augmentation.yaml
4
+ # See https://github.com/ultralytics/yolov5/pull/3882 for YOLOv5 + Albumentations Usage examples
5
+
6
+ lr0: 0.01 # initial learning rate (SGD=1E-2, Adam=1E-3)
7
+ lrf: 0.1 # final OneCycleLR learning rate (lr0 * lrf)
8
+ momentum: 0.937 # SGD momentum/Adam beta1
9
+ weight_decay: 0.0005 # optimizer weight decay 5e-4
10
+ warmup_epochs: 3.0 # warmup epochs (fractions ok)
11
+ warmup_momentum: 0.8 # warmup initial momentum
12
+ warmup_bias_lr: 0.1 # warmup initial bias lr
13
+ box: 0.05 # box loss gain
14
+ cls: 0.3 # cls loss gain
15
+ cls_pw: 1.0 # cls BCELoss positive_weight
16
+ obj: 0.7 # obj loss gain (scale with pixels)
17
+ obj_pw: 1.0 # obj BCELoss positive_weight
18
+ iou_t: 0.20 # IoU training threshold
19
+ anchor_t: 4.0 # anchor-multiple threshold
20
+ # anchors: 3 # anchors per output layer (0 to ignore)
21
+ # this parameters are all zero since we want to use albumentation framework
22
+ fl_gamma: 0.0 # focal loss gamma (efficientDet default gamma=1.5)
23
+ hsv_h: 0 # image HSV-Hue augmentation (fraction)
24
+ hsv_s: 0 # image HSV-Saturation augmentation (fraction)
25
+ hsv_v: 0 # image HSV-Value augmentation (fraction)
26
+ degrees: 0.0 # image rotation (+/- deg)
27
+ translate: 0 # image translation (+/- fraction)
28
+ scale: 0 # image scale (+/- gain)
29
+ shear: 0 # image shear (+/- deg)
30
+ perspective: 0.0 # image perspective (+/- fraction), range 0-0.001
31
+ flipud: 0.0 # image flip up-down (probability)
32
+ fliplr: 0.0 # image flip left-right (probability)
33
+ mosaic: 0.0 # image mosaic (probability)
34
+ mixup: 0.0 # image mixup (probability)
35
+ copy_paste: 0.0 # segment copy-paste (probability)
yolov5/data/hyps/hyp.scratch-high.yaml ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # Hyperparameters for high-augmentation COCO training from scratch
3
+ # python train.py --batch 32 --cfg yolov5m6.yaml --weights '' --data coco.yaml --img 1280 --epochs 300
4
+ # See tutorials for hyperparameter evolution https://github.com/ultralytics/yolov5#tutorials
5
+
6
+ lr0: 0.01 # initial learning rate (SGD=1E-2, Adam=1E-3)
7
+ lrf: 0.1 # final OneCycleLR learning rate (lr0 * lrf)
8
+ momentum: 0.937 # SGD momentum/Adam beta1
9
+ weight_decay: 0.0005 # optimizer weight decay 5e-4
10
+ warmup_epochs: 3.0 # warmup epochs (fractions ok)
11
+ warmup_momentum: 0.8 # warmup initial momentum
12
+ warmup_bias_lr: 0.1 # warmup initial bias lr
13
+ box: 0.05 # box loss gain
14
+ cls: 0.3 # cls loss gain
15
+ cls_pw: 1.0 # cls BCELoss positive_weight
16
+ obj: 0.7 # obj loss gain (scale with pixels)
17
+ obj_pw: 1.0 # obj BCELoss positive_weight
18
+ iou_t: 0.20 # IoU training threshold
19
+ anchor_t: 4.0 # anchor-multiple threshold
20
+ # anchors: 3 # anchors per output layer (0 to ignore)
21
+ fl_gamma: 0.0 # focal loss gamma (efficientDet default gamma=1.5)
22
+ hsv_h: 0.015 # image HSV-Hue augmentation (fraction)
23
+ hsv_s: 0.7 # image HSV-Saturation augmentation (fraction)
24
+ hsv_v: 0.4 # image HSV-Value augmentation (fraction)
25
+ degrees: 0.0 # image rotation (+/- deg)
26
+ translate: 0.1 # image translation (+/- fraction)
27
+ scale: 0.9 # image scale (+/- gain)
28
+ shear: 0.0 # image shear (+/- deg)
29
+ perspective: 0.0 # image perspective (+/- fraction), range 0-0.001
30
+ flipud: 0.0 # image flip up-down (probability)
31
+ fliplr: 0.5 # image flip left-right (probability)
32
+ mosaic: 1.0 # image mosaic (probability)
33
+ mixup: 0.1 # image mixup (probability)
34
+ copy_paste: 0.1 # segment copy-paste (probability)
yolov5/data/hyps/hyp.scratch-low.yaml ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # Hyperparameters for low-augmentation COCO training from scratch
3
+ # python train.py --batch 64 --cfg yolov5n6.yaml --weights '' --data coco.yaml --img 640 --epochs 300 --linear
4
+ # See tutorials for hyperparameter evolution https://github.com/ultralytics/yolov5#tutorials
5
+
6
+ lr0: 0.01 # initial learning rate (SGD=1E-2, Adam=1E-3)
7
+ lrf: 0.01 # final OneCycleLR learning rate (lr0 * lrf)
8
+ momentum: 0.937 # SGD momentum/Adam beta1
9
+ weight_decay: 0.0005 # optimizer weight decay 5e-4
10
+ warmup_epochs: 3.0 # warmup epochs (fractions ok)
11
+ warmup_momentum: 0.8 # warmup initial momentum
12
+ warmup_bias_lr: 0.1 # warmup initial bias lr
13
+ box: 0.05 # box loss gain
14
+ cls: 0.5 # cls loss gain
15
+ cls_pw: 1.0 # cls BCELoss positive_weight
16
+ obj: 1.0 # obj loss gain (scale with pixels)
17
+ obj_pw: 1.0 # obj BCELoss positive_weight
18
+ iou_t: 0.20 # IoU training threshold
19
+ anchor_t: 4.0 # anchor-multiple threshold
20
+ # anchors: 3 # anchors per output layer (0 to ignore)
21
+ fl_gamma: 0.0 # focal loss gamma (efficientDet default gamma=1.5)
22
+ hsv_h: 0.015 # image HSV-Hue augmentation (fraction)
23
+ hsv_s: 0.7 # image HSV-Saturation augmentation (fraction)
24
+ hsv_v: 0.4 # image HSV-Value augmentation (fraction)
25
+ degrees: 0.0 # image rotation (+/- deg)
26
+ translate: 0.1 # image translation (+/- fraction)
27
+ scale: 0.5 # image scale (+/- gain)
28
+ shear: 0.0 # image shear (+/- deg)
29
+ perspective: 0.0 # image perspective (+/- fraction), range 0-0.001
30
+ flipud: 0.0 # image flip up-down (probability)
31
+ fliplr: 0.5 # image flip left-right (probability)
32
+ mosaic: 1.0 # image mosaic (probability)
33
+ mixup: 0.0 # image mixup (probability)
34
+ copy_paste: 0.0 # segment copy-paste (probability)
yolov5/data/hyps/hyp.scratch-med.yaml ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics YOLOv5 🚀, AGPL-3.0 license
2
+ # Hyperparameters for medium-augmentation COCO training from scratch
3
+ # python train.py --batch 32 --cfg yolov5m6.yaml --weights '' --data coco.yaml --img 1280 --epochs 300
4
+ # See tutorials for hyperparameter evolution https://github.com/ultralytics/yolov5#tutorials
5
+
6
+ lr0: 0.01 # initial learning rate (SGD=1E-2, Adam=1E-3)
7
+ lrf: 0.1 # final OneCycleLR learning rate (lr0 * lrf)
8
+ momentum: 0.937 # SGD momentum/Adam beta1
9
+ weight_decay: 0.0005 # optimizer weight decay 5e-4
10
+ warmup_epochs: 3.0 # warmup epochs (fractions ok)
11
+ warmup_momentum: 0.8 # warmup initial momentum
12
+ warmup_bias_lr: 0.1 # warmup initial bias lr
13
+ box: 0.05 # box loss gain
14
+ cls: 0.3 # cls loss gain
15
+ cls_pw: 1.0 # cls BCELoss positive_weight
16
+ obj: 0.7 # obj loss gain (scale with pixels)
17
+ obj_pw: 1.0 # obj BCELoss positive_weight
18
+ iou_t: 0.20 # IoU training threshold
19
+ anchor_t: 4.0 # anchor-multiple threshold
20
+ # anchors: 3 # anchors per output layer (0 to ignore)
21
+ fl_gamma: 0.0 # focal loss gamma (efficientDet default gamma=1.5)
22
+ hsv_h: 0.015 # image HSV-Hue augmentation (fraction)
23
+ hsv_s: 0.7 # image HSV-Saturation augmentation (fraction)
24
+ hsv_v: 0.4 # image HSV-Value augmentation (fraction)
25
+ degrees: 0.0 # image rotation (+/- deg)
26
+ translate: 0.1 # image translation (+/- fraction)
27
+ scale: 0.9 # image scale (+/- gain)
28
+ shear: 0.0 # image shear (+/- deg)
29
+ perspective: 0.0 # image perspective (+/- fraction), range 0-0.001
30
+ flipud: 0.0 # image flip up-down (probability)
31
+ fliplr: 0.5 # image flip left-right (probability)
32
+ mosaic: 1.0 # image mosaic (probability)
33
+ mixup: 0.1 # image mixup (probability)
34
+ copy_paste: 0.0 # segment copy-paste (probability)
yolov5/data/images/bus.jpg ADDED
yolov5/data/images/zidane.jpg ADDED
yolov5/data/scripts/download_weights.sh ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ # YOLOv5 🚀 by Ultralytics, AGPL-3.0 license
3
+ # Download latest models from https://github.com/ultralytics/yolov5/releases
4
+ # Example usage: bash data/scripts/download_weights.sh
5
+ # parent
6
+ # └── yolov5
7
+ # ├── yolov5s.pt ← downloads here
8
+ # ├── yolov5m.pt
9
+ # └── ...
10
+
11
+ python - <<EOF
12
+ from utils.downloads import attempt_download
13
+
14
+ p5 = list('nsmlx') # P5 models
15
+ p6 = [f'{x}6' for x in p5] # P6 models
16
+ cls = [f'{x}-cls' for x in p5] # classification models
17
+ seg = [f'{x}-seg' for x in p5] # classification models
18
+
19
+ for x in p5 + p6 + cls + seg:
20
+ attempt_download(f'weights/yolov5{x}.pt')
21
+
22
+ EOF