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.8 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
  1. # Editors
  2. .idea/
  3. .vscode/
  4. # Byte-compiled / optimized / DLL files
  5. __pycache__/
  6. *.py[cod]
  7. *$py.class
  8. # C extensions
  9. *.so
  10. # macOS dir files
  11. .DS_Store
  12. # Distribution / packaging
  13. .Python
  14. env/
  15. build/
  16. develop-eggs/
  17. dist/
  18. downloads/
  19. eggs/
  20. .eggs/
  21. lib64/
  22. parts/
  23. sdist/
  24. var/
  25. wheels/
  26. *.egg-info/
  27. .installed.cfg
  28. *.egg
  29. # Checkpoints
  30. checkpoints
  31. # PyInstaller
  32. # Usually these files are written by a python script from a template
  33. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  34. *.manifest
  35. *.spec
  36. # Installer logs
  37. pip-log.txt
  38. pip-delete-this-directory.txt
  39. # Unit test / coverage reports
  40. htmlcov/
  41. .tox/
  42. .coverage
  43. .coverage.*
  44. .cache
  45. nosetests.xml
  46. coverage.xml
  47. *.cover
  48. .hypothesis/
  49. # Translations
  50. *.mo
  51. *.pot
  52. # Django stuff:
  53. *.log
  54. local_settings.py
  55. # Flask stuff:
  56. instance/
  57. .webassets-cache
  58. # Scrapy stuff:
  59. .scrapy
  60. # Sphinx documentation
  61. docs/_build/
  62. # PyBuilder
  63. target/
  64. # Jupyter Notebook
  65. .ipynb_checkpoints
  66. # pyenv
  67. .python-version
  68. # celery beat schedule file
  69. celerybeat-schedule
  70. # SageMath parsed files
  71. *.sage.py
  72. # dotenv
  73. .env
  74. # virtualenv
  75. .venv
  76. venv/
  77. ENV/
  78. # Spyder project settings
  79. .spyderproject
  80. .spyproject
  81. # Rope project settings
  82. .ropeproject
  83. # mkdocs documentation
  84. /site
  85. # mypy
  86. .mypy_cache/
  87. # Generated files
  88. /fairseq/temporal_convolution_tbc
  89. /fairseq/modules/*_layer/*_forward.cu
  90. /fairseq/modules/*_layer/*_backward.cu
  91. /fairseq/version.py
  92. # data
  93. data-bin/
  94. # reranking
  95. /examples/reranking/rerank_data
  96. # Cython-generated C++ source files
  97. /fairseq/data/data_utils_fast.cpp
  98. /fairseq/data/token_block_utils_fast.cpp
  99. # VSCODE
  100. .vscode/ftp-sync.json
  101. .vscode/settings.json
  102. # Experimental Folder
  103. experimental/*
  104. # Weights and Biases logs
  105. wandb/
  106. # Hydra artifacts
  107. nohup.out
  108. multirun
  109. outputs
  110. # symlinks
  111. seamless_communication
  112. # ignore src/seamless_communication
  113. !*/seamless_communication
  114. m4t_scripts
  115. /ggml/test_data/
Tip!

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

Comments

Loading...