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.1 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
  1. ### Linux ###
  2. *~
  3. # user experiments directory
  4. YOLOX_outputs/
  5. datasets/
  6. # do not ignore datasets under yolox/data
  7. !*yolox/data/datasets/
  8. # temporary files which can be created if a process still has a handle open of a deleted file
  9. .fuse_hidden*
  10. # KDE directory preferences
  11. .directory
  12. # Linux trash folder which might appear on any partition or disk
  13. .Trash-*
  14. # .nfs files are created when an open file is removed but is still being accessed
  15. .nfs*
  16. ### PyCharm ###
  17. # User-specific stuff
  18. .idea
  19. # CMake
  20. cmake-build-*/
  21. # Mongo Explorer plugin
  22. .idea/**/mongoSettings.xml
  23. # File-based project format
  24. *.iws
  25. # IntelliJ
  26. out/
  27. # mpeltonen/sbt-idea plugin
  28. .idea_modules/
  29. # JIRA plugin
  30. atlassian-ide-plugin.xml
  31. # Cursive Clojure plugin
  32. .idea/replstate.xml
  33. # Crashlytics plugin (for Android Studio and IntelliJ)
  34. com_crashlytics_export_strings.xml
  35. crashlytics.properties
  36. crashlytics-build.properties
  37. fabric.properties
  38. # Editor-based Rest Client
  39. .idea/httpRequests
  40. # Android studio 3.1+ serialized cache file
  41. .idea/caches/build_file_checksums.ser
  42. # JetBrains templates
  43. **___jb_tmp___
  44. ### Python ###
  45. # Byte-compiled / optimized / DLL files
  46. __pycache__/
  47. *.py[cod]
  48. *$py.class
  49. # C extensions
  50. *.so
  51. # Distribution / packaging
  52. .Python
  53. build/
  54. develop-eggs/
  55. dist/
  56. downloads/
  57. eggs/
  58. .eggs/
  59. lib/
  60. lib64/
  61. parts/
  62. sdist/
  63. var/
  64. wheels/
  65. pip-wheel-metadata/
  66. share/python-wheels/
  67. *.egg-info/
  68. .installed.cfg
  69. *.egg
  70. MANIFEST
  71. # PyInstaller
  72. # Usually these files are written by a python script from a template
  73. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  74. *.manifest
  75. *.spec
  76. # Installer logs
  77. pip-log.txt
  78. pip-delete-this-directory.txt
  79. # Unit test / coverage reports
  80. htmlcov/
  81. .tox/
  82. .nox/
  83. .coverage
  84. .coverage.*
  85. .cache
  86. nosetests.xml
  87. coverage.xml
  88. *.cover
  89. .hypothesis/
  90. .pytest_cache/
  91. # Translations
  92. *.mo
  93. *.pot
  94. # Django stuff:
  95. *.log
  96. local_settings.py
  97. db.sqlite3
  98. # Flask stuff:
  99. instance/
  100. .webassets-cache
  101. # Scrapy stuff:
  102. .scrapy
  103. # Sphinx documentation
  104. docs/_build/
  105. docs/build/
  106. # PyBuilder
  107. target/
  108. # Jupyter Notebook
  109. .ipynb_checkpoints
  110. # IPython
  111. profile_default/
  112. ipython_config.py
  113. # pyenv
  114. .python-version
  115. # pipenv
  116. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  117. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  118. # having no cross-platform support, pipenv may install dependencies that don’t work, or not
  119. # install all needed dependencies.
  120. #Pipfile.lock
  121. # celery beat schedule file
  122. celerybeat-schedule
  123. # SageMath parsed files
  124. *.sage.py
  125. # Environments
  126. .env
  127. .venv
  128. env/
  129. venv/
  130. ENV/
  131. env.bak/
  132. venv.bak/
  133. # Spyder project settings
  134. .spyderproject
  135. .spyproject
  136. # Rope project settings
  137. .ropeproject
  138. # mkdocs documentation
  139. /site
  140. # mypy
  141. .mypy_cache/
  142. .dmypy.json
  143. dmypy.json
  144. # Pyre type checker
  145. .pyre/
  146. ### Vim ###
  147. # Swap
  148. [._]*.s[a-v][a-z]
  149. [._]*.sw[a-p]
  150. [._]s[a-rt-v][a-z]
  151. [._]ss[a-gi-z]
  152. [._]sw[a-p]
  153. # Session
  154. Session.vim
  155. # Temporary
  156. .netrwhist
  157. # Auto-generated tag files
  158. tags
  159. # Persistent undo
  160. [._]*.un~
  161. # output
  162. docs/api
  163. .code-workspace.code-workspace
  164. *.pkl
  165. *.npy
  166. *.pth
  167. *.onnx
  168. *.engine
  169. events.out.tfevents*
  170. # vscode
  171. *.code-workspace
  172. .vscode
  173. # vim
  174. .vim
  175. /model
Tip!

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

Comments

Loading...