hagenw commited on
Commit
a562b02
·
1 Parent(s): 154c646

Fix model links

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -233,9 +233,11 @@ def plot_expression(arousal, dominance, valence):
233
  description = (
234
  "Estimate **age**, **gender**, and **expression** "
235
  "of the speaker contained in an audio file or microphone recording. \n"
236
- "The model [age_gender_model_name](https://huggingface.co/{age_gender_model_name}) "
 
237
  "recognizes age and gender, "
238
- "whereas [{expression_model_name}](https://huggingface.co/{expression_model_name}) "
 
239
  "recognises the expression dimensions arousal, dominance, and valence. "
240
  )
241
 
 
233
  description = (
234
  "Estimate **age**, **gender**, and **expression** "
235
  "of the speaker contained in an audio file or microphone recording. \n"
236
+ f"The model [{age_gender_model_name}]"
237
+ f"(https://huggingface.co/{age_gender_model_name}) "
238
  "recognizes age and gender, "
239
+ f"whereas [{expression_model_name}]"
240
+ f"(https://huggingface.co/{expression_model_name}) "
241
  "recognises the expression dimensions arousal, dominance, and valence. "
242
  )
243