thon | |
from datasets import load_dataset | |
ds = load_dataset("lambdalabs/pokemon-blip-captions") | |
ds | |
bash | |
DatasetDict({ | |
train: Dataset({ | |
features: ['image', 'text'], | |
num_rows: 833 | |
}) | |
}) | |
The dataset has two features, image and text. |
thon | |
from datasets import load_dataset | |
ds = load_dataset("lambdalabs/pokemon-blip-captions") | |
ds | |
bash | |
DatasetDict({ | |
train: Dataset({ | |
features: ['image', 'text'], | |
num_rows: 833 | |
}) | |
}) | |
The dataset has two features, image and text. |