You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The main reason is that a common pattern recently to have many FeatureSpecs that you may want to drop or include in a job. It is nice to have a prefix on the names so later it is possible to track down which group of features this particular feature originated.
The tough part of implementing it is that internally the FeatureSpec only has a list of Transformers where name is a val. So it is not possible to add a prefix since a transformer can not be copied and the name is not mutable.
The text was updated successfully, but these errors were encountered:
It would be nice to be able to have a function on FeatureSpec that allows for a prefix on each Transformer name.
The main reason is that a common pattern recently to have many FeatureSpecs that you may want to drop or include in a job. It is nice to have a prefix on the names so later it is possible to track down which group of features this particular feature originated.
The tough part of implementing it is that internally the FeatureSpec only has a list of Transformers where name is a val. So it is not possible to add a prefix since a transformer can not be copied and the name is not mutable.
The text was updated successfully, but these errors were encountered: