{% extends "base.html" %} {% block title %}Results — PhysCom{% endblock %} {% block content %}

Results

{% for d in domains %} {{ d.name }} {% endfor %}
{% if domain and results is not none %}
{% if statuses %}
Filter: All ({{ total_results }}) {% for s, cnt in statuses.items() %} {{ s }} ({{ cnt }}) {% endfor %}
{% endif %} {% if not results %} {% if status_filter %}

No results with status "{{ status_filter }}" in this domain.

{% else %}

No results for this domain yet. Run the pipeline first.

{% endif %} {% else %} {% for r in results %} {% endfor %}
# Score Entities Status Details
{{ loop.index }} {{ "%.4f"|format(r.composite_score) if r.composite_score is not none else '—' }} {{ r.combination.entities|map(attribute='name')|join(' + ') }} {%- if r.domain_block_reason -%} domain_blocked {%- else -%} {{ r.combination.status }} {%- endif -%} {%- if r.domain_block_reason -%} {{ r.domain_block_reason }} {%- elif r.combination.status.endswith('_fail') and r.combination.block_reason -%} {{ r.combination.block_reason }} {%- elif r.novelty_flag -%} {{ r.novelty_flag }} {%- else -%} — {%- endif -%} View
{% endif %}
{% elif not domain %}

Select a domain above to view results.

{% endif %} {% endblock %}