Spaces:
Sleeping
Sleeping
| # Git | |
| .git | |
| .gitignore | |
| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| # Virtual Environment | |
| venv/ | |
| env/ | |
| ENV/ | |
| .venv/ | |
| # IDE | |
| .idea/ | |
| .vscode/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # Logs and databases | |
| *.log | |
| *.sql | |
| *.sqlite | |
| # Local development | |
| .env | |
| .env.local | |
| # Local data | |
| *.pkl | |
| *.h5 | |
| *.hdf5 | |
| *.pt | |
| *.pth | |
| *.bin | |
| *.safetensors | |
| # Cache and temporary files | |
| .cache/ | |
| .temp/ | |
| tmp/ | |
| # Documentation | |
| _docs/ | |
| _site/ | |
| # Testing | |
| .coverage | |
| htmlcov/ | |
| .pytest_cache/ | |
| # Jupyter Notebook | |
| .ipynb_checkpoints | |
| # OS generated files | |
| .DS_Store | |
| .DS_Store? | |
| ._* | |
| .Spotlight-V100 | |
| .Trashes | |
| ehthumbs.db | |
| Thumbs.db | |
| # Models (they will be downloaded during build) | |
| models/ | |