Skip to main content
Manage filtered datasets created from your inference data. List available datasets, view details, and download them for training or evaluation. Alias: inf datasets

List Datasets

Display filtered datasets in the active project.
inf dataset list
Alias: inf dataset ls

Options

FlagDescriptionDefault
-l, --limit <n>Maximum number of results20
The output table shows the dataset ID, name, inference count, export status, and creation date.

Get Dataset Details

View detailed information about a specific dataset.
inf dataset get <id>

Arguments

ArgumentRequiredDescription
idYesThe dataset ID
Displays the dataset ID, name, inference count, status, source project, and creation date.

Download a Dataset

Download a filtered dataset as a JSONL file.
inf dataset download <id>

Arguments

ArgumentRequiredDescription
idYesThe dataset ID

Options

FlagDescriptionDefault
-o, --output <path>Output file pathdataset-<id>.jsonl
# Download to the default filename
inf dataset download ds_abc123

# Download to a specific file
inf dataset download ds_abc123 --output ./data/my-dataset.jsonl
The CLI fetches a download URL from the API, downloads the file, and displays the file size when complete.