huimanho's picture
Create result.html
2a38a66 verified
raw
history blame contribute delete
766 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Analysis Results</title>
</head>
<body>
<h1>Analysis Results</h1>
<h2>Original Comment:</h2>
<p>{{ result.original_comment }}</p>
<h2>Cleaned Comment:</h2>
<p>{{ result.cleaned_comment }}</p>
<h2>Sentiment Analysis:</h2>
<p>Label: {{ result.sentiment.label }}</p>
<p>Score: {{ result.sentiment.score }}</p>
<h2>Detected Entities:</h2>
<ul>
{% for entity in result.entities %}
<li>{{ entity.word }} - {{ entity.entity_group }} (Score: {{ entity.score }})</li>
{% endfor %}
</ul>
<a href="/">Analyze Another Comment</a>
</body>
</html>