--- license: apache-2.0 task_categories: - image-classification - text-classification - zero-shot-classification tags: - e-commerce - product-categorization - taxonomy - multimodal - shopify - retail - product-catalog size_categories: - 10K Computers > Laptops Home & Garden > Kitchen & Dining > Cookware ``` ### Data Splits | Split | Samples | Percentage | |-------|---------|------------| | Train | 38,631 | 80% | | Test | 9,658 | 20% | ## Usage ```python from datasets import load_dataset dataset = load_dataset("Shopify/product-catalogue") # Access splits train_data = dataset["train"] test_data = dataset["test"] # Example sample = train_data[0] print(f"Title: {sample['product_title']}") print(f"Category: {sample['ground_truth_category']}") sample['product_image'].show() ``` ## Evaluation The primary task is to predict the `ground_truth_category` given the product's image, title, and optionally description/brand. Suggested metrics: - Hierarchical F1 for categories - Precision and recall for brand and is_secondhand ## Source Products were sampled from Shopify's merchant catalog, representing real e-commerce products across diverse categories and industries. ## License Apache 2.0 ## Citation ```bibtex @dataset{product-catalogue, title={The Catalogue: Product Taxonomy Classification Benchmark}, author={Shopify}, year={2025}, publisher={Hugging Face}, url={https://huggingface.co/datasets/Shopify/the-catalogue-public-beta} } ```