Skip to content

Commit 9692323

Browse files
committed
add javadoc to the API class
1 parent 3dc23f4 commit 9692323

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/main/java/com/github/tadayosi/tensorflow/serving/client/TensorFlowServingApi.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,31 @@
88

99
public 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
}

0 commit comments

Comments
 (0)