Spaces:
Sleeping
Sleeping
| # Environment Configuration for Speech Transcription App | |
| # Copy this file to .env and modify as needed | |
| # CUDA Configuration | |
| # Set to 'true' to use CUDA/GPU acceleration for all models | |
| # Set to 'false' to use CPU for all models | |
| # Default: false (CPU) | |
| USE_CUDA=false | |
| # Example configurations: | |
| # USE_CUDA=true # Use GPU acceleration (requires CUDA-compatible GPU) | |
| # USE_CUDA=false # Use CPU (works on all systems) | |
| # Note: When USE_CUDA=true, the following models will use GPU: | |
| # - Whisper (speech-to-text) | |
| # - RoBERTa (question classification) | |
| # - Sentence Boundary Detection | |
| # | |
| # GPU acceleration provides: | |
| # β Faster processing (2-10x speedup) | |
| # β Better real-time performance | |
| # β Higher memory usage | |
| # β Requires CUDA-compatible GPU | |
| # | |
| # CPU processing provides: | |
| # β Works on all systems | |
| # β Lower memory usage | |
| # β More stable | |
| # β Slower processing | |