Gregniuki commited on
Commit
d3d1ac7
1 Parent(s): 44badd2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -61,8 +61,8 @@ speed = 1.0
61
  fix_duration = None
62
 
63
 
64
- def load_model(repo_name, exp_name, model_cls, model_cfg, ckpt_step):
65
- ckpt_path = str(cached_path(f"hf://SWivid/{repo_name}/{exp_name}/model_{ckpt_step}.safetensors"))
66
  # ckpt_path = f"ckpts/{exp_name}/model_{ckpt_step}.pt" # .pt | .safetensors
67
  vocab_char_map, vocab_size = get_tokenizer("Emilia_ZH_EN", "pinyin")
68
  model = CFM(
@@ -92,11 +92,11 @@ F5TTS_model_cfg = dict(
92
  E2TTS_model_cfg = dict(dim=1024, depth=24, heads=16, ff_mult=4)
93
 
94
  F5TTS_ema_model = load_model(
95
- "F5-TTS", "F5TTS_Base", DiT, F5TTS_model_cfg, 1200000
96
- )
97
- E2TTS_ema_model = load_model(
98
- "E2-TTS", "E2TTS_Base", UNetT, E2TTS_model_cfg, 1200000
99
  )
 
 
 
100
 
101
  def chunk_text(text, max_chars=135):
102
  """
 
61
  fix_duration = None
62
 
63
 
64
+ def load_model(page_name, repo_name, exp_name, model_cls, model_cfg, ckpt_step):
65
+ ckpt_path = str(cached_path(f"hf://{page_name}/{repo_name}/{exp_name}/model_{ckpt_step}.safetensors"))
66
  # ckpt_path = f"ckpts/{exp_name}/model_{ckpt_step}.pt" # .pt | .safetensors
67
  vocab_char_map, vocab_size = get_tokenizer("Emilia_ZH_EN", "pinyin")
68
  model = CFM(
 
92
  E2TTS_model_cfg = dict(dim=1024, depth=24, heads=16, ff_mult=4)
93
 
94
  F5TTS_ema_model = load_model(
95
+ "Gregniuki", "F5-tts_English_German_Polish", "Polish", DiT, F5TTS_model_cfg, 1200000
 
 
 
96
  )
97
+ #E2TTS_ema_model = load_model(
98
+ # "SWivid", "F5-TTS", "E2TTS_Base", UNetT, E2TTS_model_cfg, 1200000
99
+ #)
100
 
101
  def chunk_text(text, max_chars=135):
102
  """