TensorFlow · Arazzo Workflow
TensorFlow Serving Pinned Reproducible Example Scoring
Version 1.0.0
Pin a model version and score the same tf.Example inputs through both its classify and regress signatures.
View Spec
View on GitHub
AIDeep LearningJavaScriptMachine LearningModel ServingNeural NetworksOpen SourcePythonArazzoWorkflows
Provider
Workflows
pinned-example-scoring
Classify and regress the same examples against one explicitly pinned model version.
Confirms the pinned version is AVAILABLE, records its signature metadata for the audit trail, then runs the same tf.Example records through the pinned version's classification and regression signatures.
1
checkPinnedVersion
getModelVersionStatus
Confirm the pinned version is loaded and AVAILABLE. If the version has been unloaded or garbage collected the run must fail loudly rather than silently fall through to a different version.
2
readPinnedMetadata
getModelVersionMetadata
Capture the pinned version's signature metadata as part of the audit record, so the exact model shape behind the scores is retained alongside them.
3
classifyPinned
classifyModelVersion
Run the examples through the pinned version's classification signature, returning the label and score pairs for each record.
4
regressPinned
regressModelVersion
Run the identical examples through the same pinned version's regression signature, returning the numeric estimate that accompanies each classification.
Source API Descriptions
openapi