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

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

Comments

Loading...