> ## Documentation Index
> Fetch the complete documentation index at: https://docs.synthefy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Nori

> Predict on any table in seconds, with no training.

<Hero title="Nori by Synthefy" subtitle="A tabular foundation model — predict on any table in seconds, with no training." primaryAction={{ text: 'Quickstart', link: '/nori/quickstart' }} secondaryAction={{ text: 'See examples', link: '/nori/examples' }} />

**Nori** is a tabular foundation model for **regression** via in-context
learning: give it a few labeled rows as context and it predicts new rows in a
single forward pass — no task-specific training or fine-tuning.

```python theme={null}
from synthefy_nori import NoriRegressor

model = NoriRegressor(model="nori-30m")          # downloads pretrained weights on first use
model.fit(X_train, y_train)      # "fit" just stores the labeled context — no training
preds = model.predict(X_test)    # predictions in a single forward pass
```

## Choose how to run it

<CardGroup cols={2}>
  <Card title="Run it locally" icon="laptop" href="/nori/quickstart#local">
    Install the open-source package and predict on your own machine. No key, no
    GPU required.
  </Card>

  <Card title="Call the hosted API" icon="cloud" href="/nori/quickstart#api">
    Send rows to our endpoint and get predictions back. No install, no GPU.
  </Card>
</CardGroup>

## Why Nori

<CardGroup cols={3}>
  <Card title="No training" icon="bolt">
    Pretrained once; predict in seconds. No per-dataset training loop.
  </Card>

  <Card title="Works cold-start" icon="seedling">
    Strong predictions from a handful of rows.
  </Card>

  <Card title="Uncertainty, free" icon="chart-column">
    A full predictive distribution — quantiles and prediction intervals out of
    the box.
  </Card>

  <Card title="Familiar API" icon="code">
    A scikit-learn–style `fit` / `predict` estimator.
  </Card>

  <Card title="Explainable" icon="magnifying-glass">
    SHAP, partial dependence, and feature selection built in.
  </Card>

  <Card title="Runs anywhere" icon="server">
    Locally (open-source, GPU or CPU) or via the hosted API.
  </Card>
</CardGroup>

## Next steps

<CardGroup cols={2}>
  <Card title="Install" icon="download" href="/setup/installation">
    Pick the right package in one table.
  </Card>

  <Card title="Quickstart" icon="rocket" href="/nori/quickstart">
    Fit and predict in five lines.
  </Card>

  <Card title="API key" icon="key" href="/setup/api_key">
    Set up a key for the hosted API.
  </Card>

  <Card title="Support" icon="life-ring" href="mailto:support@synthefy.com">
    Email our team.
  </Card>
</CardGroup>
