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.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
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. # C extensions
  5. *.so
  6. # Distribution / packaging
  7. .Python
  8. env/
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. *.egg-info/
  21. .installed.cfg
  22. *.egg
  23. # PyInstaller
  24. # Usually these files are written by a python script from a template
  25. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  26. *.manifest
  27. *.spec
  28. # Installer logs
  29. pip-log.txt
  30. pip-delete-this-directory.txt
  31. # Unit test / coverage reports
  32. htmlcov/
  33. .tox/
  34. .coverage
  35. .coverage.*
  36. .cache
  37. nosetests.xml
  38. coverage.xml
  39. *.cover
  40. # Translations
  41. *.mo
  42. *.pot
  43. # Django stuff:
  44. *.log
  45. # Sphinx documentation
  46. docs/_build/
  47. # PyBuilder
  48. target/
  49. # DotEnv configuration
  50. .env
  51. # Database
  52. *.db
  53. *.rdb
  54. # Pycharm
  55. .idea
  56. # VS Code
  57. .vscode/
  58. # Spyder
  59. .spyproject/
  60. # Jupyter NB Checkpoints
  61. .ipynb_checkpoints/
  62. # exclude data from source control by default
  63. .DS_Store
  64. # vim
  65. *.swp
  66. *.swo
  67. # Mypy cache
  68. .mypy_cache/
  69. mlruns
  70. mlartifacts
  71. /models
  72. ####### LATEX
  73. ## Core latex/pdflatex auxiliary files:
  74. *.aux
  75. *.lof
  76. *.log
  77. *.lot
  78. *.fls
  79. *.out
  80. *.toc
  81. *.fmt
  82. *.fot
  83. *.cb
  84. *.cb2
  85. .*.lb
  86. ## Intermediate documents:
  87. *.dvi
  88. *.xdv
  89. *-converted-to.*
  90. # these rules might exclude image files for figures etc.
  91. # *.ps
  92. # *.eps
  93. # *.pdf
  94. ## Generated if empty string is given at "Please type another file name for output:"
  95. .pdf
  96. ## Bibliography auxiliary files (bibtex/biblatex/biber):
  97. *.bbl
  98. *.bcf
  99. *.blg
  100. *-blx.aux
  101. *-blx.bib
  102. *.run.xml
  103. ## Build tool auxiliary files:
  104. *.fdb_latexmk
  105. *.synctex
  106. *.synctex(busy)
  107. *.synctex.gz
  108. *.synctex.gz(busy)
  109. *.pdfsync
  110. ## Build tool directories for auxiliary files
  111. # latexrun
  112. latex.out/
  113. ## Auxiliary and intermediate files from other packages:
  114. # algorithms
  115. *.alg
  116. *.loa
  117. # achemso
  118. acs-*.bib
  119. # amsthm
  120. *.thm
  121. # beamer
  122. *.nav
  123. *.pre
  124. *.snm
  125. *.vrb
  126. # changes
  127. *.soc
  128. # comment
  129. *.cut
  130. # cprotect
  131. *.cpt
  132. # elsarticle (documentclass of Elsevier journals)
  133. *.spl
  134. # endnotes
  135. *.ent
  136. # fixme
  137. *.lox
  138. # feynmf/feynmp
  139. *.mf
  140. *.mp
  141. *.t[1-9]
  142. *.t[1-9][0-9]
  143. *.tfm
  144. #(r)(e)ledmac/(r)(e)ledpar
  145. *.end
  146. *.?end
  147. *.[1-9]
  148. *.[1-9][0-9]
  149. *.[1-9][0-9][0-9]
  150. *.[1-9]R
  151. *.[1-9][0-9]R
  152. *.[1-9][0-9][0-9]R
  153. *.eledsec[1-9]
  154. *.eledsec[1-9]R
  155. *.eledsec[1-9][0-9]
  156. *.eledsec[1-9][0-9]R
  157. *.eledsec[1-9][0-9][0-9]
  158. *.eledsec[1-9][0-9][0-9]R
  159. # glossaries
  160. *.acn
  161. *.acr
  162. *.glg
  163. *.glo
  164. *.gls
  165. *.glsdefs
  166. *.lzo
  167. *.lzs
  168. # uncomment this for glossaries-extra (will ignore makeindex's style files!)
  169. # *.ist
  170. # gnuplottex
  171. *-gnuplottex-*
  172. # gregoriotex
  173. *.gaux
  174. *.gtex
  175. # htlatex
  176. *.4ct
  177. *.4tc
  178. *.idv
  179. *.lg
  180. *.trc
  181. *.xref
  182. # hyperref
  183. *.brf
  184. # knitr
  185. *-concordance.tex
  186. # TODO Comment the next line if you want to keep your tikz graphics files
  187. *.tikz
  188. *-tikzDictionary
  189. # listings
  190. *.lol
  191. # luatexja-ruby
  192. *.ltjruby
  193. # makeidx
  194. *.idx
  195. *.ilg
  196. *.ind
  197. # minitoc
  198. *.maf
  199. *.mlf
  200. *.mlt
  201. *.mtc[0-9]*
  202. *.slf[0-9]*
  203. *.slt[0-9]*
  204. *.stc[0-9]*
  205. # minted
  206. _minted*
  207. *.pyg
  208. # morewrites
  209. *.mw
  210. # nomencl
  211. *.nlg
  212. *.nlo
  213. *.nls
  214. # pax
  215. *.pax
  216. # pdfpcnotes
  217. *.pdfpc
  218. # sagetex
  219. *.sagetex.sage
  220. *.sagetex.py
  221. *.sagetex.scmd
  222. # scrwfile
  223. *.wrt
  224. # sympy
  225. *.sout
  226. *.sympy
  227. sympy-plots-for-*.tex/
  228. # pdfcomment
  229. *.upa
  230. *.upb
  231. # pythontex
  232. *.pytxcode
  233. pythontex-files-*/
  234. # tcolorbox
  235. *.listing
  236. # thmtools
  237. *.loe
  238. # TikZ & PGF
  239. *.dpth
  240. *.md5
  241. *.auxlock
  242. # todonotes
  243. *.tdo
  244. # vhistory
  245. *.hst
  246. *.ver
  247. # easy-todo
  248. *.lod
  249. # xcolor
  250. *.xcp
  251. # xmpincl
  252. *.xmpi
  253. # xindy
  254. *.xdy
  255. # xypic precompiled matrices and outlines
  256. *.xyc
  257. *.xyd
  258. # endfloat
  259. *.ttt
  260. *.fff
  261. # Latexian
  262. TSWLatexianTemp*
  263. ## Editors:
  264. # WinEdt
  265. *.bak
  266. *.sav
  267. # Texpad
  268. .texpadtmp
  269. # LyX
  270. *.lyx~
  271. # Kile
  272. *.backup
  273. # gummi
  274. .*.swp
  275. # KBibTeX
  276. *~[0-9]*
  277. # TeXnicCenter
  278. *.tps
  279. # auto folder when using emacs and auctex
  280. ./auto/*
  281. *.el
  282. # expex forward references with \gathertags
  283. *-tags.tex
  284. # standalone packages
  285. *.sta
  286. # Makeindex log files
  287. *.lpz
  288. paper/notes
Tip!

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

Comments

Loading...