Spaces:
Sleeping
Sleeping
File size: 628 Bytes
cc17cd1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Render Blueprint - Voice Cloner (Docker)
# Deploy: connect this repo in Render and use this blueprint, or create a Web Service and set Runtime = Docker.
services:
- type: web
name: voice-cloner
runtime: docker
plan: free # use 'starter' or higher for more memory (recommended for TTS)
envVars:
- key: HF_HOME
value: /app/.hf_cache
- key: HUGGINGFACE_HUB_CACHE
value: /app/.hf_cache/hub
- key: HF_HUB_DISABLE_SYMLINKS_WARNING
value: "1"
- key: PYTORCH_CUDA_ALLOC_CONF
value: expandable_segments:True
- key: CUDA_VISIBLE_DEVICES
value: ""
|