File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
src/main/java/com/github/tadayosi/tensorflow/serving/client Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 88
99public interface TensorFlowServingApi {
1010
11+ /**
12+ * Gets status of model. If the ModelSpec in the request does not specify
13+ * version, information about all versions of the model will be returned. If
14+ * the ModelSpec in the request does specify a version, the status of only
15+ * that version will be returned.
16+ */
1117 GetModelStatus .GetModelStatusResponse getModelStatus (GetModelStatus .GetModelStatusRequest request );
1218
19+ /**
20+ * GetModelMetadata - provides access to metadata for loaded models.
21+ */
1322 GetModelMetadata .GetModelMetadataResponse getModelMetadata (GetModelMetadata .GetModelMetadataRequest request );
1423
24+ /**
25+ * Classify.
26+ */
1527 Classification .ClassificationResponse classify (Classification .ClassificationRequest request );
1628
29+ /**
30+ * Regress.
31+ */
1732 RegressionOuterClass .RegressionResponse regress (RegressionOuterClass .RegressionRequest request );
1833
34+ /**
35+ * Predict -- provides access to loaded TensorFlow model.
36+ */
1937 Predict .PredictResponse predict (Predict .PredictRequest request );
2038}
You can’t perform that action at this time.
0 commit comments