chore: add .gitignore
This commit is contained in:
89
.gitignore
vendored
89
.gitignore
vendored
@@ -1,13 +1,76 @@
|
||||
weights/icon_caption_blip2
|
||||
weights/icon_caption_florence
|
||||
weights/icon_detect/
|
||||
weights/icon_detect_v1_5/
|
||||
weights/icon_detect_v1_5_2/
|
||||
.gradio
|
||||
__pycache__/
|
||||
debug.ipynb
|
||||
util/__pycache__/
|
||||
index.html?linkid=2289031
|
||||
wget-log
|
||||
weights/icon_caption_florence_v2/
|
||||
omnitool/gradio/uploads/
|
||||
# === Python ===
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.pyo
|
||||
*.egg-info/
|
||||
*.egg
|
||||
dist/
|
||||
build/
|
||||
*.whl
|
||||
|
||||
# === Virtual environments ===
|
||||
.venv/
|
||||
venv/
|
||||
venv_*/
|
||||
env/
|
||||
|
||||
# === ML Models & Data ===
|
||||
*.pt
|
||||
*.pth
|
||||
*.onnx
|
||||
*.bin
|
||||
*.safetensors
|
||||
*.h5
|
||||
*.hdf5
|
||||
*.pkl
|
||||
*.pickle
|
||||
*.npy
|
||||
*.npz
|
||||
*.faiss
|
||||
models/
|
||||
*.tar.gz
|
||||
*.zip
|
||||
|
||||
# === Documents & Media ===
|
||||
*.pdf
|
||||
*.docx
|
||||
*.xlsx
|
||||
*.csv
|
||||
*.png
|
||||
*.jpg
|
||||
*.jpeg
|
||||
*.gif
|
||||
*.mp3
|
||||
*.wav
|
||||
*.mp4
|
||||
|
||||
# === IDE ===
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# === OS ===
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
.~lock.*
|
||||
|
||||
# === Secrets ===
|
||||
.env
|
||||
*.env
|
||||
credentials.json
|
||||
token.pickle
|
||||
|
||||
# === Logs & Cache ===
|
||||
*.log
|
||||
logs/
|
||||
.pytest_cache/
|
||||
.mypy_cache/
|
||||
.ruff_cache/
|
||||
htmlcov/
|
||||
.coverage
|
||||
|
||||
# === Backups ===
|
||||
*_backup_*
|
||||
backups/
|
||||
|
||||
Reference in New Issue
Block a user