{% extends "base.html" %} {% block title %}{{ entry.model_id }} — {{ entry.suite_id }}{% endblock %} {% block content %}

{{ 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 %} {% endfor %}
{{ headline_labels[key] }} {{ entry.metrics[key]|fmt_metric }}

All metrics

{% for key, value in entry.all_metrics.items()|sort %} {% endfor %}
{{ key }} {{ value|fmt_metric }}

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

{% 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 %}