Skip to main content
Synthefy ships two packages. Pick by what you want to do:
I want to…InstallImport
Run Nori locally (open-source, GPU or CPU)pip install synthefy-norifrom synthefy_nori import NoriRegressor
Call hosted Nori (no GPU)pip install synthefyfrom synthefy import SynthefyNoriClient
Time-series forecastingpip install synthefyfrom synthefy import SynthefyAPIClient
  • synthefy-nori is the open-source tabular model. It downloads pretrained weights from Hugging Face and runs locally with a scikit-learn–style API. Start here for tabular regression.
  • synthefy is the client for the hosted platform — hosted Nori and time-series forecasting.
Both give you Nori. Use synthefy-nori to run the model yourself; use synthefy to call it (or the forecasting API) over the network.

Optional extras

Install only what a task needs — these are add-ons to synthefy-nori:
CommandAddsFor
pip install "synthefy-nori[interpretability]"shapiqSHAP / feature attribution
pip install "synthefy-nori[eval]"matplotlib, openmlreproducing the benchmarks
pip install "synthefy-nori[train]"wandb, xgboosttraining from scratch

Develop from source

git clone https://github.com/Synthefy/synthefy-nori
cd synthefy-nori
uv sync --extra dev

Next: Nori Quickstart

Fit and predict in five lines.