How to import car196 in salad detector

Hi! I am unable to figure out how to use car196 labeled dataset for object detection can you please help me out.

You can import car196 dataset as shown below

import tensorflow as tf
import tensorflow_datasets as tfds

(train_ds, val_ds, test_ds), metadata = tfds.load(
'cars196',
split=['train[:80%]', 'train[80%:]', 'test'],
with_info=True)

Why do you want to import car196 in a salad detector?