CoolFace
Modelpublic

TigreGotico/voiceclonnx-rvc

sourceHugging Facemitupdated 4mo agoView on Hugging Face
0likes17downloads
Model Card

vconnx · RVC base models (pure ONNX)

Shared base components for RVC (MIT) inference in the vconnx voice-conversion library: ContentVec-768 content encoder + RMVPE pitch estimator. RVC is any-to-one — the target speaker lives in a separate per-voice net_g model (thousands of community-trained voices exist on HF); these two base models are voice-independent.

filerolesize
contentvec_768l12.onnxcontent encoder (fp32)360 MB
contentvec_768l12_q8.onnxcontent encoder (int8)91 MB
rmvpe.onnxpitch estimator (fp32)345 MB
rmvpe_q8.onnxpitch estimator (int8)94 MB

ContentVec export parity vs torch: max_abs 8.5e-06. Provenance in PROVENANCE.md.

Usage

python
from vconnx import VoiceCloner
# reference_voice = an RVC voice MODEL (.onnx path or HF id), not audio
out = VoiceCloner(engine="rvc").clone_voice("source.wav", "owner/repo::voice.onnx")