{% extends "layouts.html" %} {% block content %}
Trial # | Config | {% if module_type == 'data_ingest' %}Avg Score | Avg Latency | Success Rate | {% elif module_type == 'retriever' %}Avg Score | Context Precision | Context Recall | Avg Latency | {% else %}Avg Answer Correctness | {% endif %}Details |
---|---|---|---|---|---|---|---|---|---|---|
{{ eval.trial_number }} | ➕ | {% if module_type == 'data_ingest' %}{{ "%.3f"|format(eval.avg_score) }} | {{ "%.2f"|format(eval.avg_latency) }}s | {{ "%.1f"|format(100 * (1 - eval.error_rate)) }}% | {% elif module_type == 'retriever' %}{{ "%.3f"|format(eval.avg_score) }} | {{ "%.3f"|format(eval.avg_context_precision) }} | {{ "%.3f"|format(eval.avg_context_recall) }} | {{ "%.2f"|format(eval.avg_latency) }}s | {% else %}{{ "%.3f"|format(eval.average_correctness) }} | {% endif %}View Details |
{{ run_config }}