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
647 B
30 lines
647 B
package tutorial;
|
|
|
|
option java_package = "com.mafintosh.generated";
|
|
option java_outer_classname = "Example";
|
|
option java_generate_equals_and_hash = true;
|
|
option optimize_for = SPEED;
|
|
|
|
message Person {
|
|
enum PhoneType {
|
|
option allow_alias = true;
|
|
option custom_option = true;
|
|
MOBILE = 0 [some_enum_option = true];
|
|
HOME = 1;
|
|
WORK = 2;
|
|
}
|
|
|
|
message PhoneNumber {
|
|
required string number = 1;
|
|
optional PhoneType type = 2 [default = HOME];
|
|
}
|
|
|
|
required string name = 1;
|
|
required int32 id = 2;
|
|
optional string email = 3;
|
|
repeated PhoneNumber phone = 4;
|
|
}
|
|
|
|
message AddressBook {
|
|
repeated Person person = 1;
|
|
}
|
|
|