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 2.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
  1. tmp/
  2. wandb
  3. .vscode
  4. .envrc
  5. misc/
  6. **/logs/
  7. ./data/
  8. lightning_logs/
  9. outputs/
  10. old
  11. # ignore data files
  12. *.torch
  13. *.ckpt
  14. # Byte-compiled / optimized / DLL files
  15. __pycache__/
  16. *.py[cod]
  17. *$py.class
  18. # C extensions
  19. *.so
  20. # Distribution / packaging
  21. .Python
  22. build/
  23. develop-eggs/
  24. dist/
  25. downloads/
  26. eggs/
  27. .eggs/
  28. lib/
  29. lib64/
  30. parts/
  31. sdist/
  32. var/
  33. wheels/
  34. share/python-wheels/
  35. *.egg-info/
  36. .installed.cfg
  37. *.egg
  38. MANIFEST
  39. # PyInstaller
  40. # Usually these files are written by a python script from a template
  41. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  42. *.manifest
  43. *.spec
  44. # Installer logs
  45. pip-log.txt
  46. pip-delete-this-directory.txt
  47. # Unit test / coverage reports
  48. htmlcov/
  49. .tox/
  50. .nox/
  51. .coverage
  52. .coverage.*
  53. .cache
  54. nosetests.xml
  55. coverage.xml
  56. *.cover
  57. *.py,cover
  58. .hypothesis/
  59. .pytest_cache/
  60. cover/
  61. # Translations
  62. *.mo
  63. *.pot
  64. # Django stuff:
  65. *.log
  66. local_settings.py
  67. db.sqlite3
  68. db.sqlite3-journal
  69. # Flask stuff:
  70. instance/
  71. .webassets-cache
  72. # Scrapy stuff:
  73. .scrapy
  74. # Sphinx documentation
  75. docs/_build/
  76. # PyBuilder
  77. .pybuilder/
  78. target/
  79. # Jupyter Notebook
  80. .ipynb_checkpoints
  81. # IPython
  82. profile_default/
  83. ipython_config.py
  84. # pyenv
  85. # For a library or package, you might want to ignore these files since the code is
  86. # intended to run in multiple environments; otherwise, check them in:
  87. # .python-version
  88. # pipenv
  89. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  90. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  91. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  92. # install all needed dependencies.
  93. #Pipfile.lock
  94. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  95. __pypackages__/
  96. # Celery stuff
  97. celerybeat-schedule
  98. celerybeat.pid
  99. # SageMath parsed files
  100. *.sage.py
  101. # Environments
  102. .env
  103. .venv
  104. env/
  105. venv/
  106. ENV/
  107. env.bak/
  108. venv.bak/
  109. # Spyder project settings
  110. .spyderproject
  111. .spyproject
  112. # Rope project settings
  113. .ropeproject
  114. # mkdocs documentation
  115. /site
  116. # mypy
  117. .mypy_cache/
  118. .dmypy.json
  119. dmypy.json
  120. # Pyre type checker
  121. .pyre/
  122. # pytype static type analyzer
  123. .pytype/
  124. # Cython debug symbols
  125. cython_debug/
Tip!

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

Comments

Loading...