{% extends "base.html" %}
{% block title %}{{ entry.model_id }} — {{ entry.suite_id }}{% endblock %}
{% block content %}
Home /
{{ entry.suite_id }} /
{{ entry.run_id }}
{{ entry.model_id }}
{{ entry.engine_name }} {{ entry.engine_version }} on {{ entry.hardware_class }}
{% if entry.quantization %}({{ entry.quantization }}){% endif %}
· seed {{ envelope.seed }} · run {{ entry.run_id }}
· {% if entry.signed %}signed {% else %}unsigned {% endif %}
Headline metrics
{% for key in headline_keys %}
{{ headline_labels[key] }}
{{ entry.metrics[key]|fmt_metric }}
{% endfor %}
All metrics
{% for key, value in entry.all_metrics.items()|sort %}
{{ key }}
{{ value|fmt_metric }}
{% endfor %}
Provenance
Model revision {{ entry.model_revision }}
Provider {{ entry.model_provider }}
Hardware fingerprint {{ envelope.hardware_fingerprint.fingerprint_sha256 }}
Dataset {{ envelope.dataset.id }} · {{ envelope.dataset.hash }}
Timestamp {{ entry.timestamp }}
Envelope JSON {{ entry.envelope_filename }}
{% if entry.warnings %}
Warnings
{% for w in entry.warnings %}{{ w }} {% endfor %}
{% endif %}
Verify this result
{{ verify_snippet }}
bench verify re-downloads this envelope, recomputes the canonical
content hash, and validates the Sigstore signature against the embedded
certificate + Rekor entry.
{% endblock %}