Spaces:
Runtime error
Runtime error
| # 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/ | |
| # IDE | |
| .idea/ | |
| .vscode/ | |
| *.swp | |
| *.swo | |
| # Logs | |
| *.log | |
| logs/ | |
| log/ | |
| # Local development | |
| .env | |
| .env.local | |
| .env.*.local | |
| # Data | |
| data/ | |
| *.db | |
| *.sqlite3 | |
| # Model files | |
| *.pt | |
| *.pth | |
| *.ckpt | |
| *.bin | |
| *.onnx | |
| # Temporary files | |
| .DS_Store | |
| Thumbs.db | |
| *.tmp | |
| *.bak | |
| *.swp | |
| *~ | |
| # Distribution | |
| dist/ | |
| build/ | |
| *.egg-info/ | |
| # Documentation | |
| docs/_build/ | |
| site/ | |
| # Testing | |
| .coverage | |
| htmlcov/ | |
| .pytest_cache/ | |
| .tox/ | |
| nosetests.xml | |
| coverage.xml | |
| *.cover | |
| .hypothesis/ | |
| # Jupyter Notebook | |
| .ipynb_checkpoints | |
| *.ipynb | |
| # Project specific | |
| outputs/ | |
| results/ | |
| experiments/ | |
| checkpoints/ | |