File size: 633 Bytes
bbdd198 | 1 2 3 4 5 6 7 8 9 10 11 12 | @echo off
CALL .venv\Scripts\activate
python demo/gradio_demo.py
REM List of possible arguments
REM --model_path default="./models" "Path to the VibeVoice model directory"
REM --device default="cuda" if torch.cuda.is_available() else "cpu" "Device for inference"
REM --inference_steps default=10 "Number of inference steps for DDPM (not exposed to users)"
REM --share action="store_true" "Share the demo publicly via Gradio"
REM --port default=7860 "Port to run the demo on"
|