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

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

Comments

Loading...