{% extends "admin/base.html" %} {% block admin_content %}
Date | Type | Chosen Model | Rejected Model | Text |
---|---|---|---|---|
{{ vote.vote_date.strftime('%Y-%m-%d %H:%M') }} | {{ vote.model_type }} | {{ vote.chosen.name }} | {{ vote.rejected.name }} |
{{ vote.text }}
|
Model | Chosen | Appeared | Bias Ratio | Bias Level |
---|---|---|---|---|
{{ model_stats.name }} | {{ model_stats.chosen }} | {{ model_stats.appeared }} | {{ "%.1f"|format(model_stats.bias_ratio * 100) }}% | {% if model_stats.appeared < 5 %} Too Few Votes {% elif model_stats.bias_ratio >= 0.9 and model_stats.appeared >= 10 %} Extreme Bias {% elif model_stats.bias_ratio >= 0.8 and model_stats.appeared >= 8 %} High Bias {% elif model_stats.bias_ratio >= 0.7 and model_stats.appeared >= 5 %} Moderate Bias {% elif model_stats.bias_ratio >= 0.6 and model_stats.appeared >= 5 %} Low Bias {% else %} Normal Pattern {% endif %} |