-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.gitignore
More file actions
518 lines (480 loc) · 7.98 KB
/
.gitignore
File metadata and controls
518 lines (480 loc) · 7.98 KB
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
*.txt
################################################################################
# Universal Python / Data / ML / Web / Frontend / Docs .gitignore (Extremely Comprehensive)
# Start by keeping this whole file; prune later once your project stabilizes.
# Use .env.example or config.example.* for tracked templates.
################################################################################
########################################
# User-requested explicit patterns
########################################
*.zip
*.tar
*.tar.gz
*.tgz
*.pth
*.ckpt
*.mp4
*.bin
*.pdf
########################################
# Python bytecode / interpreter artefacts
########################################
__pycache__/
*.py[cod]
*$py.class
########################################
# Compiled / extension modules
########################################
*.so
*.pyd
*.dll
*.dylib
*.a
*.o
*.obj
*.out
*.exe
########################################
# Build / packaging
########################################
build/
dist/
sdist/
wheels/
wheelhouse/
*.egg-info/
*.egg
.eggs/
pip-wheel-metadata/
MANIFEST
*.spec # PyInstaller spec files (regenerate as needed)
*.manifest
########################################
# Virtual environments / dependency managers
########################################
.venv/
venv/
env/
ENV/
.conda/
condaenv.*
*.conda
# Pipenv / Poetry / PDM / Hatch / Rye / UV
Pipfile.lock
poetry.lock
.poetry/
.pdm-build/
.pdm-python
pdm.lock
.hatch/
.hatch_build/
.rye/
.uv/
# pyenv / direnv
.python-version
.envrc
# PEP 582
__pypackages__/
########################################
# Environment / secrets (track only templates)
########################################
.env
.env.*
*.env
*.secret
secrets/
secret/
*.key
*.pem
*.crt
*.cer
*.der
*.p12
*.pfx
*.csr
*.enc
########################################
# Logs / runtime / temp
########################################
*.log
log/
logs/
eval_log/
*.pid
*.pid.lock
*.seed
*.tmp
*.temp
*.bak
*.orig
*.swp
*.swo
*.lock
*.DS_Store?
########################################
# Testing / coverage / lint / type-check
########################################
.pytest_cache/
.cache/
.coverage
.coverage.*
coverage.xml
htmlcov/
.tox/
.nox/
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
.pytype/
.pyright/
ruff_cache/
.ruff_cache/
.pylint.d/
.bandit
bandit.json
.hypothesis/
.prof
*.prof
*.lprof
*.cprof
*.profraw
########################################
# Jupyter / IPython
########################################
.ipynb_checkpoints/
*.nbconvert.ipynb
.ipython/
.jupyter/
.python_history
.history
########################################
# Data science / ML / training artefacts
########################################
# Common working dirs
data/
datasets/
raw_data/
processed_data/
cache/
cache_dir/
cached/
artifacts/
artifacts_tmp/
workspace/
workdir/
outputs/
output/
output_*/
results/
runs/
experiments/
tensorboard/
tb_logs/
lightning_logs/
wandb/
mlruns/
ray_results/
comet_ml/
neptune/
optuna/
checkpoints/
# Common data file formats (uncomment any you DO want to track)
*.csv
*.tsv
*.parquet
*.feather
*.arrow
*.orc
*.h5
*.hdf5
*.npz
*.npy
*.pkl
*.pickle
*.joblib
*.mat
*.rds
*.jsonl
*.msgpack
# Model / weight formats
*.pt
*.pth
*.ckpt
*.weights
*.safetensors
*.onnx
*.tflite
*.pb
*.mlmodel
*.bin
*.model
# Tokenizer & vocab
tokenizer.model
sentencepiece.bpe.model
merges.txt
vocab.json
# Hugging Face / Transformers caches
.huggingface/
huggingface/
huggingface_cache/
hf_cache/
transformers_cache/
.cache/huggingface/
cache/huggingface/
# Diffusion / SD style models
diffusers_cache/
sd_models/
loras/
vae/
embeddings/
########################################
# Media / large asset files (adjust as needed)
########################################
media/
assets/
static/
staticfiles/
public/
site_media/
uploads/
*.png
*.jpg
*.jpeg
*.gif
*.svg
*.bmp
*.webp
*.tiff
*.ico
*.mp4
*.mov
*.avi
*.mkv
*.mpg
*.mpeg
*.flv
*.wav
*.mp3
*.ogg
########################################
# Documentation build outputs
########################################
docs/_build/
_build/
build_docs/
site/
mkdocs/site/
mkdocs_build/
.book/
.docusaurus/
.next/
.out/
.vitepress/dist/
.storybook/
storybook-static/
.storybook-static/
coverage-docs/
########################################
# Web frameworks / backends
########################################
*.pot
local_settings.py
db.sqlite3
db.sqlite3-journal
instance/
*.db
*.sqlite
*.sqlite3
########################################
# Frontend / Node ecosystem (if present)
########################################
node_modules/
bower_components/
*.tsbuildinfo
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.pnpm-store/
dist-ssr/
.eslintcache
.stylelintcache
########################################
# Archives / compressed (beyond those explicitly listed)
########################################
*.tar
*.tar.gz
*.tgz
*.gz
*.bz2
*.xz
*.7z
*.rar
########################################
# Containers / Docker
########################################
Dockerfile.*.tmp
.docker/
.docker_tmp/
docker-compose.override.yml
########################################
# Sphinx / LaTeX / doc tool artefacts
########################################
*.aux
*.toc
*.idx
*.lof
*.lot
*.log
*.fls
*.out
*.fdb_latexmk
*.synctex.gz
*.bbl
*.blg
*.nav
*.snm
*.vrb
########################################
# Generated / codegen / API clients
########################################
generated/
gen/
autogen/
.codegen/
.openapi/
openapi_generated/
swagger_generated/
.huggingface_cache/
########################################
# Distributed / cluster training logs
########################################
slurm-*.out
*.event*
events.out.tfevents.*
distributed_logs/
cluster_logs/
parallel_logs/
########################################
# Patches / backups
########################################
*.bak
*.backup
*.old
*.orig
*.rej
*.diff
patches/
*.sync-conflict-*
########################################
# OS / filesystem noise
########################################
.DS_Store
.AppleDouble
.LSOverride
Icon?
._*
.Spotlight-V100
.Trashes
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
.fseventsd
.turd
.nfs*
.metadata/
########################################
# Editors / IDE
########################################
# VS Code
.vscode/
.vscode-test/
# JetBrains
.idea/
*.iml
*.ipr
*.iws
# Sublime
*.sublime-project
*.sublime-workspace
# Eclipse / NetBeans
.project
.classpath
.cproject
.settings/
.nb-gradle/
# Vim
*.swp
*.swo
.session
# Emacs
*~
\#*\#
.\#*
.tramp
# Misc
.lldb
*.tmproj
*.tmproject
*.code-workspace
########################################
# Merge / conflict artefacts
########################################
*.BACKUP.*
*.BASE.*
*.LOCAL.*
*.REMOTE.*
*.orig
*.rej
########################################
# Misc junk / transient
########################################
*.tmp
*.temp
tmp/
temp/
~$*
*.part
*.crdownload
*.download
*.partial
*.cache
.cache/
cache/
########################################
# Helpful reminders (NOT enforced)
# Keep these tracked (do NOT ignore):
# requirements.txt / requirements/*.txt
# pyproject.toml / setup.cfg / setup.py
# README.md / CHANGELOG.md / LICENSE
# .env.example / config.example.yaml
# docs/ (except build outputs)
########################################
################################################################################
# To keep an otherwise ignored file or empty directory:
# !path/to/file.ext
# Place a .gitkeep (or .keep) inside the directory and negate it:
# !data/.gitkeep
################################################################################
# Examples (uncomment if you decide to preserve folder structure):
# !data/.gitkeep
# !models/.gitkeep
# !outputs/.gitkeep
# !checkpoints/.gitkeep
list_*
tmp
*.jsonmodel_factory/vit_aim_v2_packing_hf_old.py
ckpts/
ckpts/**
ckpts
.gitginore
_codeql*
# ===========================================
# Allow example training data demo files
# ===========================================
!llava_next/examples/training_data_demo/output/
!llava_next/examples/training_data_demo/output/**
!llava_next/examples/training_data_demo/videos/
!llava_next/examples/training_data_demo/videos/*.mp4