60 lines
482 B
Plaintext
60 lines
482 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Documentation
|
|
docs/_build/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Cache
|
|
.cache/
|
|
*.log
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
|
|
# Model files (will be mounted from host)
|
|
models/
|
|
*.pth
|
|
*.onnx
|
|
|
|
examples/
|
|
assets/
|
|
docs/
|
|
tests/
|
|
README.md
|
|
README.docker.md
|
|
LICENSE
|