Skip to content

Releases: revsic/tf-glow-tts

Glow-TTS POC

07 May 08:41
Compare
Choose a tag to compare

Proof of concept. Tag v1 is compatible with given checkpoint of commit hash fa8bee4

from config import Config
from glowtts import GlowTTS

with open('glowtts.json') as f:
    config = Config.load(json.load(f))

tts = GlowTTS(config.model)
tts.restore('./glowtts_20.ckpt-1').expect_partial()