Script to download and use the dataset:
from datasets import load_dataset
from huggingface_hub import hf_hub_download
import os
from zipfile import ZipFile
from PIL import Image
1. Load products and reviews datasets
products = load_dataset("allietran/CAMEO", "products", split="test")
reviews = load_dataset("allietran/CAMEO", "reviews", split="test")
2. Download the images
zip_path = hf_hub_download(repo_id="allietran/CAMEO", filename="images.zip", repo_type="dataset")