xuanbao01 commited on
Commit
7eaedba
·
verified ·
1 Parent(s): 44c5827

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. .huggingfaceignore +295 -0
.huggingfaceignore ADDED
@@ -0,0 +1,295 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ share/python-wheels/
20
+ *.egg-info/
21
+ .installed.cfg
22
+ *.egg
23
+ MANIFEST
24
+
25
+ # PyInstaller
26
+ *.manifest
27
+ *.spec
28
+
29
+ # Installer logs
30
+ pip-log.txt
31
+ pip-delete-this-directory.txt
32
+
33
+ # Unit test / coverage reports
34
+ htmlcov/
35
+ .tox/
36
+ .nox/
37
+ .coverage
38
+ .coverage.*
39
+ .cache
40
+ nosetests.xml
41
+ coverage.xml
42
+ *.cover
43
+ *.py,cover
44
+ .hypothesis/
45
+ .pytest_cache/
46
+ cover/
47
+
48
+ # Translations
49
+ *.mo
50
+ *.pot
51
+
52
+ # Django stuff:
53
+ *.log
54
+ local_settings.py
55
+ db.sqlite3
56
+ db.sqlite3-journal
57
+
58
+ # Flask stuff:
59
+ instance/
60
+ .webassets-cache
61
+
62
+ # Scrapy stuff:
63
+ .scrapy
64
+
65
+ # Sphinx documentation
66
+ docs/_build/
67
+
68
+ # PyBuilder
69
+ .pybuilder/
70
+ target/
71
+
72
+ # Jupyter Notebook
73
+ .ipynb_checkpoints
74
+
75
+ # IPython
76
+ profile_default/
77
+ ipython_config.py
78
+
79
+ # pyenv
80
+ .python-version
81
+
82
+ # pipenv
83
+ Pipfile.lock
84
+
85
+ # poetry
86
+ poetry.lock
87
+
88
+ # pdm
89
+ .pdm.toml
90
+
91
+ # PEP 582
92
+ __pypackages__/
93
+
94
+ # Celery stuff
95
+ celerybeat-schedule
96
+ celerybeat.pid
97
+
98
+ # SageMath parsed files
99
+ *.sage.py
100
+
101
+ # Environments
102
+ .env
103
+ .venv
104
+ env/
105
+ venv/
106
+ ENV/
107
+ env.bak/
108
+ venv.bak/
109
+
110
+ # Spyder project settings
111
+ .spyderproject
112
+ .spyproject
113
+
114
+ # Rope project settings
115
+ .ropeproject
116
+
117
+ # mkdocs documentation
118
+ /site
119
+
120
+ # mypy
121
+ .mypy_cache/
122
+ .dmypy.json
123
+ dmypy.json
124
+
125
+ # Pyre type checker
126
+ .pyre/
127
+
128
+ # pytype static type analyzer
129
+ .pytype/
130
+
131
+ # Cython debug symbols
132
+ cython_debug/
133
+
134
+ # PyCharm
135
+ .idea/
136
+
137
+ # VS Code
138
+ .vscode/
139
+
140
+ # Node.js (React frontend)
141
+ node_modules/
142
+ npm-debug.log*
143
+ yarn-debug.log*
144
+ yarn-error.log*
145
+ lerna-debug.log*
146
+
147
+ # Runtime data
148
+ pids
149
+ *.pid
150
+ *.seed
151
+ *.pid.lock
152
+
153
+ # Coverage directory used by tools like istanbul
154
+ coverage/
155
+ *.lcov
156
+
157
+ # nyc test coverage
158
+ .nyc_output
159
+
160
+ # Grunt intermediate storage
161
+ .grunt
162
+
163
+ # Bower dependency directory
164
+ bower_components
165
+
166
+ # node-waf configuration
167
+ .lock-wscript
168
+
169
+ # Compiled binary addons
170
+ build/Release
171
+
172
+ # Dependency directories
173
+ jspm_packages/
174
+
175
+ # TypeScript v1 declaration files
176
+ typings/
177
+
178
+ # TypeScript cache
179
+ *.tsbuildinfo
180
+
181
+ # Optional npm cache directory
182
+ .npm
183
+
184
+ # Optional eslint cache
185
+ .eslintcache
186
+
187
+ # Microbundle cache
188
+ .rpt2_cache/
189
+ .rts2_cache_cjs/
190
+ .rts2_cache_es/
191
+ .rts2_cache_umd/
192
+
193
+ # Optional REPL history
194
+ .node_repl_history
195
+
196
+ # Output of 'npm pack'
197
+ *.tgz
198
+
199
+ # Yarn Integrity file
200
+ .yarn-integrity
201
+
202
+ # dotenv environment variables file
203
+ .env
204
+ .env.test
205
+ .env.production
206
+ .env.local
207
+ .env.development.local
208
+ .env.test.local
209
+ .env.production.local
210
+
211
+ # parcel-bundler cache
212
+ .cache
213
+ .parcel-cache
214
+
215
+ # Next.js build output
216
+ .next
217
+
218
+ # Nuxt.js build / generate output
219
+ .nuxt
220
+ dist
221
+
222
+ # Gatsby files
223
+ .cache/
224
+ public
225
+
226
+ # Storybook build outputs
227
+ .out
228
+ .storybook-out
229
+
230
+ # Temporary folders
231
+ tmp/
232
+ temp/
233
+
234
+ # Logs
235
+ logs
236
+ *.log
237
+
238
+ # OS generated files
239
+ .DS_Store
240
+ .DS_Store?
241
+ ._*
242
+ .Spotlight-V100
243
+ .Trashes
244
+ ehthumbs.db
245
+ Thumbs.db
246
+
247
+ # Project specific
248
+ # Database files
249
+ *.db
250
+ *.sqlite
251
+ *.sqlite3
252
+
253
+ # Model files and indexes
254
+ *.pkl
255
+ *.pickle
256
+ *.h5
257
+ *.hdf5
258
+ *.model
259
+ *.bin
260
+
261
+ # Vector database
262
+ chroma_db/
263
+
264
+ # Session files
265
+ sessions/
266
+
267
+ # Output files
268
+ output*.json
269
+ *.output
270
+
271
+ # Large data files
272
+ chunks/
273
+ raw_docs/
274
+ converted/
275
+ incoming/
276
+
277
+ # Configuration files with sensitive data
278
+ config.yaml
279
+ config.yml
280
+ *.config.yaml
281
+ *.config.yml
282
+
283
+ # API keys and secrets
284
+ secrets.json
285
+ keys.json
286
+ credentials.json
287
+
288
+ # Backup files
289
+ *.bak
290
+ *.backup
291
+ *.old
292
+
293
+ # Temporary files
294
+ *.tmp
295
+ *.temp