syntax = "proto2"; package apollo.prediction; import "modules/prediction/proto/feature.proto"; message Features { repeated Feature feature = 1; } message CNNFeatures { optional uint32 dim0 = 1; optional uint32 dim1 = 2; optional uint32 dim2 = 3; // The arrange of feature values are in the order of dim0, dim1, dim2 repeated double feature_value = 4; optional int32 label = 5; }