Skip to content

Commit b5fb351

Browse files
wm901115nwpu王盟
andauthored
add yolov5 examples (#226)
Co-authored-by: 王盟 <[email protected]>
1 parent bfdb762 commit b5fb351

File tree

106 files changed

+16825
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+16825
-0
lines changed
Lines changed: 222 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# this drop notebooks from GitHub language stats
2+
*.ipynb linguist-vendored

0 commit comments

Comments
 (0)