Skip to main content

Create Dataset

POST 

/api/2/auto_eval/dataset/create

Create a Dataset, such as application traces. Currently limited to a maximum size of 100MB. At least one of 'input', 'output' and 'ground_truth' columns are required.

Request

Body

    name string

    Human-readable name for the dataset, if one exists.

    description string

    Human-readable description of the dataset, if one exists.

    isFewShotExamples boolean

    PseudoLabel job fields.

    isActiveLabels boolean

Responses

Successful operation

Schema

    dataset

    object

    required

    The columns present in the latest DatasetFile for this dataset

    id

    object

    required

    value stringrequired
    createdAt date-timerequired
    updatedAt date-timerequired
    name string

    Human-readable name for the dataset, if one exists.

    description string

    Human-readable description of the dataset, if one exists.

    ownerUserId

    object

    required

    value stringrequired
    numRows integerrequired

    Possible values: >= -9223372036854776000 and <= 9223372036854776000

    numCols integerrequired

    Possible values: >= -9223372036854776000 and <= 9223372036854776000

    initializationStatus stringrequired
    initializationError string
    labelingStatus string

    The status of the latest general pseudo-labeling job for the dataset

    columns

    object[]

    required

    The columns present in the latest DatasetFile for this dataset

  • Array [

  • id

    object

    required

    value stringrequired
    createdAt date-timerequired
    updatedAt date-timerequired
    index integerrequired

    Index of the column within the dataset file.

    Possible values: >= -9223372036854776000 and <= 9223372036854776000

    literalName stringrequired

    The literal name for the column.

    dtype string
  • ]

Loading...