CoolFace
Apppublic

ResembleAI/Dramabox

sourceHugging Faceotherupdated 4mo agoView on Hugging Face
129likes
inference.sh14 linesDownload Raw Back to scripts
1#!/bin/bash2# IC-LoRA Voice Cloning Inference3# Usage: bash scripts/inference.sh --voice ref.wav --prompt "A woman speaks..." --output out.wav --lora path/to/lora.safetensors4 5SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)"6 7python "$SCRIPT_DIR/src/inference.py" \8  --checkpoint ltx-2.3-22b-dev-audio-only.safetensors \9  --full-checkpoint ltx-2.3-22b-dev.safetensors \10  --cfg-scale 2.5 --stg-scale 1.5 --rescale-scale 0 --modality-scale 1 \11  --duration-multiplier 1.1 \12  --seed 42 \13  "$@"14