TTSIE / Weights_Loading.py
masterofaudio2077's picture
Upload 13 files
c39b616 verified
Raw
History Blame Contribute Delete
256 Bytes
from Imports import *
model_state = joblib.load('tacotron2_inference_ema.pkl')
vocoder_state = joblib.load('vocoder_inference.pkl')
if model_state is not None:
print("Model state loaded successfully")
else:
print("Model state not loaded")