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.4 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
  1. *.bak
  2. *.log
  3. *~
  4. .~*
  5. .pypirc
  6. ~*
  7. tmp*
  8. tags
  9. # Byte-compiled / optimized / DLL files
  10. __pycache__/
  11. *.py[cod]
  12. *$py.class
  13. # C extensions
  14. *.so
  15. # Distribution / packaging
  16. .Python
  17. env/
  18. build/
  19. conda-dist
  20. develop-eggs/
  21. dist/
  22. downloads/
  23. eggs/
  24. .eggs/
  25. lib/
  26. lib64/
  27. parts/
  28. sdist/
  29. var/
  30. wheels/
  31. *.egg-info/
  32. .installed.cfg
  33. *.egg
  34. # PyInstaller
  35. # Usually these files are written by a python script from a template
  36. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  37. *.manifest
  38. *.spec
  39. # Installer logs
  40. pip-log.txt
  41. pip-delete-this-directory.txt
  42. # Unit test / coverage reports
  43. htmlcov/
  44. .tox/
  45. .coverage
  46. .coverage.*
  47. .cache
  48. nosetests.xml
  49. coverage.xml
  50. *.cover
  51. .hypothesis/
  52. # Translations
  53. *.mo
  54. *.pot
  55. # Django stuff:
  56. *.log
  57. local_settings.py
  58. # Flask stuff:
  59. instance/
  60. .webassets-cache
  61. # Scrapy stuff:
  62. .scrapy
  63. # Sphinx documentation
  64. docs/_build/
  65. # PyBuilder
  66. target/
  67. # Jupyter Notebook
  68. .ipynb_checkpoints
  69. # pyenv
  70. .python-version
  71. # celery beat schedule file
  72. celerybeat-schedule
  73. # SageMath parsed files
  74. *.sage.py
  75. # dotenv
  76. .env
  77. # virtualenv
  78. .venv
  79. venv/
  80. ENV/
  81. # Spyder project settings
  82. .spyderproject
  83. .spyproject
  84. # Rope project settings
  85. .ropeproject
  86. # mkdocs documentation
  87. /site
  88. # mypy
  89. .mypy_cache/
  90. .vscode
  91. *.swp
  92. # osx generated files
  93. .DS_Store
  94. .DS_Store?
  95. .Trashes
  96. ehthumbs.db
  97. Thumbs.db
  98. .idea
  99. # pytest
  100. .pytest_cache
  101. # tools/trust-doc-nbs
  102. examples/.last_checked
  103. # symlinks to fastai
  104. nbs/dl1/fastai
Tip!

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

Comments

Loading...