ONNX GenAI Inference Metadata Examples
Collection
Real-weight ONNX packages carrying fully serialized generic pipeline.workflow metadata, executable as-is. No package uses model.io. • 29 items • Updated
Private real-weight ONNX package produced by Mobius from
facebook/esm2_t6_8M_UR50D at immutable revision
c731040fcd8d73dceaa04b0a8e6329b345b0f5df. Source license: mit.
inference_metadata.yamlrequest.json and output.json real runtime evidencegraph_report.json, performance.json, source.json, and provenance.jsonObserved output: embedding norm 7.5770978927612305
hf download justinchuby/onnx-genai-example-esm2-t6-8m --repo-type model --local-dir ./esm2-t6-8m
python - <<'PY'
from pathlib import Path
import onnxruntime as ort
root = Path("esm2-t6-8m")
for relative_path in ['model.onnx']:
session = ort.InferenceSession(
str(root / relative_path),
providers=['CPUExecutionProvider'],
)
print(relative_path, session.get_providers(), [x.name for x in session.get_inputs()])
PY
The exact successful probe request, output, versions, providers, and timings are
preserved in request.json, output.json, and performance.json.
Review inference_metadata.annotated.yaml for inline explanations of this package's workflow, tensor/state/cache contracts, and fail-closed omissions. inference_metadata.yaml remains the canonical machine-authored contract; automated validation confirms both files parse to the same metadata object.