File size: 1,349 Bytes
b19d979
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a8f07c3
b19d979
 
 
 
 
 
 
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
---
dataset_info:
  features:
    - name: source
      dtype: image
    - name: mask
      dtype: image
    - name: target
      dtype: image
    - name: caption
      dtype: string
    - name: category
      dtype: string
  splits:
    - name: train
      num_examples: 89927
    - name: validation
      num_examples: 4989
    - name: test
      num_examples: 5009
license: cc-by-nc-4.0
task_categories:
  - image-to-image
tags:
  - virtual-try-on
  - fashion
  - clothing
---

# OpenVTON

A large-scale virtual try-on dataset containing ~100K clothing image pairs with garment masks.

## Dataset Structure

Each sample contains:
- **source**: Garment image (clothing item)
- **mask**: Garment segmentation mask
- **target**: Person wearing the garment (ground truth)
- **caption**: Text description of the clothing
- **category**: Clothing category (e.g., pants, jeans, shirt)

## Splits

| Split | Samples |
|-------|---------|
| Train | 89,927 |
| Validation | 4,989 |
| Test | 5,009 |
| **Total** | **99,925** |

## Usage

```python
from datasets import load_dataset

dataset = load_dataset("RenxingIntelligence/OpenVTON")
sample = dataset["train"][0]
sample["source"].show()  # garment image
sample["mask"].show()    # segmentation mask
sample["target"].show()  # person wearing garment
print(sample["caption"])
print(sample["category"])
```