30 |
31 |
Sentiment Analysis
with spaCy and Flask
32 | Powered by Posit Connect
33 |
34 |
47 |
48 |
Input text: {{ sentiment[0] }}
49 | {% for key, value in sentiment[1].items() %}
50 | Sentiment score: {{ '%0.4f'| format(value|float) }}
51 | {% endfor %}
52 |
53 |