For each example, we find the maximum {{ target_display }} for entries with {{ fluency_display }} between 3 and 9. The table shows the percentage of examples where the row's result set has a higher {{ target_display }} than the column's.
| Result Set (Row) vs. (Column) | {% for col_set in charts_data.result_set_comparison.comparisons %}{{ col_set }} | {% endfor %}
|---|---|
| {{ row_set }} | {% for col_set in charts_data.result_set_comparison.comparisons %}
{% if row_set != col_set and col_set in charts_data.result_set_comparison.comparisons[row_set] %}
{% set comp_data = charts_data.result_set_comparison.comparisons[row_set][col_set] %}
{{ "%.1f"|format(comp_data.win_percentage|default(0)) }}%
({{ comp_data.win_count|default(0) }}/{{ comp_data.total|default(0) }}) {% else %} - {% endif %} |
{% endfor %}
No data available for {{ fluency_display }} vs {{ target_display }} scatter plot.
No data available for {{ target_display }} histogram (all data).
No examples found with {{ fluency_display }} values between 0 and 3.
No examples found with {{ fluency_display }} values between 3 and 9.
No examples found with {{ fluency_display }} values of 9 or higher.
No data available for {{ fluency_display }} histogram.
| {{ key|replace('_', ' ') }} |
{% if value is string %}
{{ value }}
{% elif value is iterable and value is not mapping %}
{% for item in value %}
{{ item }}
{% if not loop.last %}{% endif %} {% endfor %} {% else %} {{ value }}
{% endif %}
|
| {{ column|replace('_', ' ')|title }} | {% endfor %}|
|---|---|
| {% if column in gen and gen[column] is not none %} {{ "%.4f"|format(gen[column]) }} {% else %} N/A {% endif %} | {% else %}
{% if column in gen and gen[column] is not none %}
{% if gen[column] is string and '\n' in gen[column] %}
{{ gen[column] }}
{% else %}
{{ gen[column] }}
{% endif %}
{% endif %}
|
{% endif %}
{% endfor %}