Skip to content

Commit bf05a2f

Browse files
committed
upload ia model
1 parent 7e6e73a commit bf05a2f

Some content is hidden

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

88 files changed

+107097
-8
lines changed

.gitignore

+263
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,263 @@
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+
coco2017labels-segments.zip
46+
test2017.zip
47+
train2017.zip
48+
val2017.zip
49+
50+
# MATLAB GitIgnore -----------------------------------------------------------------------------------------------------
51+
*.m~
52+
*.mat
53+
!targets*.mat
54+
55+
# Neural Network weights -----------------------------------------------------------------------------------------------
56+
*.weights
57+
*.pt
58+
*.pb
59+
*.onnx
60+
*.engine
61+
*.mlmodel
62+
*.torchscript
63+
*.tflite
64+
*.h5
65+
*_saved_model/
66+
*_web_model/
67+
*_openvino_model/
68+
darknet53.conv.74
69+
yolov3-tiny.conv.15
70+
*.ptl
71+
*.trt
72+
73+
# GitHub Python GitIgnore ----------------------------------------------------------------------------------------------
74+
# Byte-compiled / optimized / DLL files
75+
__pycache__/
76+
*.py[cod]
77+
*$py.class
78+
79+
# C extensions
80+
*.so
81+
82+
# Distribution / packaging
83+
.Python
84+
env/
85+
build/
86+
develop-eggs/
87+
dist/
88+
downloads/
89+
eggs/
90+
.eggs/
91+
lib/
92+
lib64/
93+
parts/
94+
sdist/
95+
var/
96+
wheels/
97+
*.egg-info/
98+
/wandb/
99+
.installed.cfg
100+
*.egg
101+
102+
103+
# PyInstaller
104+
# Usually these files are written by a python script from a template
105+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
106+
*.manifest
107+
*.spec
108+
109+
# Installer logs
110+
pip-log.txt
111+
pip-delete-this-directory.txt
112+
113+
# Unit test / coverage reports
114+
htmlcov/
115+
.tox/
116+
.coverage
117+
.coverage.*
118+
.cache
119+
nosetests.xml
120+
coverage.xml
121+
*.cover
122+
.hypothesis/
123+
124+
# Translations
125+
*.mo
126+
*.pot
127+
128+
# Django stuff:
129+
*.log
130+
local_settings.py
131+
132+
# Flask stuff:
133+
instance/
134+
.webassets-cache
135+
136+
# Scrapy stuff:
137+
.scrapy
138+
139+
# Sphinx documentation
140+
docs/_build/
141+
142+
# PyBuilder
143+
target/
144+
145+
# Jupyter Notebook
146+
.ipynb_checkpoints
147+
148+
# pyenv
149+
.python-version
150+
151+
# celery beat schedule file
152+
celerybeat-schedule
153+
154+
# SageMath parsed files
155+
*.sage.py
156+
157+
# dotenv
158+
.env
159+
160+
# virtualenv
161+
.venv*
162+
venv*/
163+
ENV*/
164+
165+
# Spyder project settings
166+
.spyderproject
167+
.spyproject
168+
169+
# Rope project settings
170+
.ropeproject
171+
172+
# mkdocs documentation
173+
/site
174+
175+
# mypy
176+
.mypy_cache/
177+
178+
179+
# https://github.com/github/gitignore/blob/master/Global/macOS.gitignore -----------------------------------------------
180+
181+
# General
182+
.DS_Store
183+
.AppleDouble
184+
.LSOverride
185+
186+
# Icon must end with two \r
187+
Icon
188+
Icon?
189+
190+
# Thumbnails
191+
._*
192+
193+
# Files that might appear in the root of a volume
194+
.DocumentRevisions-V100
195+
.fseventsd
196+
.Spotlight-V100
197+
.TemporaryItems
198+
.Trashes
199+
.VolumeIcon.icns
200+
.com.apple.timemachine.donotpresent
201+
202+
# Directories potentially created on remote AFP share
203+
.AppleDB
204+
.AppleDesktop
205+
Network Trash Folder
206+
Temporary Items
207+
.apdisk
208+
209+
210+
# https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
211+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
212+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
213+
214+
# User-specific stuff:
215+
.idea/*
216+
.idea/**/workspace.xml
217+
.idea/**/tasks.xml
218+
.idea/dictionaries
219+
.html # Bokeh Plots
220+
.pg # TensorFlow Frozen Graphs
221+
.avi # videos
222+
223+
# Sensitive or high-churn files:
224+
.idea/**/dataSources/
225+
.idea/**/dataSources.ids
226+
.idea/**/dataSources.local.xml
227+
.idea/**/sqlDataSources.xml
228+
.idea/**/dynamic.xml
229+
.idea/**/uiDesigner.xml
230+
231+
# Gradle:
232+
.idea/**/gradle.xml
233+
.idea/**/libraries
234+
235+
# CMake
236+
cmake-build-debug/
237+
cmake-build-release/
238+
239+
# Mongo Explorer plugin:
240+
.idea/**/mongoSettings.xml
241+
242+
## File-based project format:
243+
*.iws
244+
245+
## Plugin-specific files:
246+
247+
# IntelliJ
248+
out/
249+
250+
# mpeltonen/sbt-idea plugin
251+
.idea_modules/
252+
253+
# JIRA plugin
254+
atlassian-ide-plugin.xml
255+
256+
# Cursive Clojure plugin
257+
.idea/replstate.xml
258+
259+
# Crashlytics plugin (for Android Studio and IntelliJ)
260+
com_crashlytics_export_strings.xml
261+
crashlytics.properties
262+
crashlytics-build.properties
263+
fabric.properties

.idea/vcs.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)