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

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

Comments

Loading...