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

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

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

Comments

Loading...