juulaii commited on
Commit
d3cc82a
1 Parent(s): 26f422b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -7
app.py CHANGED
@@ -26,26 +26,29 @@ ui.theme = "peach"
26
  ui.article = """<h2>Pre-trained model Information</h2>
27
  <h3>Automatic Speech Recognition</h3>
28
  <p style='text-align: justify'>The model used for the ASR part of this space is from
29
- <a href=\"https://huggingface.co/facebook/hubert-large-ls960-ft"></a> which is pretrained and fine-tuned on <b>960 hours of
30
  Librispeech</b> on 16kHz sampled speech audio. This model has a self-reported <b>word error rate (WER)</b> of <b>1.9
31
  percent</b> and ranks first in <i>paperswithcode</i> for ASR on Librispeech. More information can be
32
  found on its website at <a href=\"https://ai.facebook.com/blog/hubert-self-supervised-representation-learning-for-speech-
33
  recognition-
34
- generation-and-compression"></a> and
35
- original model is under <a href=\"https://github.com/pytorch/fairseq/tree/main/examples/hubert"></a>.</p>
36
  <h3>Text Translator</h3>
37
  <p style='text-align: justify'>The English to Spanish text translator pre-trained model is from
38
- <a href=\"https://huggingface.co/Helsinki-NLP/opus-mt-en-es"></a> which is part of the <b>The Tatoeba Translation Challenge
 
39
  (v2021-08-07)</b> as seen from its github repo at
40
- <a href=\"https://github.com/Helsinki-NLP/Tatoeba-Challenge"></a>. This project aims to develop machine
 
41
  translation in real-world
42
  cases for many languages. </p>
43
  <h3>Text to Speech</h3>
44
  <p style='text-align: justify'> The TTS model used is from <a href=\"https://huggingface.co/facebook/tts_transformer-es-
45
- css10"></a>.
 
46
  This model uses the <b>Fairseq(-py)</b> sequence modeling toolkit for speech synthesis, in this case, specifically TTS
47
  for Spanish. More information can be seen on their git at
48
- <a href=\"https://github.com/pytorch/fairseq/tree/main/examples/speech_synthesis"></a>. </p>
49
  """
50
 
51
 
 
26
  ui.article = """<h2>Pre-trained model Information</h2>
27
  <h3>Automatic Speech Recognition</h3>
28
  <p style='text-align: justify'>The model used for the ASR part of this space is from
29
+ <a href=\"https://huggingface.co/facebook/hubert-large-ls960-ft">hubert-large-ls960-ft</a> which is pretrained and fine-tuned on <b>960 hours of
30
  Librispeech</b> on 16kHz sampled speech audio. This model has a self-reported <b>word error rate (WER)</b> of <b>1.9
31
  percent</b> and ranks first in <i>paperswithcode</i> for ASR on Librispeech. More information can be
32
  found on its website at <a href=\"https://ai.facebook.com/blog/hubert-self-supervised-representation-learning-for-speech-
33
  recognition-
34
+ generation-and-compression">hubert-self</a> and
35
+ original model is under <a href=\"https://github.com/pytorch/fairseq/tree/main/examples/hubert">pytorch/fairseq</a>.</p>
36
  <h3>Text Translator</h3>
37
  <p style='text-align: justify'>The English to Spanish text translator pre-trained model is from
38
+ <a href=\"https://huggingface.co/Helsinki-NLP/opus-mt-en-es">Helsinki-NLP/opus-mt-en-es</a> which is part of the <b>The
39
+ Tatoeba Translation Challenge
40
  (v2021-08-07)</b> as seen from its github repo at
41
+ <a href=\"https://github.com/Helsinki-NLP/Tatoeba-Challenge">Helsinki-NLP/Tatoeba-Challenge</a>. This project aims to develop
42
+ machine
43
  translation in real-world
44
  cases for many languages. </p>
45
  <h3>Text to Speech</h3>
46
  <p style='text-align: justify'> The TTS model used is from <a href=\"https://huggingface.co/facebook/tts_transformer-es-
47
+ css10">facebook/tts_transformer-es-
48
+ css10</a>.
49
  This model uses the <b>Fairseq(-py)</b> sequence modeling toolkit for speech synthesis, in this case, specifically TTS
50
  for Spanish. More information can be seen on their git at
51
+ <a href=\"https://github.com/pytorch/fairseq/tree/main/examples/speech_synthesis">speech_synthesis</a>. </p>
52
  """
53
 
54