Views
No views yet
Rostlab/prot_bert at immutable revision
7a894481acdc12202f0a415dd567f6cfdb698908. Source license: not declared in pinned upstream model card/repository.inference_metadata.yamlrequest.json and output.json real runtime evidencegraph_report.json, performance.json, source.json, and provenance.jsonembedding norm 6.334549427032471hf download justinchuby/onnx-genai-example-prot-bert --repo-type model --local-dir ./prot-bert1python - <<'PY'
2from pathlib import Path
3import onnxruntime as ort
4
5root = Path("prot-bert")
6for relative_path in ['model.onnx']:
7 session = ort.InferenceSession(
8 str(root / relative_path),
9 providers=['CPUExecutionProvider'],
10 )
11 print(relative_path, session.get_providers(), [x.name for x in session.get_inputs()])
12PYrequest.json, output.json, and performance.json.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.