Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

.gitignore 3.8 KB

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

Press p or to see the previous file or, n or to see the next file

Comments

Loading...