muhyzatar commited on
Commit
5ed8575
1 Parent(s): 39a0c0a

Update tts.py

Browse files
Files changed (1) hide show
  1. tts.py +1 -1
tts.py CHANGED
@@ -4,7 +4,7 @@ import soundfile as sf
4
  import torch
5
  import os
6
 
7
- class TTS(object):
8
  def __init__(self, model_path, device):
9
  config = load_config(os.path.join(model_path, "config.json"))
10
  self.model = setup_tts_model(config)
 
4
  import torch
5
  import os
6
 
7
+ class TTS_object(object):
8
  def __init__(self, model_path, device):
9
  config = load_config(os.path.join(model_path, "config.json"))
10
  self.model = setup_tts_model(config)