Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

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

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

Comments

Loading...