TheDocumentation Index
Fetch the complete documentation index at: https://kumo.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
kumoai.utils module provides helpers for loading sample datasets and visualizing model outputs.
Datasets
from_relbench()
Creates a Kumo Graph from a RelBench benchmark dataset. The function downloads the dataset, uploads its tables to the Kumo data plane, and constructs a Graph with inferred metadata and edges.
This function is subject to the file size limits of
FileUploadConnector. See the Connectors guide for details.The name of the RelBench dataset to load (e.g.
"rel-amazon", "rel-trial").Graph — A Graph containing the dataset’s tables and inferred edges.
Raises ValueError if the dataset cannot be retrieved or processed.
Visualization
ForecastVisualizer
An interactive visualization tool for inspecting forecast results produced by a trained Kumo model. Renders time series plots with actuals vs. predictions and residual diagnostics for each entity.
The holdout dataset from a
TrainingJobResult. Obtain via TrainingJobResult.holdout_df().