Querying Details About a Dataset
Obtain details about a dataset, including the samples and versions of the dataset.
dataset.get_dataset_info()
Sample Code
from modelarts.session import Session from modelarts.dataset import Dataset session = Session() dataset = Dataset(session, dataset_id) dataset_info = dataset.get_dataset_info() print(dataset_info) # Output the detailed information about the dataset.
Parameters
None
Last Article: Creating a Dataset
Next Article: Modifying a Dataset
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.