File size: 10,507 Bytes
6e18f98 c7e95fb b1ba73c 1978038 c7e95fb 1978038 1826877 c7e95fb 1826877 c7e95fb 1826877 c7e95fb 1826877 c7e95fb 1826877 c7e95fb 1826877 c7e95fb 1826877 c7e95fb 1826877 c7e95fb 1826877 c7e95fb 1826877 c7e95fb f10f289 c7e95fb f10f289 c7e95fb f10f289 c7e95fb f10f289 c7e95fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 | ---
license: cc-by-nc-4.0
language:
- en
task_categories:
- tabular-classification
- text-classification
tags:
- b2b-data
- enterprise-data
- web-scraping
- octoparse-data-service
- production-ready
- ecommerce
- product-matching
- visual-matching
- entity-resolution
- pricing-intelligence
pretty_name: E-commerce Visual Matching Dataset
configs:
- config_name: candidate_workflow
data_files:
- split: train
path: visual_matching_workflow_sample_1000.csv
- config_name: product_summary
data_files:
- split: train
path: product_summary_sample.csv
---
# E-commerce Visual Matching Dataset
**Candidate match workflow dataset for product identity resolution, visual similarity, and review decision fields.**
A public-safe workflow preview of how Octoparse structures AI-assisted product matching pipelines for e-commerce and pricing teams. Every row represents a candidate pair evaluation — the same structure delivered to production clients.
Built by **[Octoparse Managed Data Service](https://www.octoparse.com/data-service/ai-visual-product-matching)** — managed web data pipelines for pricing intelligence and catalog teams.
> **Public-safe proof, not raw client data.** Source product IDs, retailer names, and image URLs have been masked or replaced with workflow tokens. This dataset is designed to show schema, field naming, QA context, and delivery format. Final production pipelines are scoped per customer and delivered under agreed terms.
### Enterprise Data Pipelines & Production-Grade Delivery
> This dataset is a curated, static sample provided by **[Octoparse Managed Data Service](https://www.octoparse.com/data-service)**.
> If your organization requires:
> - **Real-time automated updates**: Daily/Hourly feeds via API, Snowflake, AWS S3, or BigQuery
> - **Custom schema alignment** and production-grade anti-bot operations with 99.9% SLA-backed delivery
> - **Compliance-aware data delivery workflows** for public or properly authorized data, with support for GDPR/CCPA-aligned requirements
>
> **[Request a Custom Data Pipeline Workshop on Octoparse Data Service](https://www.octoparse.com/data-service)**
---
## Why This Dataset
Most product matching datasets available publicly are:
- **Flat and unstructured** — raw scraped listings without match decisions or rejection reasons
- **Benchmark-only** — built for model accuracy evaluation, not production workflow design
- **Missing QA context** — no confidence scores, reject reasons, or review routing logic
This dataset is different:
- **Candidate-pair schema** — each row is a source↔candidate evaluation, not a raw product listing
- **Match decisions included** — `match_status` captures the final output: accepted, rejected, or needs review
- **Reject reasons structured** — `reject_reason` shows why candidates were declined, enabling workflow analysis
- **Review notes present** — `review_note` captures QA context for borderline cases
---
## Dataset Structure
```
ecommerce-visual-matching-dataset/
├── visual_matching_workflow_sample.csv ← Candidate-pair workflow rows
├── schema.json ← Machine-readable field definitions
├── data_dictionary.md ← Business context for every field
└── LICENSE ← CC BY-NC 4.0
```
### Core Fields
| Field | Type | Description |
|---|---|---|
| `source_product_id` | string | Masked identifier for the source product being matched |
| `candidate_product_id` | string | Masked identifier for the candidate product retrieved |
| `similarity_score` | float | Visual similarity score (0.0–1.0) from image matching model |
| `match_status` | string | Final decision: `accepted`, `rejected`, `needs_review` |
| `reject_reason` | string | Structured rejection category (null for accepted matches) |
| `review_note` | string | QA annotation for borderline or escalated candidates |
### `match_status` Values
| Value | Meaning |
|---|---|
| `accepted` | Candidate confirmed as the same or equivalent product |
| `rejected` | Candidate declined — see `reject_reason` |
| `needs_review` | Low confidence or conflicting signals — routed to analyst |
### `reject_reason` Categories
| Value | Meaning |
|---|---|
| `different_product` | Visually similar but distinct item |
| `different_variant` | Same product line, incompatible variant (size, color, spec) |
| `image_quality` | Source or candidate image insufficient for visual comparison |
| `low_confidence` | Similarity score below threshold with no confirming text signal |
| `title_conflict` | Image match but title/model-number contradiction |
---
## Quick Start
```python
import pandas as pd
df = pd.read_csv("visual_matching_workflow_sample.csv")
# Output bucket distribution
print(df["match_status"].value_counts())
# Rejection reason breakdown
rejected = df[df["match_status"] == "rejected"]
print(rejected["reject_reason"].value_counts())
# Similarity score distribution by decision
print(df.groupby("match_status")["similarity_score"].describe())
# Review queue — candidates needing human judgment
review_queue = df[df["match_status"] == "needs_review"]
print(f"{len(review_queue)} candidates routed to review")
# Accepted matches with high confidence
high_confidence = df[(df["match_status"] == "accepted") & (df["similarity_score"] >= 0.85)]
print(f"{len(high_confidence)} high-confidence accepted matches")
```
---
## What This Dataset Answers
**What is AI visual product matching?**
Visual product matching is the process of determining whether products listed across different retailer, marketplace, or competitor sites refer to the same item — using image similarity, text signals, and structured QA to produce an explainable match decision.
**Why does matching require more than image similarity?**
A high `similarity_score` alone is not sufficient. Products can look nearly identical but differ in model number, size, or spec. This workflow combines visual similarity with title validation and structured rejection reasons to produce decisions a pricing team can act on.
**What does a production matching output look like?**
This dataset shows the candidate-pair output format: each row is a source↔candidate evaluation with a similarity score, a match decision, a rejection reason if applicable, and a review note for borderline cases. This is the data contract delivered to production clients.
**How should downstream systems consume match decisions?**
- `accepted` rows feed directly into pricing intelligence or catalog deduplication
- `needs_review` rows route to an analyst queue for QA
- `rejected` rows with `reject_reason` can be used to tune retrieval thresholds
---
## Use Cases
### 1. Competitor Price Monitoring
Use accepted matches to build a cross-retailer price comparison table. `source_product_id` maps your catalog; `candidate_product_id` maps competitor listings. Accepted rows give you the joined dataset for price delta analysis.
### 2. Catalog Deduplication
Use `match_status = accepted` + `similarity_score` to identify duplicate or equivalent listings in a multi-source product catalog. `reject_reason = different_variant` helps separate true duplicates from variant siblings.
### 3. Matching Pipeline Evaluation
Use the full candidate-pair schema to design or evaluate your own matching pipeline. The `reject_reason` distribution shows where retrieval methods fail and where visual scoring succeeds.
### 4. Review Queue Design
Use `needs_review` rows + `review_note` to design analyst escalation logic. The notes show what information a QA analyst needs to resolve low-confidence candidates.
### 5. AI Model Training Data Structure
Use the schema as a template for structuring your own training data. The `similarity_score` + `match_status` pairing provides a label structure for fine-tuning multimodal classifiers.
---
## Data Limitations
| Limitation | Detail |
|---|---|
| Public-safe only | Source and candidate IDs, retailer names, and image URLs are masked |
| Workflow preview | This is not a complete production export. Row count is representative, not exhaustive |
| No raw images | Image URLs are not included in this public release |
| Score calibration | `similarity_score` thresholds are illustrative; production thresholds are scoped per client catalog |
| Not for benchmarking | Do not use to claim measured model accuracy on real catalog data |
---
## Related Resources
- **Service page:** [AI Visual Product Matching Service](https://www.octoparse.com/data-service/ai-visual-product-matching)
- **Automotive case study:** [Automotive Parts Matching — Extreme Dimensions](https://www.octoparse.com/data-service/ai-visual-product-matching/automotive-parts-case-study)
- **Retail case study:** [Retail Product Matching Workflow](https://www.octoparse.com/data-service/ai-visual-product-matching/retail-product-matching)
- **Data Service hub + sample library:** [Octoparse Data Service](https://www.octoparse.com/data-service#sample-library)
- **Paired Kaggle dataset:** [ecommerce-visual-matching-dataset on Kaggle](https://www.kaggle.com/datasets/octoparsedataservice/ecommerce-visual-matching-dataset)
---
## Want Production-Scale Visual Matching?
This is a **sample dataset**. If your team needs:
- **Cross-retailer product matching** at scale (thousands of SKUs per day)
- **Automotive, furniture, electronics, or apparel** catalog matching
- **Similarity scoring + QA review routing** with structured rejection reasons
- **Delivery to Snowflake, BigQuery, or S3** in CSV, Parquet, or JSONL
→ **[Talk to Octoparse Managed Data Service](https://www.octoparse.com/data-service/ai-visual-product-matching)**
We scope the matching workflow, handle retrieval and scoring, and deliver reviewed outputs your pricing or catalog team can act on directly.
---
## Citation
```bibtex
@dataset{octoparse_visual_matching_2025,
title = {E-commerce Visual Matching Dataset},
author = {{Octoparse Managed Data Service}},
year = {2025},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/Octoparse/ecommerce-visual-matching-dataset},
license = {CC BY-NC 4.0},
note = {Public-safe candidate-pair workflow dataset for AI visual product matching and pricing intelligence}
}
```
---
*Built by [Octoparse Managed Data Service](https://www.octoparse.com/data-service) · [LinkedIn](https://www.linkedin.com/company/octoparse)*
|