Skip to main content
Version: 1.0.0

Datasets

Datasets manage input data for model evaluations. Add uploaded files or Hugging Face data as Dataset Versions, then reuse the same data to run and compare evaluations.


Prerequisites

  • A NuFi project must be selected.
  • JSONL uploads must be 100 MB or smaller.
  • To import private or gated Hugging Face datasets, configure a Hugging Face token in the project settings.

Dataset List

Click Datasets in the left sidebar to view project datasets.

Dataset List

ColumnDescription
NameDataset name and description
CreatedDataset creation time

Use the 삭제 icon at the right side of a row to delete a Dataset. Deletion is available only when the Dataset has no Dataset Versions.

Use Create Dataset to create a new Dataset. At this step you only enter the name and description; add actual data as a Dataset Version from the detail page.

Create Dataset

FieldDescription
NameDataset name. Use lowercase letters, numbers, and hyphens.
DescriptionDataset description

Add a Dataset Version

On the Dataset detail page, click Add Dataset Version. Dataset Version creation is handled as an Import job, and a Dataset can have only one active Import at a time.

Add Dataset Version

File upload

File upload creates a Dataset Version from an uploaded JSONL file. Each line must be one sample, and fields used by evaluation criteria should usually be string columns.

FieldDescription
VersionDataset Version name, such as v1, main, or 2026-06-qa
JSONL fileJSONL file up to 100 MB
DescriptionDataset Version description
{"input": "What is 2+2?", "expected_output": "4"}
{"input": "Capital of France?", "expected_output": "Paris"}

After upload, NuFi processes the file and creates a Dataset Version that can be used for evaluation.

Hugging Face

Hugging Face imports a Dataset from the Hugging Face Hub and creates a Dataset Version.

FieldDescription
VersionDataset Version name, such as v1, main, or 2026-06-qa
RepositoryHugging Face Dataset repo ID, such as openai/gsm8k
Config / subsetDataset config or subset. Leave empty if not needed.
SplitSplit to import, such as train or test
RevisionBranch, tag, or commit SHA. Leave empty to use the default revision.
DescriptionDataset Version description

For private or gated datasets, the dialog shows the project Hugging Face token status. The Import can fail if the token is missing or lacks access.

Hugging Face Dataset input


Import Status

Use the Import History tab on the Dataset detail page to review Dataset Version creation history.

Import History

ColumnDescription
VersionDataset Version name requested by the Import
KindImport method
Source stateImport progress state
MessageError message or source configuration summary
CreatedImport creation time
Source stateMeaning
Pending uploadWaiting for file upload
UploadingBrowser upload in progress
QueuedWaiting for Import Job creation
RunningData processing in progress
ReadyDataset Version creation completed
FailedImport failed. Check the message and logs.

When the Import reaches Ready, the new Dataset Version appears in the Versions tab. Click an Import row to open the Import detail page.

Import Detail

The 생성된 Version 보기 button in the upper-right corner opens the generated Dataset Version detail page.

The top information area shows these items.

ItemDescription
VersionDataset Version name requested by the Import
KindImport method
Source stateImport progress state
Work URLImport work location or temporary work URI
Upload jobFile upload Job name and Logs link
Import jobImport Job name and Logs link
StartedImport start time
CompletedImport completion time
CreatedImport creation time
MessageError message or additional message

The lower Source config section shows the Import source configuration JSON.


Dataset Version Detail

Click a Dataset Version row to open the Dataset Version detail page. The header shows these labels.

LabelDescription
FormatStorage format
Source schemaSource schema version
Ready atTime when the Dataset Version became Ready
CreatedDataset Version creation time
Data URIDataset Version data URI
DescriptionDataset Version description

The Versions tab on the Dataset detail page shows these columns.

ColumnDescription
VersionDataset Version name and description
FormatStorage format
SchemaSource schema version
CreatedDataset Version creation time

Schema Tab

Review columns, types, nullability, and warnings from the profile result. The Evaluation Criteria form uses this schema to suggest input field candidates.

Profile Tab

Review profile results and sample rows. The summary shows these metrics.

ItemDescription
RowsTotal row count
BytesProfiled data size
ColumnsNumber of displayed columns
Sample rowsNumber of rows shown in Row sample

Column summary shows these columns.

ColumnDescription
ColumnColumn name
TypeColumn type
NullsNumber of null values
MissingNumber of missing rows
Null rateNull ratio
CompletenessRatio of rows with values
DistinctEstimated distinct value count
RangeValue range or string length range
Value summaryDistribution summary

Split summary shows row counts by split. Row sample shows up to 100 sample rows in a table, and can be retried if row samples fail to load.

If the profile does not exist yet or failed, use Profile 다시 시도 to create it again.

Evaluation Criteria Tab

Create and manage the evaluation criteria used by this Dataset Version. Criteria are saved for a specific Dataset Version, so even within the same Dataset you should create criteria for the Dataset Version you plan to evaluate. The table title is 평가 기준, and Archived 보기 opens archived criteria. If no criteria exist, the empty state says 등록된 evaluation criteria 가 없습니다.

ColumnDescription
NameEvaluation method name
Task typeEvaluation task type
EvaluatorEvaluation runner
Field mappingInput field and target/reference field mapping
Source stateEvaluation method state
CreatedEvaluation method creation time
ActionsArchive or restore action

Create Evaluation Criteria

On the Dataset Version detail page, click Create Evaluation Criteria.

Create Evaluation Criteria

FieldDescription
NameEvaluation Criteria name
Evaluation Criteria templateEvaluation criteria template, such as Short Answer QA or Text Generation Match
Input fieldDataset column used in the model prompt
Target field / Reference fieldDataset column used as the answer or comparison reference
EvaluatorEvaluation runner
MetricEvaluation metric
Prompt templatePrompt template sent to the model. It must include the {{input}} placeholder.
DescriptionEvaluation Criteria description
Generated config previewPreview of the generated config

The form validates both the Dataset schema and the template requirements. Fields with incompatible types or missing/null values may be excluded from the selectable options.

tip

Evaluation and compile option optimization can only use Ready Dataset Versions and Ready evaluation criteria. Before running evaluations, check the Dataset Version's Schema and Profile tabs to confirm columns were recognized as expected.