TensorFlow Serving C++ API Documentation
|
#include <regressor.h>
Public Member Functions | |
virtual Status | Regress (const RegressionRequest &request, RegressionResult *result)=0 |
Model agnostic interface for performing regression.
Specific implementations will exist for different model types (e.g. TensorFlow SavedModel) that can convert the request into a model specific input and know how to convert the output into a generic RegressionResult.
Definition at line 32 of file regressor.h.
|
pure virtual |
Given a RegressionRequest, populates the RegressionResult with the result.
request | Input request specifying the model/signature to query along with the data payload. |
result | The output regression results that will get populated. |