RamAnanth1 commited on
Commit
77a2b12
·
1 Parent(s): 717ce50

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -47,6 +47,12 @@ with gr.Blocks() as demo:
47
  gr.Markdown("""
48
  ## Emotion Detection From Speech with Whisper
49
  """)
 
 
 
 
 
 
50
 
51
  with gr.Row():
52
  with gr.Column():
@@ -64,7 +70,8 @@ with gr.Blocks() as demo:
64
 
65
  gr.HTML('''
66
  <div class="footer">
67
- <p>Model by <a href="https://github.com/openai/whisper" style="text-decoration: underline;" target="_blank">OpenAI</a>
 
68
  </p>
69
  </div>
70
  ''')
 
47
  gr.Markdown("""
48
  ## Emotion Detection From Speech with Whisper
49
  """)
50
+
51
+ gr.HTML(
52
+ <p style="margin-bottom: 10px; font-size: 94%">
53
+ Whisper is a general-purpose speech recognition model released by OpenAI that can perform multilingual speech recognition as well as speech translation and language identification. This allows for detecting emotion directly from speech in multiple languages
54
+ </p>
55
+ )
56
 
57
  with gr.Row():
58
  with gr.Column():
 
70
 
71
  gr.HTML('''
72
  <div class="footer">
73
+ <p>Whisper Model by <a href="https://github.com/openai/whisper" style="text-decoration: underline;" target="_blank">OpenAI</a> - Emotion Detection Model
74
+ <a href="https://huggingface.co/bhadresh-savani/distilbert-base-uncased-emotion" style="text-decoration: underline;" target="_blank">OpenAI</a>
75
  </p>
76
  </div>
77
  ''')