Key Features
Automatic TEE Detection
Column Filtering
from delong_datasets import download_dataset, DownloadOptions
opts = DownloadOptions(columns=["patient_id", "diagnosis"])
data = download_dataset("<dataset_id>", token, opts)Streaming Large Datasets
opts = DownloadOptions(stream=True)
dataset = download_dataset("<dataset_id>", token, opts)
for batch in dataset.iter(batch_size=1000):
process(batch)Multiple Export Formats
Last updated

