{% extends "base.html" %} {% block content %}

Enter Email or Message

The system detects Aggressive, Neutral, Polite, and Friendly tone.

{% if result %}

Prediction: {{ result.label }}

Confidence: {{ result.confidence }}%
Threat: {{ result.threat_score }}
Politeness: {{ result.politeness_score }}
Friendly: {{ result.friendly_score }}
{% if result.has_threat %} Threat {% endif %} {% if result.has_profanity %} Profanity {% endif %} {% if result.has_sarcasm %} Sarcasm {% endif %}

Why this label?

{% endif %} {% endblock %}