Views
No views yet
neuphonic/neutts-air,
adding natural Hebrew text-to-speech with instant voice cloning.neuphonic/neutts-air (Apache-2.0)he)flowtyone/neutts-air-he-lora on GitHubthewh1teagle/phonikud
grapheme-to-phoneme (diacritization) model and neuphonic/neucodec.1import soundfile as sf
2from peft import PeftModel
3from transformers import AutoModelForCausalLM
4
5# Minimal sketch — see the GitHub inference example for the full pipeline
6# (phonemization with phonikud + audio codec with neucodec).
7backbone = AutoModelForCausalLM.from_pretrained("neuphonic/neutts-air")
8model = PeftModel.from_pretrained(backbone, "flowty1/neutts-air-he")1from lib.neutts import NeuTTSAir
2
3tts = NeuTTSAir(
4 backbone_path="neuphonic/neutts-air",
5 lora_path="flowty1/neutts-air-he",
6 codec_path="neuphonic/neucodec",
7 codec_encoder_path="facebook/w2v-bert-2.0",
8 g2p_model_path="thewh1teagle/phonikud",
9 device="auto",
10)neuphonic/neutts-air.