Spaces:
Paused
Paused
File size: 15,764 Bytes
68f10e1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 | """Reusable render core for Vāgdhenu — the gold per-hemistich pipeline as a callable.
This is a faithful extraction of render.py's render_clip(): the helper functions are copied
verbatim and the model-load + per-piece synthesis live in a `Renderer` class whose `render_one()`
RETURNS audio (sr, np.float32) instead of writing a wav. render.py remains the frozen batch path;
this module exists so the Gradio demo (and any interactive caller) can load the models once and
render single inputs without argparse / file I/O.
Usage:
r = Renderer(voice_path, voc_path, bank_path, device="cuda")
sr, audio = r.render_one("तस्मै नमः ...", meter="anuṣṭubh")
"""
import os, sys, glob, json, re, numpy as np, torch
HERE = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, HERE)
import prep_text as PT # noqa: E402
SR = 24000
# Unknown/unmatched vṛtta -> render against this meter's reference rather than erroring. An
# unrecognized verse is almost always a real metered vṛtta we failed to classify, so a flowing
# 14-syllable triṣṭubh-class reference generalizes better than crashing (or the flat gadya prose
# template). Resolves via the wav-stem alias in the bank LUT.
FALLBACK_METER = "vasantatilaka"
# ── helpers copied VERBATIM from render.py ───────────────────────────────────────────────
def n_aksharas(s):
n = 0; L = len(s)
for i, c in enumerate(s):
o = ord(c)
indep = (0x0905 <= o <= 0x0914) or (0x0C85 <= o <= 0x0C94)
cons = (0x0915 <= o <= 0x0939) or (0x0C95 <= o <= 0x0CB9)
if indep:
n += 1
elif cons:
nxt = s[i+1] if i+1 < L else ""
if nxt not in ("्", "್"):
n += 1
return n
def _aksharas(s):
out=[]; cur=""
for i,c in enumerate(s):
o=ord(c); base=(0x0C85<=o<=0x0C94) or (0x0905<=o<=0x0914) or (0x0C95<=o<=0x0CB9) or (0x0915<=o<=0x0939)
prev=s[i-1] if i>0 else ""
if base and prev not in ("್","्"):
if cur: out.append(cur)
cur=c
else: cur+=c
if cur: out.append(cur)
return out
def _rep_depths(aks):
n=len(aks); mono=1; i=0
while i<n:
j=i+1
while j<n and aks[j]==aks[i]: j+=1
mono=max(mono,j-i); i=j if j>i+1 else i+1
di=1; i=0
while i+1<n:
if aks[i]!=aks[i+1]:
cnt=1; j=i+2
while j+1<n and aks[j]==aks[i] and aks[j+1]==aks[i+1]: cnt+=1; j+=2
di=max(di,cnt); i=j if cnt>1 else i+1
else: i+=1
return mono, di
_VMATRA = set("ಾಿೀುೂೃೄೆೇೈೊೋೌ")
_VECHO_SHORT = {"ಿ": "ಹಿ", "ು": "ಹು", "ೃ": "ಹೃ"}
_VLONG = set("ಾೀೂೄೆೇೈೊೋೌ")
def _danda_fix(s):
s = s.rstrip()
if not s: return s
if s.endswith("ಃ"):
core = s[:-1]; pv = core[-1] if core else ""
if pv in _VECHO_SHORT: s = core + _VECHO_SHORT[pv]
elif pv in _VLONG: pass
else: s = core + "ಹ"
elif s.endswith("ಂ"):
s = s[:-1] + "ಮ್"
return s
_AN_KA=set("ಕಖಗಘಙ"); _AN_CA=set("ಚಛಜಝಞ"); _AN_TTA=set("ಟಠಡಢಣ"); _AN_TA=set("ತಥದಧನ")
def _anusvara_m(s):
res=[]; n=len(s)
for i,c in enumerate(s):
if c=="ಂ":
j=i+1
while j<n and s[j]==" ": j+=1
nxt=s[j] if j<n else ""
if not nxt: res.append("ಂ")
elif nxt in _AN_KA: res.append("ಙ್")
elif nxt in _AN_CA: res.append("ಞ್")
elif nxt in _AN_TTA: res.append("ಣ್")
elif nxt in _AN_TA: res.append("ನ್")
else: res.append("ಮ್")
else: res.append(c)
return "".join(res)
_SATVA = {"ಚ": "ಶ್", "ಛ": "ಶ್", "ಟ": "ಷ್", "ಠ": "ಷ್", "ತ": "ಸ್", "ಥ": "ಸ್"}
def _satva(s):
out = []; n = len(s); i = 0
while i < n:
c = s[i]
if c == "ಃ":
j = i + 1
while j < n and s[j] == " ": j += 1
nxt = s[j] if j < n else ""
if nxt in _SATVA:
out.append(_SATVA[nxt]); i = j; continue
out.append(c); i += 1
return "".join(out)
def _hna_metathesis(s):
return s.replace("ಹ್ಣ", "ಣ್ಹ").replace("ಹ್ನ", "ನ್ಹ")
def _vocalic_l(s):
return s.replace("ೢ", "್ಲೃ").replace("ೣ", "್ಲೄ").replace("ಌ", "ಲೃ").replace("ೡ", "ಲೄ")
def gate(au, voice=0.08, sil=0.012, fin=0.015, fout=0.040, lead=0.03, keep=0.06, fade=True, fric=False, halant=False):
win = int(0.02*SR); r = [float(np.sqrt((au[i:i+win]**2).mean())) for i in range(0, len(au)-win, win)]; n = len(r)
if n == 0: return au
if fric:
FR = 0.006
s = next((i for i in range(n-1) if r[i] > FR and r[i+1] > FR), int(np.argmax(r)))
while s > 0 and r[s-1] > FR: s -= 1
_vdef = s
else:
vs = next((i for i in range(n-1) if r[i] > voice and r[i+1] > sil), int(np.argmax(r))); s = vs
while s > 0 and r[s-1] > sil: s -= 1
_vdef = vs
ve_thr = 0.012 if halant else 0.035
ve = max((i for i in range(n) if r[i] > ve_thr), default=_vdef)
keep_s = 0.12 if halant else keep
start = max(0, s*win - int(lead*SR))
end = min(len(au), ve*win + int(keep_s*SR)); out = au[start:end].copy()
if fade:
fi = (0 if fric else int(fin*SR)); fo = int((0.018 if halant else fout)*SR)
if fi and len(out) > fi: out[:fi] *= np.linspace(0, 1, fi)
if fo and len(out) > fo: out[-fo:] *= (np.cos(np.linspace(0, np.pi, fo))*0.5 + 0.5)
return out
_VIRAMA = "्್"
def _ends_halant(txt):
t = txt.rstrip(" ।॥|.,;:!?")
return len(t) > 0 and t[-1] in _VIRAMA
_DANDAS = "।॥|"
def split_padas(text):
"""Split a free-text shloka into hemistich/pada pieces: newlines first, then dandas. Empty drop."""
pieces = []
for line in text.replace("॥", "।").replace("|", "।").splitlines():
for seg in line.split("।"):
seg = seg.strip()
if seg: pieces.append(seg)
return pieces or ([text.strip()] if text.strip() else [])
def detect_meter_key(text):
"""Best-effort chandas (meter) detection from raw text in ANY Indic script, so a non-technical
user need not name the meter. Returns the detected meter name (e.g. 'anushtubh', 'vasantatilaka')
which the bank LUT resolves via its wav-stem aliases; 'anushtubh_half' is normalized to
'anushtubh'. Returns "" when the verse is partial/unrecognized — the caller then picks the
graceful FALLBACK_METER itself and can tell the user it was a guess. Pure text — no GPU. Needs a
COMPLETE verse (4 pādas, or 32 syllables for anuṣṭubh) for a confident vṛtta match."""
try:
from indic_transliteration import sanscript
from tts_syllabify import syllabify
from tts_weight import tag_weights
from tts_meter import detect_meter
except Exception:
return ""
try:
d = PT.to_deva(text).replace("॥", "|").replace("।", "|").replace("\n", " | ")
d = "".join(c for c in d if not (c.isdigit() or ("०" <= c <= "९")) and c not in "\"'“”‘’()")
slp = re.sub(r"\s+", " ", sanscript.transliterate(d, sanscript.DEVANAGARI, sanscript.SLP1)).strip()
syls = syllabify(slp)
tag_weights(syls)
name = detect_meter(syls).get("name", "unknown")
except Exception:
return ""
if name in ("anushtubh_half", "anushtubh"):
return "anushtubh"
if name in ("unknown", None, ""):
return ""
return name
class Renderer:
"""Loads DiT + vocos + BigVGAN + the reference bank ONCE; render_one() synthesizes a single input."""
def __init__(self, voice_path, voc_path, bank_path, device="cuda", vocab_file=None,
speed=0.90, nfe=64, cfg=3.0, gap=0.55, gap_halant=0.20):
import bigvgan
from f5_tts.infer.utils_infer import load_model, load_vocoder, preprocess_ref_audio_text
from f5_tts.model import DiT
self.device = device
self.speed = speed; self.nfe = nfe; self.cfg = cfg
self.gap = gap; self.gap_halant = gap_halant
self._preprocess = preprocess_ref_audio_text
import torchaudio as ta
self._ta = ta
CFG = dict(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4)
# vocab.txt (IndicF5's MIT tokenizer vocab) ships beside the bank; fall back to the IndicF5
# cache for legacy local setups. Never index an empty glob.
_cands = [vocab_file, os.path.join(os.path.dirname(bank_path), "vocab.txt")] \
+ glob.glob(os.path.expanduser(
"~/.cache/huggingface/hub/models--ai4bharat--IndicF5/snapshots/*/checkpoints/vocab.txt"))
vocab = next((v for v in _cands if v and os.path.exists(v)), None)
if vocab is None:
raise FileNotFoundError("vocab.txt not found (pass vocab_file= or ship it beside bank.json)")
self.cfm = load_model(DiT, CFG, mel_spec_type="vocos", vocab_file=vocab, device=device)
ck = torch.load(voice_path, map_location="cpu", weights_only=True)
ema = {k.replace("ema_model.", ""): v for k, v in ck["ema_model_state_dict"].items()
if k not in ("initted", "step")}
self.cfm.load_state_dict(ema, strict=False); self.cfm.eval()
real_voc = load_vocoder("vocos")
class Cap:
def __init__(s, r): s.r = r; s.last = None
def decode(s, m): s.last = m.detach().cpu().numpy(); return s.r.decode(m)
self.cap = Cap(real_voc)
g = bigvgan.BigVGAN.from_pretrained("nvidia/bigvgan_v2_24khz_100band_256x", use_cuda_kernel=False)
bsd = torch.load(voc_path, map_location="cpu"); bsd = bsd.get("model", bsd)
g.load_state_dict(bsd); g.remove_weight_norm(); g = g.to(device).eval()
for p in g.parameters(): p.requires_grad = False
self.g = g
self._bank = json.load(open(bank_path, encoding="utf-8"))
self._bdir = os.path.dirname(bank_path)
self._lut = {}
for _k, _v in self._bank.items():
if _k.startswith("_") or not isinstance(_v, dict) or "wav" not in _v: continue
self._lut[_k.lower()] = _v
self._lut[_v["wav"].replace(".wav", "").lower()] = _v
self._primes = self._bank.get("repeat_primes", {})
self._refcache = {}
def meters(self):
return [k for k, v in self._bank.items()
if not k.startswith("_") and isinstance(v, dict) and "wav" in v]
def _bvgan(self, mel):
m = torch.from_numpy(mel).to(self.device)
with torch.no_grad():
if m.dim() == 3 and m.shape[1] != 100 and m.shape[2] == 100: m = m.transpose(1, 2)
return self.g(m).squeeze().cpu().numpy().astype(np.float32)
def _get_ref(self, meter):
key = meter.lower().replace(".wav", "")
if key in self._refcache: return self._refcache[key]
if key not in self._lut:
if FALLBACK_METER not in self._lut:
raise ValueError(f"meter '{meter}' not in bank (and fallback '{FALLBACK_METER}' missing)")
print(f"[meter] unknown vṛtta '{meter}' -> fallback '{FALLBACK_METER}'", flush=True)
key = FALLBACK_METER
if key in self._refcache:
self._refcache[meter.lower().replace('.wav', '')] = self._refcache[key]
return self._refcache[key]
e = self._lut[key]
ref_wav = os.path.join(self._bdir, e["wav"]); ref_text = e["ref_text"]
sps = float(e.get("sec_per_syll", 0.26))
ref_audio, ref_t = self._preprocess(ref_wav, ref_text, clip_short=True)
ra, sr = self._ta.load(ref_audio); ref_len = ra.shape[-1] / sr
val = (ref_audio, ref_t, sps, ref_len)
self._refcache[key] = val
return val
def _stitch(self, segs, GAPS, fric=False, halant=False):
if len(segs) == 1: return gate(segs[0], fric=fric, halant=halant)
b = []; last = len(segs) - 1
for i, s in enumerate(segs):
b += [gate(s, fric=(fric and i == 0), halant=(halant and i == last)),
GAPS[i] if i < len(GAPS) else GAPS[-1]]
return np.concatenate(b[:-1])
def render_one(self, text, meter, seed=60, no_sandhi=True, speed=None, sps=None):
"""Synthesize one shloka. text = free Devanagari (split into padas on newline/danda).
Returns (sr, audio float32). Pipeline is identical to render.py's render_clip()."""
padas = text if isinstance(text, list) else split_padas(text)
if not padas: raise ValueError("empty text")
ref_audio, ref_t, ref_sps, ref_len = self._get_ref(meter)
if sps is not None: ref_sps = float(sps)
spd = float(speed) if speed is not None else self.speed
def _basetext(p):
return PT.model_text_sandhi(p, echo_final=False) if not no_sandhi else PT.model_text(p)
PIECES = [_basetext(p) for p in padas]
if not no_sandhi:
PIECES = [_satva(x) for x in PIECES]
PIECES = [_danda_fix(_anusvara_m(x)) for x in PIECES]
PIECES = [_hna_metathesis(x) for x in PIECES]
PIECES = [_vocalic_l(x) for x in PIECES]
_ra, _rt = ref_audio, ref_t
_mono = max((_rep_depths(_aksharas(x))[0] for x in PIECES), default=1)
_di = max((_rep_depths(_aksharas(x))[1] for x in PIECES), default=1)
_pick = None
if _di >= 3:
_pick = next((k for k in ["prime_jaya", "prime_chata"]
if k in self._primes and self._primes[k].get("di_max", 0) >= _di), None) \
or next((k for k, v in self._primes.items()
if isinstance(v, dict) and v.get("di_max", 0) >= _di), None)
if _pick is None and _mono >= 2 and "prime_mono" in self._primes \
and self._primes["prime_mono"].get("mono_max", 0) >= _mono:
_pick = "prime_mono"
if _pick:
_pv = self._primes[_pick]
_ra, _rt = self._preprocess(os.path.join(self._bdir, _pv["wav"]), _pv["ref_text"], clip_short=True)
_prb, _psr = self._ta.load(_ra); ref_len = _prb.shape[-1] / _psr
NSYLL = [n_aksharas(x) for x in PIECES]
GAPS = [np.zeros(int(self.gap*SR) + (int(self.gap_halant*SR) if _ends_halant(_p) else 0),
dtype=np.float32) for _p in PIECES]
from f5_tts.infer.utils_infer import infer_process
bseg = []
for i, p in enumerate(PIECES):
au = None
for att in range(4):
torch.manual_seed(seed + att)
_fixd = (ref_len + NSYLL[i]*ref_sps) if (ref_sps > 0 and NSYLL) else None
w, sr, _ = infer_process(_ra, _rt, p, self.cfm, self.cap, mel_spec_type="vocos",
speed=spd, nfe_step=self.nfe, cfg_strength=self.cfg,
device=self.device, fix_duration=_fixd)
w = np.array(w, dtype=np.float32)
if np.abs(w).max() > 1.5: w = w/32768.0
if float(np.sqrt((w**2).mean())) > 0.04: au = w; break
if au is None: au = w
y = self._bvgan(self.cap.last); mx = np.abs(y).max(); y = y/mx*0.97 if mx > 1 else y
bseg.append(y)
_slp = PT.align_slp1(padas[0])
fric = bool(_slp) and _slp[0] in ("S", "z", "s", "h")
halant = _ends_halant(PIECES[-1])
final = self._stitch(bseg, GAPS, fric=fric, halant=halant)
return SR, final
|