Apollo 11.0
自动驾驶开放平台
network_model.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.prediction;
4
6
8 // data used to vertify the network model
9 repeated TensorParameter features = 1; // input to the network
10 optional float probability = 2; // output probability of the network
11 optional float distance = 3; // output acceleration of the network
12}
13
14message Performance {
15 repeated float accuracy = 1;
16 repeated float recall = 2;
17 repeated float precision = 3;
18}
19
20message NetParameter {
21 optional int32 id = 1;
22 optional string name = 2;
23 repeated LayerParameter layers = 3;
24
25 repeated VerificationSample verification_samples = 4;
26 optional Performance performance =
27 5; // performance of the model in test dataset
28 optional float time_dumped = 6; // time [s] of dumped the model
29}