DrishtiSharma commited on
Commit
d9ca05f
1 Parent(s): 74f4380

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -124,6 +124,17 @@ description = """This is a Gradio demo for generating gender-neutralized audios.
124
  """
125
 
126
 
 
 
 
 
 
 
 
 
 
 
 
127
  gr.Interface(
128
  predict_and_ctc_lm_decode,
129
  inputs=[
@@ -133,7 +144,7 @@ gr.Interface(
133
  examples=[["Example1.wav"],["Example2.wav"],["Example3.wav"]],
134
  title="Generate-Gender-Neutralized-Audios",
135
  description = description,
136
- #article="<p><center><img src='........e'></center></p>",
137
  layout="horizontal",
138
  theme="huggingface",
139
  ).launch(enable_queue=True, cache_examples=True)
 
124
  """
125
 
126
 
127
+ article = """ **Acknowledgement**
128
+
129
+ This project is based on the following Spaces:
130
+
131
+ -[CoquiTTS](https://huggingface.co/spaces/coqui/CoquiTTS)
132
+ -[es_nlp_gender_neutralizer](https://huggingface.co/spaces/hackathon-pln-es/es_nlp_gender_neutralizer)
133
+ -[Hindi_ASR](https://huggingface.co/spaces/anuragshas/Hindi_ASR)
134
+
135
+ """
136
+
137
+
138
  gr.Interface(
139
  predict_and_ctc_lm_decode,
140
  inputs=[
 
144
  examples=[["Example1.wav"],["Example2.wav"],["Example3.wav"]],
145
  title="Generate-Gender-Neutralized-Audios",
146
  description = description,
147
+ article=article,
148
  layout="horizontal",
149
  theme="huggingface",
150
  ).launch(enable_queue=True, cache_examples=True)