You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Help!When I learn your mnist_saved_model.py, I'm confused by the SignatureDef of Classification and Predict. I just wonder what's the difference between them?
The text was updated successfully, but these errors were encountered:
The Classify API is higher-level and more specific than the Predict API. Classify accepts tensorflow.serving.Input (which wraps a list of tf.Examples) as input and produces classes and scores as output. It is used for classification problems. Predict, on the other than, accepts tensors as input and outputs tensors. It can be used for regression, classification and other types of inference problems.
Help!When I learn your mnist_saved_model.py, I'm confused by the SignatureDef of Classification and Predict. I just wonder what's the difference between them?
The text was updated successfully, but these errors were encountered: