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

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

Comments

Loading...