{% extends "base.html" %} {% block title %}Results — PhysCom{% endblock %} {% block content %}
No results with status "{{ status_filter }}" in this domain.
{% else %}No results for this domain yet. Run the pipeline first.
{% endif %} {% else %}| # | 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 |
Select a domain above to view results.
{% endif %} {% endblock %}