DatasetDetail
Dataset Object
idstring
The unique identifier for the dataset
Example:
ds-12345namestring
The name of the dataset
Example:
my_datasetfile_namestring
The name of the file
Example:
dataset.jsonlis_uploadedboolean
Whether the dataset has been uploaded
Example:
trueis_profiledboolean
Whether the uploaded dataset has been profiled
Example:
truecompatible_task_typesstring[]
Example:
["classification"]dataset_download_urlstring
The URL to download the dataset
Example:
s3:/my_datasetupload_bystring
The user ID who uploaded the dataset
Example:
user-12345created_atinteger
The timestamp when the dataset was created
Example:
1633036800updated_atinteger
The timestamp when the dataset was last updated
Example:
1633036800DatasetDetail
{
"id": "ds-12345",
"name": "my_dataset",
"file_name": "dataset.jsonl",
"is_uploaded": true,
"is_profiled": true,
"compatible_task_types": [
"classification"
],
"dataset_download_url": "s3:/my_dataset",
"upload_by": "user-12345",
"created_at": 1633036800,
"updated_at": 1633036800
}