openstef 3.4.29__py3-none-any.whl → 3.4.44__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- openstef/data/dazls_model_3.4.24/dazls_stored_3.4.24_baseline_model.z +0 -0
- openstef/data/dazls_model_3.4.24/dazls_stored_3.4.24_model_card.md +18 -0
- openstef/data/dazls_model_3.4.24/dazls_stored_3.4.24_model_card.md.license +3 -0
- openstef/data/dutch_holidays.csv +1759 -0
- openstef/data/dutch_holidays.csv.license +3 -0
- openstef/data_classes/prediction_job.py +3 -1
- openstef/enums.py +105 -2
- openstef/feature_engineering/apply_features.py +26 -1
- openstef/feature_engineering/bidding_zone_to_country_mapping.py +106 -0
- openstef/feature_engineering/cyclic_features.py +102 -0
- openstef/feature_engineering/holiday_features.py +35 -26
- openstef/feature_engineering/missing_values_transformer.py +57 -15
- openstef/model/model_creator.py +24 -20
- openstef/model/objective.py +7 -7
- openstef/model/objective_creator.py +11 -11
- openstef/model/regressors/flatliner.py +4 -9
- openstef/model/regressors/linear_quantile.py +58 -9
- openstef/model/regressors/xgb.py +23 -0
- openstef/model_selection/model_selection.py +1 -1
- openstef/pipeline/create_component_forecast.py +13 -6
- openstef/pipeline/train_model.py +8 -5
- openstef/tasks/calculate_kpi.py +3 -3
- openstef/tasks/create_basecase_forecast.py +2 -2
- openstef/tasks/create_components_forecast.py +4 -4
- openstef/tasks/create_forecast.py +4 -4
- openstef/tasks/create_solar_forecast.py +4 -4
- openstef/tasks/optimize_hyperparameters.py +2 -2
- openstef/tasks/split_forecast.py +2 -2
- openstef/tasks/train_model.py +2 -2
- openstef/validation/validation.py +1 -1
- {openstef-3.4.29.dist-info → openstef-3.4.44.dist-info}/METADATA +38 -26
- {openstef-3.4.29.dist-info → openstef-3.4.44.dist-info}/RECORD +36 -30
- {openstef-3.4.29.dist-info → openstef-3.4.44.dist-info}/WHEEL +1 -1
- openstef/data/dutch_holidays_2020-2022.csv +0 -831
- /openstef/data/{dutch_holidays_2020-2022.csv.license → dazls_model_3.4.24/dazls_stored_3.4.24_baseline_model.z.license} +0 -0
- {openstef-3.4.29.dist-info → openstef-3.4.44.dist-info}/LICENSE +0 -0
- {openstef-3.4.29.dist-info → openstef-3.4.44.dist-info}/top_level.txt +0 -0
Binary file
|
@@ -0,0 +1,18 @@
|
|
1
|
+
|
2
|
+
# Model details : dazls\_model\_baseline\_model
|
3
|
+
|
4
|
+
## Description
|
5
|
+
**Model Name**: dazls\_model\_baseline\_model
|
6
|
+
|
7
|
+
**Author**: KTP, Alliander
|
8
|
+
|
9
|
+
**Model type**: Energy splitting model
|
10
|
+
|
11
|
+
**Model Architecture**: LinearRegression
|
12
|
+
|
13
|
+
**Date**: 2024-04-26
|
14
|
+
|
15
|
+
## Intended use
|
16
|
+
This is a DAZLs model aimed at determining the energy splits for substations.
|
17
|
+
Each of these splits are determined based on a set of features that are available in production,
|
18
|
+
and in this case have their origin in the Dutch energy grid.********************
|