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 2.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
  1. # log and data files
  2. *.pkl
  3. output
  4. result
  5. *.pt
  6. .DS_Store
  7. bert.pt.json
  8. work
  9. runs
  10. fastspeech_output
  11. .hydra
  12. .bash_history
  13. .viminfo
  14. .ssh/*
  15. .gitconfig
  16. # Byte-compiled / optimized / DLL files
  17. __pycache__/
  18. *.py[cod]
  19. *$py.class
  20. **.pyc
  21. # C extensions
  22. *.so
  23. # Distribution / packaging
  24. .idea
  25. .Python
  26. wandb
  27. build/
  28. develop-eggs/
  29. dist/
  30. downloads/
  31. eggs/
  32. .eggs/
  33. lib/
  34. lib64/
  35. #parts/
  36. sdist/
  37. var/
  38. wheels/
  39. pip-wheel-metadata/
  40. share/python-wheels/
  41. *.egg-info/
  42. .installed.cfg
  43. *.egg
  44. MANIFEST
  45. # PyInstaller
  46. # Usually these files are written by a python script from a template
  47. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  48. *.manifest
  49. *.spec
  50. # Installer logs
  51. pip-log.txt
  52. pip-delete-this-directory.txt
  53. # Unit test / coverage reports
  54. htmlcov/
  55. .tox/
  56. .nox/
  57. .coverage
  58. .coverage.*
  59. .cache
  60. nosetests.xml
  61. coverage.xml
  62. *.cover
  63. .hypothesis/
  64. .pytest_cache/
  65. # Translations
  66. *.mo
  67. *.pot
  68. # Django stuff:
  69. *.log
  70. local_settings.py
  71. db.sqlite3
  72. # Flask stuff:
  73. instance/
  74. .webassets-cache
  75. # Scrapy stuff:
  76. .scrapy
  77. # Sphinx documentation
  78. docs/build
  79. # PyBuilder
  80. target/
  81. # Jupyter Notebook
  82. .ipynb_checkpoints
  83. # IPython
  84. profile_default/
  85. ipython_config.py
  86. # pyenv
  87. .python-version
  88. # pipenv
  89. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  90. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  91. # having no cross-platform support, pipenv may install dependencies that don’t work, or not
  92. # install all needed dependencies.
  93. #Pipfile.lock
  94. # celery beat schedule file
  95. celerybeat-schedule
  96. # SageMath parsed files
  97. *.sage.py
  98. # Environments
  99. .env
  100. .venv
  101. env/
  102. venv/
  103. ENV/
  104. env.bak/
  105. venv.bak/
  106. # VSCode project settins
  107. .vscode*
  108. *.code-workspace
  109. # Spyder project settings
  110. .spyderproject
  111. .spyproject
  112. # Rope project settings
  113. .ropeproject
  114. # mkdocs documentation
  115. /site
  116. /docs/html
  117. /docs/docs_zh/zh
  118. # mypy
  119. .mypy_cache/
  120. .dmypy.json
  121. dmypy.json
  122. # Pyre type checker
  123. .pyre/
  124. # Emacs backup files
  125. *~
  126. cifar-10-batches-py
  127. *.tar.gz
  128. # Test data.
  129. tests/.data
  130. tests/data
  131. # outputs folder
  132. examples/*/outputs
  133. examples/*/NeMo_experiments
  134. examples/*/nemo_experiments
  135. examples/*/.hydra
  136. examples/*/wandb
  137. examples/*/data
  138. wandb
  139. dump.py
  140. docs/sources/source/test_build/
  141. # Checkpoints, config files and temporary files created in tutorials.
  142. examples/neural_graphs/*.chkpt
  143. examples/neural_graphs/*.yml
  144. .hydra/
  145. .cupy/
  146. .fontconfig/
  147. .gnupg/
  148. .jupyter/
  149. .local/
  150. .netrc
  151. .tmp/
  152. lightning_logs/
  153. *.nemo
Tip!

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

Comments

Loading...