Yanis Lukes commited on
Commit
19ad563
·
2 Parent(s): 1bfddbd e104055

Merge remote-tracking branch 'origin/main' into main

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -388,6 +388,8 @@ OVERRIDE_INPUTS = {
388
  1: DEFAULT_VOICE_TRANSCRIPT, # transcript of sample (< 15 seconds required)
389
  3: "F5-TTS", # model
390
  4: False, # cleanup silence
 
 
391
  },
392
 
393
  # IMS-Toucan
@@ -396,7 +398,7 @@ OVERRIDE_INPUTS = {
396
  2: 0.6, #prosody_creativity
397
  3: 1, #duration_scaling_factor
398
  4: 41, #voice_seed
399
- 5: -7.5, #emb1
400
  6: None, #reference_audio
401
  },
402
 
@@ -414,7 +416,7 @@ cached_samples: List[Sample] = []
414
  voting_users = {
415
  # userid as the key and USER() as the value
416
  }
417
- top_five = []
418
 
419
  def generate_matching_pairs(samples: List[Sample]) -> List[Tuple[Sample, Sample]]:
420
  transcript_groups: Dict[str, List[Sample]] = {}
@@ -645,7 +647,7 @@ for model in HF_SPACES.values():
645
  TTS_DATASET_IFRAME_ORDER = '%2C+'.join(model_series)
646
  TTS_DATASET_IFRAME = f"""
647
  <iframe
648
- src="https://huggingface.co/datasets/Pendrokar/open_tts_tracker/embed/viewer/default/train?sql_console=true&sql=--+The+SQL+console+is+powered+by+DuckDB+WASM+and+runs+entirely+in+the+browser.%0A--+Get+started+by+typing+a+query+or+selecting+a+view+from+the+options+below.%0ASELECT+*%2C+%22Name%22+IN+%28{TTS_DATASET_IFRAME_ORDER}%29+AS+%22In+arena%22+FROM+train+WHERE+%22Insta-clone+%F0%9F%91%A5%22+IS+NOT+NULL+ORDER+BY+%22In+arena%22+DESC+LIMIT+50%3B&views%5B%5D=train"
649
  frameborder="0"
650
  width="100%"
651
  height="650px"
 
388
  1: DEFAULT_VOICE_TRANSCRIPT, # transcript of sample (< 15 seconds required)
389
  3: "F5-TTS", # model
390
  4: False, # cleanup silence
391
+ 5: 0.15, #crossfade
392
+ 6: 1, #speed
393
  },
394
 
395
  # IMS-Toucan
 
398
  2: 0.6, #prosody_creativity
399
  3: 1, #duration_scaling_factor
400
  4: 41, #voice_seed
401
+ 5: 7.5, #emb1
402
  6: None, #reference_audio
403
  },
404
 
 
416
  voting_users = {
417
  # userid as the key and USER() as the value
418
  }
419
+ top_five = ['mrfakename/E2-F5-TTS', 'Flux9665/MassivelyMultilingualTTS']
420
 
421
  def generate_matching_pairs(samples: List[Sample]) -> List[Tuple[Sample, Sample]]:
422
  transcript_groups: Dict[str, List[Sample]] = {}
 
647
  TTS_DATASET_IFRAME_ORDER = '%2C+'.join(model_series)
648
  TTS_DATASET_IFRAME = f"""
649
  <iframe
650
+ src="https://huggingface.co/datasets/Pendrokar/open_tts_tracker/embed/sql-console/default/train?sql_console=true&sql=--+The+SQL+console+is+powered+by+DuckDB+WASM+and+runs+entirely+in+the+browser.%0A--+Get+started+by+typing+a+query+or+selecting+a+view+from+the+options+below.%0ASELECT+*%2C+%22Name%22+IN+%28{TTS_DATASET_IFRAME_ORDER}%29+AS+%22In+arena%22+FROM+train+WHERE+%22Insta-clone+%F0%9F%91%A5%22+IS+NOT+NULL+ORDER+BY+%22In+arena%22+DESC+LIMIT+50%3B&views%5B%5D=train"
651
  frameborder="0"
652
  width="100%"
653
  height="650px"