Update readme for the Python Model (#17)
Browse files- Update readme for the Python Model (8e3c41b9388d869cb5efbe4881cbabfa705cafba)
Co-authored-by: NAVANIT DUBEY <[email protected]>
README.md
CHANGED
@@ -46,8 +46,8 @@ import torchaudio
|
|
46 |
from zonos.model import Zonos
|
47 |
from zonos.conditioning import make_cond_dict
|
48 |
|
49 |
-
|
50 |
-
model = Zonos.from_pretrained("Zyphra/Zonos-v0.1-transformer", device="cuda")
|
51 |
|
52 |
wav, sampling_rate = torchaudio.load("assets/exampleaudio.mp3")
|
53 |
speaker = model.make_speaker_embedding(wav, sampling_rate)
|
|
|
46 |
from zonos.model import Zonos
|
47 |
from zonos.conditioning import make_cond_dict
|
48 |
|
49 |
+
model = Zonos.from_pretrained("Zyphra/Zonos-v0.1-hybrid", device="cuda")
|
50 |
+
# model = Zonos.from_pretrained("Zyphra/Zonos-v0.1-transformer", device="cuda")
|
51 |
|
52 |
wav, sampling_rate = torchaudio.load("assets/exampleaudio.mp3")
|
53 |
speaker = model.make_speaker_embedding(wav, sampling_rate)
|