StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
737 B
30 lines
737 B
message HelloRequest {
|
|
optional string greeting = 1;
|
|
}
|
|
|
|
message HelloResponse {
|
|
required string reply = 1;
|
|
}
|
|
|
|
service HelloService {
|
|
rpc SayHello(HelloRequest) returns (HelloResponse) {
|
|
option (google.api.http) = {
|
|
get: "/v1/say-hello/echo/{greeting}"
|
|
additional_bindings {
|
|
post: "/v2/say-hello"
|
|
body: "greeting"
|
|
}
|
|
additional_bindings {
|
|
get: "/v2/say-hello"
|
|
}
|
|
};
|
|
}
|
|
rpc LotsOfReplies(HelloRequest) returns (stream HelloResponse);
|
|
rpc LotsOfGreetings(stream HelloRequest) returns (HelloResponse) {
|
|
option (google.api.http) = {
|
|
post: "/v1/lots-of-greetings"
|
|
body: "*"
|
|
};
|
|
}
|
|
rpc BidiHello(stream HelloRequest) returns (stream HelloResponse);
|
|
}
|
|
|