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
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. .github
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. build/
  11. develop-eggs/
  12. dist/
  13. downloads/
  14. eggs/
  15. .eggs/
  16. lib/
  17. lib64/
  18. parts/
  19. sdist/
  20. var/
  21. wheels/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. MANIFEST
  26. # Lightning /research
  27. test_tube_exp/
  28. tests/tests_tt_dir/
  29. tests/save_dir
  30. default/
  31. data/
  32. test_tube_logs/
  33. test_tube_data/
  34. datasets/
  35. model_weights/
  36. tests/save_dir
  37. tests/tests_tt_dir/
  38. processed/
  39. raw/
  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. # Installer logs
  46. pip-log.txt
  47. pip-delete-this-directory.txt
  48. # Unit test / coverage reports
  49. htmlcov/
  50. .tox/
  51. .coverage
  52. .coverage.*
  53. .cache
  54. nosetests.xml
  55. coverage.xml
  56. *.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. # Flask stuff:
  67. instance/
  68. .webassets-cache
  69. # Scrapy stuff:
  70. .scrapy
  71. # Sphinx documentation
  72. docs/_build/
  73. # PyBuilder
  74. target/
  75. # Jupyter Notebook
  76. .ipynb_checkpoints
  77. # pyenv
  78. .python-version
  79. # celery beat schedule file
  80. celerybeat-schedule
  81. # SageMath parsed files
  82. *.sage.py
  83. # Environments
  84. .env
  85. .venv
  86. env/
  87. venv/
  88. ENV/
  89. env.bak/
  90. venv.bak/
  91. # Spyder project settings
  92. .spyderproject
  93. .spyproject
  94. # Rope project settings
  95. .ropeproject
  96. # mkdocs documentation
  97. /site
  98. # mypy
  99. .mypy_cache/
  100. # IDEs
  101. .idea
  102. .vscode
  103. # seed project
  104. lightning_logs/
  105. MNIST
  106. .DS_Store
Tip!

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

Comments

Loading...