@@ -5,13 +5,13 @@ package odpf.assets.v1beta2;
55import "google/protobuf/timestamp.proto" ;
66
77option go_package = "github.com/odpf/proton/assets/v1beta2;assetsv1beta2" ;
8- option java_outer_classname = "MLFeatureProto " ;
8+ option java_outer_classname = "FeatureProto " ;
99option java_package = "io.odpf.assets" ;
1010
11- // MLFeature is a Machine Learning(ML) feature. In machine learning, a feature
11+ // Feature is a Machine Learning(ML) feature. In machine learning, a feature
1212// is an individual measurable property, typically represented by a column,
1313// that serves as an input for Machine Learning (ML) algorithms.
14- message MLFeature {
14+ message Feature {
1515 // The name of the field.
1616 string name = 1 ;
1717
@@ -26,10 +26,10 @@ message MLFeature {
2626 string entity_name = 4 ;
2727}
2828
29- // MLFeatureTable is a Machine Learning(ML) feature table or view that
29+ // FeatureTable is a Machine Learning(ML) feature table or view that
3030// represents a logical group of time-series feature data as it is found in a
3131// data source.
32- message MLFeatureTable {
32+ message FeatureTable {
3333 // An entity is a collection of semantically related features. Users define
3434 // entities to map to the domain of their use case. For example, a
3535 // ride-hailing service could have customers and drivers as their entities,
@@ -54,7 +54,7 @@ message MLFeatureTable {
5454 repeated Entity entities = 2 ;
5555
5656 // Features that are part of the table, akin to columns in a table.
57- repeated MLFeature features = 3 ;
57+ repeated Feature features = 3 ;
5858
5959 // The timestamp when the feature table was created.
6060 google.protobuf.Timestamp create_time = 101 ;
0 commit comments