the-algorithm/navi/navi/proto/tensorflow_serving/apis/regression.proto
twitter-team ef4c5eb65e Twitter Recommendation Algorithm
Please note we have force-pushed a new initial commit in order to remove some publicly-available Twitter user information. Note that this process may be required in the future.
2023-03-31 17:36:31 -05:00

38 lines
829 B
Protocol Buffer

syntax = "proto3";
option cc_enable_arenas = true;
import "tensorflow_serving/apis/input.proto";
import "tensorflow_serving/apis/model.proto";
package tensorflow.serving;
// Regression result for a single item (tensorflow.Example).
message Regression {
float value = 1;
}
// Contains one result per input example, in the same order as the input in
// RegressionRequest.
message RegressionResult {
repeated Regression regressions = 1;
}
// RPC interfaces.
message RegressionRequest {
// Model Specification. If version is not specified, will use the latest
// (numerical) version.
ModelSpec model_spec = 1;
// Input data.
tensorflow.serving.Input input = 2;
}
message RegressionResponse {
// Effective Model Specification used for regression.
ModelSpec model_spec = 2;
RegressionResult result = 1;
}