{% extends "solo/base_solo.html" %} {% block title %}Final Validation - Solo Mode{% endblock %} {% block content %}

Final Validation

Validate a sample of LLM-only labeled instances to ensure quality. This is the final step before completion.

{% if current_sample %}
{{ current_sample.text }}
LLM Label: {{ current_sample.llm_label }}
{% set conf = current_sample.llm_confidence or 0.5 %} {% set conf_class = 'confidence-low' if conf < 0.5 else ('confidence-mid' if conf < 0.8 else 'confidence-high') %}

Confidence: {{ (conf * 100)|int }}%

What is the correct label?

{% for label in labels %} {% endfor %}
{% else %}

Validation Complete!

All validation samples have been reviewed.

View Final Results
{% endif %} {% endblock %} {% block stats %} {{ super() }} {% if progress %}
Validated {{ progress.validated }} / {{ progress.total_samples }}
Accuracy {{ (progress.validation_accuracy * 100)|int }}%
Progress {{ progress.percent_complete|int }}%
{% endif %} {% endblock %} {% block sidebar_extra %}

Validation Progress

{% if progress %}

{{ progress.validated }} of {{ progress.total_samples }} validated

{% endif %} {% endblock %} {% block extra_js %} {% endblock %}