Sentiment Classification
Submit
{% if user_input %}
Sentiment Analysis Results:
{{user_input}}
Label
Score
{% for item in response %}
{{ item.label }}
{{ item.score | floatformat }}
{% endfor %}
{% endif %}