Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
steveyuwono committed Jul 19, 2024
1 parent 9ec7b33 commit 6239c92
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
## -- 2023-07-27 1.0.0 LSB Creation/Release
## -- 2024-05-02 1.1.0 DA Review/minor adjustments
## -- 2024-05-12 1.2.0 DA Event-based adaption Window->BoundaryDetector added
## -- 2024-07-19 1.2.1 SY Refactoring due to method Deriver._prepare_derivation()
## -------------------------------------------------------------------------------------------------

"""
Ver. 1.2.0 (2024-05-12)
Ver. 1.2.1 (2024-07-19)
This howto shows an example of complex preprocessing with parallel tasks. It addresses several
problems like feature rearanging, numerical feature derivation, data windowing, and self-adapting
Expand Down Expand Up @@ -86,7 +87,6 @@ def _setup(self, p_mode, p_ada: bool, p_visualize: bool, p_logging):


# 2.2 Set up and add a deriver task to extend the feature and label space (1st derivative)
features = task1_rearranger._feature_space.get_dims()
derived_feature = features[0]

task2_deriver1 = Deriver( p_name = '2 - Deriver #1',
Expand All @@ -104,7 +104,6 @@ def _setup(self, p_mode, p_ada: bool, p_visualize: bool, p_logging):


# 2.3 Set up and add a deriver task to extend the feature and label space (2nd derivative)
features = task2_deriver1._feature_space.get_dims()
derived_feature = features[0]

task3_deriver2 = Deriver( p_name = '3 - Deriver #2',
Expand Down

0 comments on commit 6239c92

Please sign in to comment.