{{ result.metadata.name }}

Type: Classifier

{% if result.metadata.model_names %}

Models: {{ result.metadata.model_names|join(', ') }}

{% endif %} {% if result.agreement_stats_df is defined and not result.agreement_stats_df.empty %}
Agreement Statistics
{% if result.metadata.agreement_fields %}

Agreement fields: {{ result.metadata.agreement_fields|join(', ') }}

{% endif %} {{ result.agreement_stats_df|df_to_html|safe }}
{% endif %} {% if result.model_dfs %}
Classifications by Model
{% for model_name, df in result.model_dfs.items() %}
{{ model_name }} - {{ df|length }} classifications (click to expand)
{{ df|df_to_html|safe }}
{% endfor %} {% else %}

No classifications

{% endif %}