47 lines
371 B
Plaintext
47 lines
371 B
Plaintext
|
|
# Python
|
||
|
|
__pycache__/
|
||
|
|
*.py[cod]
|
||
|
|
*$py.class
|
||
|
|
*.so
|
||
|
|
.Python
|
||
|
|
env/
|
||
|
|
venv/
|
||
|
|
ENV/
|
||
|
|
*.egg-info/
|
||
|
|
dist/
|
||
|
|
build/
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.vscode
|
||
|
|
.idea
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
|
||
|
|
# OS
|
||
|
|
.DS_Store
|
||
|
|
Thumbs.db
|
||
|
|
|
||
|
|
# Git
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# CI/CD
|
||
|
|
.github
|
||
|
|
.gitlab-ci.yml
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
*.md
|
||
|
|
README*
|
||
|
|
|
||
|
|
# Scripts
|
||
|
|
*.bat
|
||
|
|
*.sh
|
||
|
|
|
||
|
|
# Large model files (will be mounted as volume)
|
||
|
|
models/*.pt
|
||
|
|
models/*.onnx
|
||
|
|
models/*.pth
|
||
|
|
|
||
|
|
# Logs
|
||
|
|
*.log
|
||
|
|
logs/
|