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.6 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
146
147
148
149
150
  1. *.bak
  2. .gitattributes
  3. .last_checked
  4. .gitconfig
  5. *.bak
  6. *.log
  7. *~
  8. ~*
  9. _tmp*
  10. tmp*
  11. tags
  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. env/
  21. .env/
  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. *.egg-info/
  35. .installed.cfg
  36. *.egg
  37. # PyInstaller
  38. # Usually these files are written by a python script from a template
  39. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  40. *.manifest
  41. *.spec
  42. # Installer logs
  43. pip-log.txt
  44. pip-delete-this-directory.txt
  45. # Unit test / coverage reports
  46. htmlcov/
  47. .tox/
  48. .coverage
  49. .coverage.*
  50. .cache
  51. nosetests.xml
  52. coverage.xml
  53. *.cover
  54. .hypothesis/
  55. # Translations
  56. *.mo
  57. *.pot
  58. # Django stuff:
  59. *.log
  60. local_settings.py
  61. # Flask stuff:
  62. instance/
  63. .webassets-cache
  64. # Scrapy stuff:
  65. .scrapy
  66. # Sphinx documentation
  67. docs/_build/
  68. # PyBuilder
  69. target/
  70. # Jupyter Notebook
  71. .ipynb_checkpoints
  72. # pyenv
  73. .python-version
  74. # celery beat schedule file
  75. celerybeat-schedule
  76. # SageMath parsed files
  77. *.sage.py
  78. # dotenv
  79. .env
  80. # virtualenv
  81. .venv
  82. venv/
  83. ENV/
  84. # Spyder project settings
  85. .spyderproject
  86. .spyproject
  87. # Rope project settings
  88. .ropeproject
  89. # mkdocs documentation
  90. /site
  91. # mypy
  92. .mypy_cache/
  93. .vscode
  94. *.swp
  95. # osx generated files
  96. .DS_Store
  97. .DS_Store?
  98. .Trashes
  99. ehthumbs.db
  100. Thumbs.db
  101. .idea
  102. # pytest
  103. .pytest_cache
  104. # tools/trust-doc-nbs
  105. docs_src/.last_checked
  106. # symlinks to fastai
  107. docs_src/fastai
  108. tools/fastai
  109. # link checker
  110. checklink/cookies.txt
  111. # .gitconfig is now autogenerated
  112. .gitconfig
  113. #ignore data, configs and models
  114. /data
  115. **/models
  116. **/exp_configs
  117. # wandb local logging
  118. **/wandb
  119. /experiment_results
Tip!

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

Comments

Loading...