Apollo 10.0
自动驾驶开放平台
offline_features.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.prediction;
4
9
11 // The task category of the data for learning
12 optional string category = 5;
13 // The info. needed for identifying a unique data point:
14 optional int32 id = 1;
15 optional double timestamp = 2;
16 // The features for learning algorithms:
17 repeated double features_for_learning = 3;
18 repeated string string_features_for_learning = 7;
19 // The ground-truth labels:
20 repeated double labels = 4;
21 // The lane sequence id if associated with a lane
22 optional int32 lane_sequence_id = 6;
23}
24
26 repeated DataForLearning data_for_learning = 1;
27}
28
30 optional int32 id = 1;
31 optional double timestamp = 2;
32 repeated Trajectory trajectory = 3;
33 optional ObstacleConf obstacle_conf = 4;
34 optional Scenario scenario = 5;
35}
36
38 repeated PredictionResult prediction_result = 1;
39}
40
41message ListFrameEnv {
42 repeated FrameEnv frame_env = 1;
43}
44
46 // The task category of the cost values
47 optional string category = 1;
48 // The info. needed for identifying a unique data point:
49 optional int32 id = 2;
50 optional double timestamp = 3;
51 // The cost values whose coefficients to be tuned
52 repeated double values_for_tuning = 4;
53 // The cost values of the real future trajectory
54 repeated double real_cost_value = 5;
55 // The lane sequence id if associated with a lane
56 optional int32 lane_sequence_id = 6;
57 // The associated adc trajectory
58 repeated apollo.common.TrajectoryPoint adc_trajectory_point = 7;
59}
60
62 repeated DataForTuning data_for_tuning = 1;
63}
64
65message Features {
66 repeated Feature feature = 1;
67}
apollo::common
class register implement
Definition arena_queue.h:37