File size: 638 Bytes
f21db30 b3af35a 7fc9155 b3af35a 7fc9155 9352aa2 7fc9155 b3af35a 9352aa2 b3af35a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sentiment Analyzer</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<h1>Sentiment Analysis</h1>
<form method="POST">
<textarea name="user_input" rows="4" cols="50" placeholder="Enter text here..."></textarea><br>
<button type="submit">Analyze</button>
</form>
{% if result %}
<h2>Result:</h2>
<p><strong>Label:</strong> {{ result['label'] }}</p>
<p><strong>Confidence:</strong> {{ result['score'] | round(2) }}</p>
{% endif %}
</body>
</html>
|