Stanford Cars
Canonical2papers using it
195HF downloads
3HF likes
2017first seen
Code snippet to visualise the position of the box import matplotlib.image as img import matplotlib.pyplot as plt from datasets import load_dataset from matplotlib.patches import Rectangle # Load dataset ds_name = "SaulLu/Stanford-Cars" ds = load_dataset(ds_name, use_auth_token=True) # Extract information for the sample we want to show index = 100 sample = ds["train"][index] box_coord = sample["bbox"][0] img_path = sample["image"].filename # Create plot # define Matplotlib figure and⦠See the full description on the dataset page: https://huggingface.co/datasets/HuggingFaceM4/Stanford-Cars.