openstef 3.4.22__py3-none-any.whl → 3.4.23__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/model/regressors/linear_quantile.py +4 -0
- {openstef-3.4.22.dist-info → openstef-3.4.23.dist-info}/METADATA +1 -1
- {openstef-3.4.22.dist-info → openstef-3.4.23.dist-info}/RECORD +6 -6
- {openstef-3.4.22.dist-info → openstef-3.4.23.dist-info}/LICENSE +0 -0
- {openstef-3.4.22.dist-info → openstef-3.4.23.dist-info}/WHEEL +0 -0
- {openstef-3.4.22.dist-info → openstef-3.4.23.dist-info}/top_level.txt +0 -0
@@ -59,6 +59,7 @@ class LinearQuantileOpenstfRegressor(OpenstfRegressor, RegressorMixin):
|
|
59
59
|
- Holiday features (is_christmas, is_*)
|
60
60
|
- Lagged features (T-1d, T-*)
|
61
61
|
- Point in time features (IsWeekendDay, IsWeekDay, IsSunday, Month, Quarter)
|
62
|
+
- Infeed MFFBAS profiles (E*_I)
|
62
63
|
|
63
64
|
Args:
|
64
65
|
quantiles: Tuple with desired quantiles, quantile 0.5 is required.
|
@@ -130,6 +131,9 @@ class LinearQuantileOpenstfRegressor(OpenstfRegressor, RegressorMixin):
|
|
130
131
|
or
|
131
132
|
# Ignore lag features
|
132
133
|
re.match(r"T-", feature_name) is not None
|
134
|
+
or
|
135
|
+
# Ignore infeed MFFBAS profiles
|
136
|
+
re.match(r"E\d.*_I", feature_name) is not None
|
133
137
|
)
|
134
138
|
|
135
139
|
def _remove_ignored_features(self, x: pd.DataFrame) -> pd.DataFrame:
|
@@ -63,7 +63,7 @@ openstef/model/regressors/custom_regressor.py,sha256=Hsmxahc9nfSWD0aEZ6cm4pxW2no
|
|
63
63
|
openstef/model/regressors/dazls.py,sha256=cCYFewJEv3Fn01wdZpaKNSiYmEwzuED7PQrrWzwyTEg,8084
|
64
64
|
openstef/model/regressors/lgbm.py,sha256=zCdn1euEdSFxYJzH8XqQFFnb6R4JVUnmineKjX_Gy-g,800
|
65
65
|
openstef/model/regressors/linear.py,sha256=uOvZMLGZH_9nXfmS5honCMfyVeyGXP1Cza9A_BdXlVw,3665
|
66
|
-
openstef/model/regressors/linear_quantile.py,sha256=
|
66
|
+
openstef/model/regressors/linear_quantile.py,sha256=N-cia8aba39Th6BzOdtcESLuxhY9YtSGaOYIc6STgag,7830
|
67
67
|
openstef/model/regressors/regressor.py,sha256=uJcx59AyCPE9f_yPcAQ59h2ZS7eNsDpIHJrladKvHIw,3461
|
68
68
|
openstef/model/regressors/xgb.py,sha256=HggA1U10srzdysjV560BMMX66kfaxCKAnOZB3JyyT_Y,808
|
69
69
|
openstef/model/regressors/xgb_quantile.py,sha256=PzKIxqN_CnEPFmzXACNuzLSmZSHbooTuiJ5ckJ9vh_E,7805
|
@@ -100,8 +100,8 @@ openstef/tasks/utils/predictionjobloop.py,sha256=Ysy3zF5lzPMz_asYDKeF5m0qgVT3tCt
|
|
100
100
|
openstef/tasks/utils/taskcontext.py,sha256=L9K14ycwgVxbIVUjH2DIn_QWbnu-OfxcGtQ1K9T6sus,5630
|
101
101
|
openstef/validation/__init__.py,sha256=bIyGTSA4V5VoOLTwdaiJJAnozmpSzvQooVYlsf8H4eU,163
|
102
102
|
openstef/validation/validation.py,sha256=628xaDbAm8B4AYtFOAn8_SXLjejNfULGCfX3hVf_mU0,11119
|
103
|
-
openstef-3.4.
|
104
|
-
openstef-3.4.
|
105
|
-
openstef-3.4.
|
106
|
-
openstef-3.4.
|
107
|
-
openstef-3.4.
|
103
|
+
openstef-3.4.23.dist-info/LICENSE,sha256=7Pm2fWFFHHUG5lDHed1vl5CjzxObIXQglnYsEdtjo_k,14907
|
104
|
+
openstef-3.4.23.dist-info/METADATA,sha256=ZtURJ-TH2PoNGcDMSM3F7sSASCuGOYUhI1i3qCzGlEY,7393
|
105
|
+
openstef-3.4.23.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
106
|
+
openstef-3.4.23.dist-info/top_level.txt,sha256=kD0H4PqrQoncZ957FvqwfBxa89kTrun4Z_RAPs_HhLs,9
|
107
|
+
openstef-3.4.23.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|