58 lines
464 B
Plaintext
58 lines
464 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.docker.md
|