Download Dataset Segment

You can use the dataset object to download one or more segments of the dataset.

Download Dataset Segment in the active workspace

import markov

# Fetch registered dataset by id
dataset = markov.dataset.get_by_id("<paste_dataset_id_here")

# download the train segment of the dataset
dataset.train.download_as_csv(filepath="train.csv")
circle-info

Note: If filepath is not provided, we persist in the current directory with the name uploaded by the user during dataset registration.

Last updated