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.9 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
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. scania_truck/
  6. scania_truck_new/
  7. # C extensions
  8. *.so
  9. # Distribution / packaging
  10. .Python
  11. build/
  12. develop-eggs/
  13. dist/
  14. downloads/
  15. eggs/
  16. .eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. wheels/
  23. share/python-wheels/
  24. *.egg-info/
  25. .installed.cfg
  26. *.egg
  27. MANIFEST
  28. # PyInstaller
  29. # Usually these files are written by a python script from a template
  30. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  31. *.manifest
  32. *.spec
  33. # Installer logs
  34. pip-log.txt
  35. pip-delete-this-directory.txt
  36. # Unit test / coverage reports
  37. htmlcov/
  38. .tox/
  39. .nox/
  40. .coverage
  41. .coverage.*
  42. .cache
  43. nosetests.xml
  44. coverage.xml
  45. *.cover
  46. *.py,cover
  47. .hypothesis/
  48. .pytest_cache/
  49. cover/
  50. # Translations
  51. *.mo
  52. *.pot
  53. # Django stuff:
  54. *.log
  55. local_settings.py
  56. db.sqlite3
  57. db.sqlite3-journal
  58. # Flask stuff:
  59. instance/
  60. .webassets-cache
  61. # Scrapy stuff:
  62. .scrapy
  63. # Sphinx documentation
  64. docs/_build/
  65. # PyBuilder
  66. .pybuilder/
  67. target/
  68. # Jupyter Notebook
  69. .ipynb_checkpoints
  70. # IPython
  71. profile_default/
  72. ipython_config.py
  73. # pyenv
  74. # For a library or package, you might want to ignore these files since the code is
  75. # intended to run in multiple environments; otherwise, check them in:
  76. # .python-version
  77. # pipenv
  78. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  79. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  80. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  81. # install all needed dependencies.
  82. #Pipfile.lock
  83. # poetry
  84. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  85. # This is especially recommended for binary packages to ensure reproducibility, and is more
  86. # commonly ignored for libraries.
  87. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  88. #poetry.lock
  89. # pdm
  90. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  91. #pdm.lock
  92. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  93. # in version control.
  94. # https://pdm.fming.dev/#use-with-ide
  95. .pdm.toml
  96. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  97. __pypackages__/
  98. # Celery stuff
  99. celerybeat-schedule
  100. celerybeat.pid
  101. # SageMath parsed files
  102. *.sage.py
  103. # Environments
  104. .env
  105. .venv
  106. env/
  107. venv/
  108. ENV/
  109. env.bak/
  110. venv.bak/
  111. # Spyder project settings
  112. .spyderproject
  113. .spyproject
  114. # Rope project settings
  115. .ropeproject
  116. # mkdocs documentation
  117. /site
  118. # mypy
  119. .mypy_cache/
  120. .dmypy.json
  121. dmypy.json
  122. # Pyre type checker
  123. .pyre/
  124. # pytype static type analyzer
  125. .pytype/
  126. # Cython debug symbols
  127. cython_debug/
  128. # PyCharm
  129. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  130. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  131. # and can be added to the global gitignore or merged into this file. For a more nuclear
  132. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  133. #.idea/
  134. scania_truck/DLLs/_lzma.pyd.c~.conda_trash
  135. notebooks/sample_schema_for_DB.yaml
  136. notebooks/sample_schema.yaml
  137. README for DB.md
  138. # artifacts/data/processed/stage_1_processing/preprocessed_test_data.csv
  139. # artifacts/data/processed/stage_1_processing/preprocessed_train_data.csv
  140. # artifacts/data/raw/test_data_1.csv
  141. # artifacts/data/raw/test_data_2.csv
  142. # artifacts/data/raw/test_data_3.csv
  143. # artifacts/data/raw/train_data_1.csv
  144. # artifacts/data/raw/train_data_2.csv
  145. # artifacts/data/raw/train_data_3.csv
  146. # artifacts/data/processed/stage_2_processing/processed_train_data.csv
  147. # artifacts/data/train_test/test.csv
  148. # artifacts/data/train_test/train.csv
  149. # artifacts/data/processed/stage_2_processing/processed_test_data.csv
  150. .gitattributes
  151. notebooks/mlruns/
  152. mlruns/
  153. stacked_classifier_params.txt
  154. artifacts/model/hp_tuned_model/
  155. sample_model.joblib
  156. artifacts/data/transformed_test_df.csv
  157. preprocessor.joblib
  158. sample.yaml
Tip!

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

Comments

Loading...