Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.29 KB

File metadata and controls

32 lines (23 loc) · 1.29 KB

DatasetImportCreate

Properties

Name Type Description Notes
name str Human-readable name for the dataset.
hf_dataset_id str Hugging Face dataset identifier, e.g. ``databricks/databricks-dolly-15k``.
split str Hugging Face split to import (default: ``train``). [optional] [default to 'train']
config_name str Optional Hugging Face config/subset name. [optional]

Example

from saturn_api.models.dataset_import_create import DatasetImportCreate

# TODO update the JSON string below
json = "{}"
# create an instance of DatasetImportCreate from a JSON string
dataset_import_create_instance = DatasetImportCreate.from_json(json)
# print the JSON string representation of the object
print(DatasetImportCreate.to_json())

# convert the object into a dict
dataset_import_create_dict = dataset_import_create_instance.to_dict()
# create an instance of DatasetImportCreate from a dict
dataset_import_create_from_dict = DatasetImportCreate.from_dict(dataset_import_create_dict)

[Back to Model list] [Back to API list] [Back to README]