Spaces:
Sleeping
Sleeping
| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *.pyo | |
| *.pyd | |
| .Python | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| .eggs/ | |
| # Environment | |
| .env | |
| venv/ | |
| .venv/ | |
| env/ | |
| # Model weights (large binary files) | |
| *.pt | |
| *.pth | |
| *.bin | |
| *.safetensors | |
| *.ckpt | |
| # ONNX / TFLite exports | |
| *.onnx | |
| *.tflite | |
| models/onnx/ | |
| models/tflite/ | |
| # HuggingFace cache | |
| data_cache/ | |
| .cache/ | |
| # Audio noise samples (user must provide their own) | |
| noise_samples/*.wav | |
| noise_samples/*.mp3 | |
| noise_samples/*.ogg | |
| # Trained adapters (tracked separately or via DVC) | |
| adapters/bambara/ | |
| adapters/fula/ | |
| # IDE | |
| .vscode/settings.json | |
| .idea/ | |
| *.code-workspace | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Logs | |
| *.log | |
| logs/ | |
| # Local feedback data (audio + corrections live in HF Dataset repo, not git) | |
| feedback/ | |
| # Local model downloads | |
| models/ | |
| # Pytest | |
| .pytest_cache/ | |
| htmlcov/ | |
| .coverage | |
| # Kaggle credentials (NEVER commit these) | |
| kaggle.json | |
| .kaggle/ | |
| # Kaggle kernel outputs (pulled via `kaggle kernels output`) | |
| runs/ | |
| notebooks/**/runs/ | |