openstef 3.4.33__tar.gz → 3.4.35__tar.gz
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-3.4.33 → openstef-3.4.35}/PKG-INFO +5 -5
- {openstef-3.4.33 → openstef-3.4.35}/openstef/tasks/create_solar_forecast.py +2 -2
- {openstef-3.4.33 → openstef-3.4.35}/openstef.egg-info/PKG-INFO +5 -5
- {openstef-3.4.33 → openstef-3.4.35}/openstef.egg-info/requires.txt +2 -1
- {openstef-3.4.33 → openstef-3.4.35}/setup.py +3 -4
- {openstef-3.4.33 → openstef-3.4.35}/LICENSE +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/README.md +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/__main__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/app_settings.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/data/dazls_model_3.4.24/dazls_stored_3.4.24_baseline_model.z +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/data/dazls_model_3.4.24/dazls_stored_3.4.24_baseline_model.z.license +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/data/dazls_model_3.4.24/dazls_stored_3.4.24_model_card.md +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/data/dazls_model_3.4.24/dazls_stored_3.4.24_model_card.md.license +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/data/dutch_holidays_2020-2022.csv +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/data/dutch_holidays_2020-2022.csv.license +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/data/pv_single_coefs.csv +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/data/pv_single_coefs.csv.license +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/data_classes/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/data_classes/data_prep.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/data_classes/model_specifications.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/data_classes/prediction_job.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/data_classes/split_function.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/enums.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/exceptions.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/feature_engineering/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/feature_engineering/apply_features.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/feature_engineering/data_preparation.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/feature_engineering/feature_adder.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/feature_engineering/feature_applicator.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/feature_engineering/general.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/feature_engineering/holiday_features.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/feature_engineering/lag_features.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/feature_engineering/missing_values_transformer.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/feature_engineering/weather_features.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/metrics/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/metrics/figure.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/metrics/metrics.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/metrics/reporter.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/basecase.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/confidence_interval_applicator.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/fallback.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/metamodels/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/metamodels/grouped_regressor.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/metamodels/missing_values_handler.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/model_creator.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/objective.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/objective_creator.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/regressors/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/regressors/arima.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/regressors/custom_regressor.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/regressors/dazls.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/regressors/flatliner.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/regressors/lgbm.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/regressors/linear.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/regressors/linear_quantile.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/regressors/regressor.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/regressors/xgb.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/regressors/xgb_multioutput_quantile.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/regressors/xgb_quantile.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/serializer.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model/standard_deviation_generator.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model_selection/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/model_selection/model_selection.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/monitoring/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/monitoring/performance_meter.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/monitoring/teams.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/pipeline/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/pipeline/create_basecase_forecast.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/pipeline/create_component_forecast.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/pipeline/create_forecast.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/pipeline/optimize_hyperparameters.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/pipeline/train_create_forecast_backtest.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/pipeline/train_model.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/pipeline/utils.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/postprocessing/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/postprocessing/postprocessing.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/preprocessing/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/preprocessing/preprocessing.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/settings.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/tasks/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/tasks/calculate_kpi.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/tasks/create_basecase_forecast.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/tasks/create_components_forecast.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/tasks/create_forecast.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/tasks/create_wind_forecast.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/tasks/optimize_hyperparameters.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/tasks/split_forecast.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/tasks/train_model.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/tasks/utils/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/tasks/utils/dependencies.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/tasks/utils/predictionjobloop.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/tasks/utils/taskcontext.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/validation/__init__.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef/validation/validation.py +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef.egg-info/SOURCES.txt +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef.egg-info/dependency_links.txt +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/openstef.egg-info/top_level.txt +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/pyproject.toml +0 -0
- {openstef-3.4.33 → openstef-3.4.35}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: openstef
|
3
|
-
Version: 3.4.
|
3
|
+
Version: 3.4.35
|
4
4
|
Summary: Open short term energy forecaster
|
5
5
|
Home-page: https://github.com/OpenSTEF/openstef
|
6
6
|
Author: Alliander N.V
|
@@ -10,9 +10,8 @@ Keywords: energy,forecasting,machinelearning
|
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
11
11
|
Classifier: Intended Audience :: Developers
|
12
12
|
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
13
|
-
Classifier: Programming Language :: Python :: 3.
|
14
|
-
|
15
|
-
Requires-Python: >=3.9.0
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
14
|
+
Requires-Python: >=3.11.0
|
16
15
|
Description-Content-Type: text/markdown
|
17
16
|
License-File: LICENSE
|
18
17
|
Requires-Dist: holidays==0.21
|
@@ -21,11 +20,12 @@ Requires-Dist: lightgbm~=3.3
|
|
21
20
|
Requires-Dist: matplotlib~=3.7
|
22
21
|
Requires-Dist: mlflow~=2.3
|
23
22
|
Requires-Dist: networkx~=3.1
|
23
|
+
Requires-Dist: numpy<3,>=2
|
24
24
|
Requires-Dist: optuna~=3.1
|
25
25
|
Requires-Dist: optuna-integration~=3.6
|
26
26
|
Requires-Dist: pandas~=2.2.0
|
27
27
|
Requires-Dist: plotly~=5.18
|
28
|
-
Requires-Dist: pvlib==0.
|
28
|
+
Requires-Dist: pvlib==0.10.5
|
29
29
|
Requires-Dist: pydantic~=2.4
|
30
30
|
Requires-Dist: pydantic-settings~=2.3
|
31
31
|
Requires-Dist: pymsteams~=0.2.2
|
@@ -186,7 +186,7 @@ def fides(data: pd.DataFrame, all_forecasts: bool = False):
|
|
186
186
|
data = pd.DataFrame(index = index,
|
187
187
|
data = dict(load=np.sin(index.hour/24*np.pi)*np.random.uniform(0.7,1.7, 300)))
|
188
188
|
data['insolation'] = data.load * np.random.uniform(0.8, 1.2, len(index)) + 0.1
|
189
|
-
data.loc[int(len(index)/3*2):,"load"] = np.
|
189
|
+
data.loc[int(len(index)/3*2):,"load"] = np.nan
|
190
190
|
|
191
191
|
"""
|
192
192
|
insolation_forecast = apply_fit_insol(data, add_to_df=False)
|
@@ -357,7 +357,7 @@ def apply_fit_insol(data, add_to_df=True, hours_delta=None, polynomial=False):
|
|
357
357
|
data = pd.DataFrame(index = index,
|
358
358
|
data = dict(load=np.sin(index.hour/24*np.pi)*np.random.uniform(0.7,1.7, len(index))))
|
359
359
|
data['insolation'] = data.load * np.random.uniform(0.8, 1.2, len(index)) + 0.1
|
360
|
-
data.loc[int(len(index)/3*2):,"load"] = np.
|
360
|
+
data.loc[int(len(index)/3*2):,"load"] = np.nan
|
361
361
|
|
362
362
|
"""
|
363
363
|
colname = list(data)[0]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: openstef
|
3
|
-
Version: 3.4.
|
3
|
+
Version: 3.4.35
|
4
4
|
Summary: Open short term energy forecaster
|
5
5
|
Home-page: https://github.com/OpenSTEF/openstef
|
6
6
|
Author: Alliander N.V
|
@@ -10,9 +10,8 @@ Keywords: energy,forecasting,machinelearning
|
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
11
11
|
Classifier: Intended Audience :: Developers
|
12
12
|
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
13
|
-
Classifier: Programming Language :: Python :: 3.
|
14
|
-
|
15
|
-
Requires-Python: >=3.9.0
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
14
|
+
Requires-Python: >=3.11.0
|
16
15
|
Description-Content-Type: text/markdown
|
17
16
|
License-File: LICENSE
|
18
17
|
Requires-Dist: holidays==0.21
|
@@ -21,11 +20,12 @@ Requires-Dist: lightgbm~=3.3
|
|
21
20
|
Requires-Dist: matplotlib~=3.7
|
22
21
|
Requires-Dist: mlflow~=2.3
|
23
22
|
Requires-Dist: networkx~=3.1
|
23
|
+
Requires-Dist: numpy<3,>=2
|
24
24
|
Requires-Dist: optuna~=3.1
|
25
25
|
Requires-Dist: optuna-integration~=3.6
|
26
26
|
Requires-Dist: pandas~=2.2.0
|
27
27
|
Requires-Dist: plotly~=5.18
|
28
|
-
Requires-Dist: pvlib==0.
|
28
|
+
Requires-Dist: pvlib==0.10.5
|
29
29
|
Requires-Dist: pydantic~=2.4
|
30
30
|
Requires-Dist: pydantic-settings~=2.3
|
31
31
|
Requires-Dist: pymsteams~=0.2.2
|
@@ -29,7 +29,7 @@ def read_long_description_from_readme():
|
|
29
29
|
|
30
30
|
setup(
|
31
31
|
name="openstef",
|
32
|
-
version="3.4.
|
32
|
+
version="3.4.35",
|
33
33
|
packages=find_packages(include=["openstef", "openstef.*"]),
|
34
34
|
description="Open short term energy forecaster",
|
35
35
|
long_description=read_long_description_from_readme(),
|
@@ -45,7 +45,7 @@ setup(
|
|
45
45
|
# Include anything in the data directory
|
46
46
|
"openstef": ["data/*", "data/**/*", "*.license"]
|
47
47
|
},
|
48
|
-
python_requires=">=3.
|
48
|
+
python_requires=">=3.11.0",
|
49
49
|
install_requires=read_requirements_from_file(),
|
50
50
|
setup_requires=["wheel"],
|
51
51
|
tests_require=["pytest", "pytest-cov", "flake8"],
|
@@ -53,7 +53,6 @@ setup(
|
|
53
53
|
r"Development Status :: 5 - Production/Stable",
|
54
54
|
"Intended Audience :: Developers",
|
55
55
|
r"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
|
56
|
-
"Programming Language :: Python :: 3.
|
57
|
-
"Programming Language :: Python :: 3.10",
|
56
|
+
"Programming Language :: Python :: 3.11",
|
58
57
|
],
|
59
58
|
)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{openstef-3.4.33 → openstef-3.4.35}/openstef/feature_engineering/missing_values_transformer.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|