Spaces:
Sleeping
Sleeping
| # Version control | |
| .git | |
| .gitignore | |
| .github | |
| # 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 | |
| # Environment | |
| .env | |
| .venv | |
| env/ | |
| venv/ | |
| ENV/ | |
| # Docker related | |
| Dockerfile* | |
| docker-compose* | |
| .docker | |
| .dockerignore | |
| # Documentation | |
| README.md | |
| CHANGELOG.md | |
| LICENSE | |
| docs/ | |
| *.md | |
| examples/ | |
| tests/ | |
| # IDE | |
| .idea/ | |
| .vscode/ | |
| *.swp | |
| *.swo | |
| .DS_Store | |
| # Logs and temp files | |
| logs/ | |
| *.log | |
| log.txt | |
| tmp/ | |
| temp/ | |
| .temp/ | |
| .~* | |
| # Model files - we'll download these in the container | |
| models/ | |
| tokenizers/ | |
| voice_memories/ | |
| voice_samples/ | |
| *.pt | |
| *.pth | |
| *.bin | |
| *.ckpt | |
| # Audio files | |
| *.wav | |
| *.mp3 | |
| *.flac | |
| *.opus | |
| *.aac | |
| # Project specific | |
| .cache/ | |
| .neptune/ | |
| MANIFEST.in | |
| .history/ | |
| .mypy_cache/ | |
| .pytest_cache/ | |
| __pycache__/ | |
| .ipynb_checkpoints/ | |
| # Ignore Hugging Face credentials except specified files | |
| .huggingface/ | |