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
This issue is a medium-long term issue related to the data preparation phase (before fit / predict methods).
In several previous issues, we introduced some workhorses to deal with features and data preparation in a flexible way, using the python capacity to link dynamically with custom code.
For now, we keept the legacy way to build feature thanks to FeatureApplicator classes and implement very naively the LegacyDataPreparation class that wraps the FeatureApplicator calls.
We think that:
The 2 FeatureApplicator (train and Operational) can be entirely replace by one DataPrepartion class with a method for each task (train and forecast)
The LegacyDataPreparation can be be directly implemented without the use of the FeatureApplicator
Most of weather and lag feature, historically in the library for alliender's usecases, can be implemented through the feature_adder mecanism to completely get ride of specific hardcoded parts.
The text was updated successfully, but these errors were encountered:
This issue is a medium-long term issue related to the data preparation phase (before fit / predict methods).
In several previous issues, we introduced some workhorses to deal with features and data preparation in a flexible way, using the python capacity to link dynamically with custom code.
feature_adder
andfeature_dispatcher
objects used to add new features.DataPreparation
class that should handle all the data preparation computation.For now, we keept the legacy way to build feature thanks to
FeatureApplicator
classes and implement very naively theLegacyDataPreparation
class that wraps theFeatureApplicator
calls.We think that:
FeatureApplicator
(train and Operational) can be entirely replace by one DataPrepartion class with a method for each task (train and forecast)LegacyDataPreparation
can be be directly implemented without the use of theFeatureApplicator
The text was updated successfully, but these errors were encountered: