A time series forecasting package based on Scikit-Learn and Polars
Project description
What is Yohou?
Yohou is a time series forecasting framework built on top of Scikit-Learn's ecosystem. It provides a unified interface for building, extending, and comparing any forecasting model, from sklearn-native reductions to statistical models or deep learning integrations and hyperparameter optimization workflows. All models share a consistent API with native DataFrame support, Scikit-Learn-based compositions, and first-class cross-validation.
What are the features of Yohou?
- Polars-native: All data flows use
polars.DataFramewith a mandatory"time"column. No pandas required. - Sklearn-compatible: Standard
fit/predictAPI with a consistent interface across all forecaster types. - Reduction forecasting: Wrap any Scikit-Learn regressor (
Ridge,XGBRegressor, ...) and Yohou handles windowing, tabularization, and recursive prediction viaPointReductionForecaster,IntervalReductionForecaster, andClassProbaReductionForecaster. - Point, interval, and class-probability forecasting: From naive baselines to conformal prediction intervals (
SplitConformalForecaster) and calibrated class-probability distributions. - Panel data: Prefix columns with
group__and all forecasters, transformers, and metrics operate across groups automatically. UseColumnForecasterorLocalPanelForecasterfor per-group models. - Incremental observation: Call
observe()to feed new data,rewind()to roll back state, andobserve_predict()to fast-forward and forecast in one step without retraining. - Stateful transformers: All transformers implement fit/observe/rewind and participate fully in incremental forecasting pipelines, enabling correct state management across training and deployment.
- Composable pipelines: Chain trend, seasonality, and residual forecasters with
DecompositionPipeline, or build feature pipelines withFeaturePipeline,FeatureUnion, andColumnTransformer. - Cross-validation and model selection: Temporal splitters (
ExpandingWindowSplitter,SlidingWindowSplitter) andGridSearchCV/RandomizedSearchCVdesigned for time series with no data leakage. - Metrics: Point, interval, and class-probability scorers with stepwise, vintagewise, componentwise, and groupwise aggregation.
How to install Yohou?
Install the Yohou package using pip:
pip install yohou
or using uv:
uv pip install yohou
or using conda:
conda install -c conda-forge yohou
or using mamba:
mamba install -c conda-forge yohou
or alternatively, add yohou to your requirements.txt or pyproject.toml file.
How to get started with Yohou?
1. Load data and split
Yohou datasets are fetched from Monash/Zenodo and return a Bunch with a .frame attribute (a Polars DataFrame with a "time" column).
from yohou.datasets import fetch_sunspot
bunch = fetch_sunspot()
y = bunch.frame
y_train, y_test = y[:-30], y[-30:]
2. Fit a forecaster
Wrap an sklearn regressor in a PointReductionForecaster with preprocessing pipelines.
from sklearn.linear_model import Ridge
from yohou.compose import FeaturePipeline
from yohou.point import PointReductionForecaster
from yohou.preprocessing import LagTransformer
from yohou.stationarity import SeasonalDifferencing
forecaster = PointReductionForecaster(
estimator=Ridge(alpha=10),
target_transformer=FeaturePipeline([
("diff", SeasonalDifferencing(seasonality=27)),
]),
feature_transformer=FeaturePipeline([
("lag", LagTransformer(lag=[1, 2, 3, 27])),
]),
)
forecaster.fit(y_train, forecasting_horizon=len(y_test))
3. Predict and evaluate
After fitting, call predict and score against the held-out data.
from yohou.metrics import MeanAbsoluteError
from yohou.plotting import plot_forecast
y_pred = forecaster.predict(forecasting_horizon=len(y_test))
scorer = MeanAbsoluteError()
scorer.fit(y_train)
scorer.score(y_test, y_pred)
plot_forecast(y_test, y_pred, y_train=y_train)
How do I use Yohou?
Full documentation is available at https://yohou.readthedocs.io/.
Interactive examples are available in the examples/ directory:
- Online: https://yohou.readthedocs.io/en/latest/pages/examples/
- Locally: Run
marimo edit examples/quickstart.pyto open an interactive notebook
Can I contribute?
We welcome contributions, feedback, and questions:
- Report issues or request features: GitHub Issues
- Join the discussion: GitHub Discussions
- Contributing Guide: CONTRIBUTING.md
If you are interested in becoming a maintainer or taking a more active role, please reach out to the maintainers at .
Where can I learn more?
Here are the main Yohou resources:
- Full documentation: https://yohou.readthedocs.io/
- Interactive Examples: https://yohou.readthedocs.io/en/latest/pages/examples/
For questions and discussions, you can also open a discussion.
License
This project is licensed under the terms of the Apache-2.0 License.
Acknowledgements
We would like to thank Evolta Technologies for their support to the project.
This project is maintained by stateful-y, an ML consultancy specializing in time series data science & engineering. If you're interested in collaborating or learning more about our services, please visit our website.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yohou-0.1.0a9.tar.gz.
File metadata
- Download URL: yohou-0.1.0a9.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
574c99f433d12394f5509090ae31fbedd74e876032f0b5eac85c12a87ce6f840
|
|
| MD5 |
aa0fa2490696375040c483d9141309b9
|
|
| BLAKE2b-256 |
6748991dfa5ffaec758a511cd7e319ca8f2a2fc431653afb1ff63272f71e730f
|
Provenance
The following attestation bundles were made for yohou-0.1.0a9.tar.gz:
Publisher:
publish-release.yml on stateful-y/yohou
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yohou-0.1.0a9.tar.gz -
Subject digest:
574c99f433d12394f5509090ae31fbedd74e876032f0b5eac85c12a87ce6f840 - Sigstore transparency entry: 1573032897
- Sigstore integration time:
-
Permalink:
stateful-y/yohou@e1f74fc964b9fc3a3aeac5cc2d47ee5c774456c9 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/stateful-y
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-release.yml@e1f74fc964b9fc3a3aeac5cc2d47ee5c774456c9 -
Trigger Event:
pull_request
-
Statement type:
File details
Details for the file yohou-0.1.0a9-py3-none-any.whl.
File metadata
- Download URL: yohou-0.1.0a9-py3-none-any.whl
- Upload date:
- Size: 525.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9a2e0820ffbf0878664840db51d7361fecebf69d59cbafbae7408c2ef17776f
|
|
| MD5 |
305b7d4d03a62da210dc1ec7d90ecabc
|
|
| BLAKE2b-256 |
a51127236181b0f9feb7b9ae27340cea24dd310027e0aa719341c6855835ec7e
|
Provenance
The following attestation bundles were made for yohou-0.1.0a9-py3-none-any.whl:
Publisher:
publish-release.yml on stateful-y/yohou
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yohou-0.1.0a9-py3-none-any.whl -
Subject digest:
f9a2e0820ffbf0878664840db51d7361fecebf69d59cbafbae7408c2ef17776f - Sigstore transparency entry: 1573032923
- Sigstore integration time:
-
Permalink:
stateful-y/yohou@e1f74fc964b9fc3a3aeac5cc2d47ee5c774456c9 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/stateful-y
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-release.yml@e1f74fc964b9fc3a3aeac5cc2d47ee5c774456c9 -
Trigger Event:
pull_request
-
Statement type: