File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
src/energy_forcasting_model/pipelines/feature_engineering_pipeline Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -7,18 +7,18 @@ def create_pipeline(**kwargs) -> Pipeline:
7
7
return pipeline (
8
8
[
9
9
node (
10
- func = create_features ,
11
- inputs = [
12
- "processed_weather_and_consumption_data" ,
13
- "params:feature_engineering" ,
14
- ],
15
- outputs = [
16
- "featured_data" ,
17
- "created_features" ,
18
- ],
19
- name = "create_features_node" ,
20
- tags = ["feature_creation" ],
21
- ),
10
+ func = create_features ,
11
+ inputs = [
12
+ "processed_weather_and_consumption_data" ,
13
+ "params:feature_engineering" ,
14
+ ],
15
+ outputs = [
16
+ "featured_data" ,
17
+ "created_features" ,
18
+ ],
19
+ name = "create_features_node" ,
20
+ tags = ["feature_creation" ],
21
+ ),
22
22
],
23
23
tags = "feature_engineering_pipeline" ,
24
24
namespace = "feature_engineering_pipeline" ,
You can’t perform that action at this time.
0 commit comments