Spaces:
Runtime error
Runtime error
Prepare project for Hugging Face Space deployment - Add app.py with Gradio interface - Update requirements.txt with torch dependencies - Configure LFS for large files (models, data) - Update README with comprehensive documentation
d2173d1 | # 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 | |
| # Jupyter Notebook | |
| .ipynb_checkpoints | |
| # PyCharm | |
| .idea/ | |
| # VS Code | |
| .vscode/ | |
| # Environment variables | |
| .env | |
| .env.local | |
| # Model files (optional - uncomment if models are large) | |
| # *.pth | |
| # *.pt | |
| # *.h5 | |
| # Data files (optional - uncomment if data is large) | |
| # data/raw/*.csv | |
| # data/processed/*.csv | |
| # Logs | |
| *.log | |
| logs/ | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| # Docker | |
| .dockerignore | |