Spaces:
Runtime error
Runtime error
RamAnanth1
commited on
Commit
·
8e29f49
1
Parent(s):
4a6ab73
Update app.py
Browse files
app.py
CHANGED
@@ -88,7 +88,7 @@ def get_transcript_url(url, audio_intelligence_options):
|
|
88 |
for elt in res:
|
89 |
sentiment_analysis_result = sentiment_analysis_result + "TEXT: "+ elt['text']+ "\n"
|
90 |
sentiment_analysis_result = sentiment_analysis_result + "SENTIMENT: " + elt['sentiment'] + "\n"
|
91 |
-
sentiment_analysis_result = sentiment_analysis_result + "CONFIDENCE: " + round(float(elt['confidence']), 2) + "\n"
|
92 |
|
93 |
return transcription_result['text'], transcription_result['summary'], sentiment_analysis_result
|
94 |
|
|
|
88 |
for elt in res:
|
89 |
sentiment_analysis_result = sentiment_analysis_result + "TEXT: "+ elt['text']+ "\n"
|
90 |
sentiment_analysis_result = sentiment_analysis_result + "SENTIMENT: " + elt['sentiment'] + "\n"
|
91 |
+
sentiment_analysis_result = sentiment_analysis_result + "CONFIDENCE: " + str(round(float(elt['confidence']), 2)) + "\n"
|
92 |
|
93 |
return transcription_result['text'], transcription_result['summary'], sentiment_analysis_result
|
94 |
|