Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -34,10 +34,12 @@ with demo:
|
|
| 34 |
b1.click(speech_to_text, inputs=audio_file, outputs=text)
|
| 35 |
b2.click(text_to_sentiment, inputs=text, outputs=label)
|
| 36 |
|
| 37 |
-
gr.Markdown("""
|
| 38 |
1. ASR Model: https://huggingface.co/facebook/wav2vec2-base-960h
|
| 39 |
2. Sentiment: https://huggingface.co/michellejieli/emotion_text_classifier
|
| 40 |
3. ASR Lesson: https://gradio.app/real-time-speech-recognition/
|
|
|
|
|
|
|
| 41 |
""")
|
| 42 |
|
| 43 |
demo.launch()
|
|
|
|
| 34 |
b1.click(speech_to_text, inputs=audio_file, outputs=text)
|
| 35 |
b2.click(text_to_sentiment, inputs=text, outputs=label)
|
| 36 |
|
| 37 |
+
gr.Markdown("""References:
|
| 38 |
1. ASR Model: https://huggingface.co/facebook/wav2vec2-base-960h
|
| 39 |
2. Sentiment: https://huggingface.co/michellejieli/emotion_text_classifier
|
| 40 |
3. ASR Lesson: https://gradio.app/real-time-speech-recognition/
|
| 41 |
+
4. State: https://gradio.app/interface-state/
|
| 42 |
+
5. Deepspeech: https://deepspeech.readthedocs.io/en/r0.9/
|
| 43 |
""")
|
| 44 |
|
| 45 |
demo.launch()
|