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

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

Comments

Loading...