File size: 1,623 Bytes
2751f8f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
configs:
- config_name: default
  data_files:
  - split: train
    path: train-*.parquet
  - split: val
    path: val-*.parquet
dataset_info:
  features:
  - name: image
    dtype: image
  - name: caption
    dtype: string
  - name: source
    dtype: string
  - name: split
    dtype: string
  - name: image_id
    dtype: string
  - name: source_index
    dtype: int64
  - name: source_dataset
    dtype: string
  - name: source_split
    dtype: string
  - name: source_url
    dtype: string
  - name: filename
    dtype: string
  - name: width
    dtype: int32
  - name: height
    dtype: int32
  - name: image_sha256
    dtype: string
  - name: caption_index
    dtype: int32
---

# WebMix Parquet

Image-text parquet dataset generated from: `cc12m, datacomp12m, yfcc15m, mscoco`.

Images are stored in the Hugging Face `Image` column format as encoded bytes.
Training rows come from `--sources`; validation/support rows come from
`--eval-sources`.

Generation arguments:

```json
{
  "cache_dir": null,
  "chunk_size": 10000,
  "compression": "zstd",
  "download_max_retries": 5,
  "download_num_proc": 8,
  "eval_sources": [
    "mscoco"
  ],
  "hf_num_proc": 1,
  "image_format": "jpeg",
  "jpeg_quality": 90,
  "limit_per_source": null,
  "log_every": 10000,
  "min_image_size": 16,
  "multiprocessing_context": "fork",
  "num_proc": 16,
  "out_dir": "data/webmix_parquet",
  "overwrite": false,
  "resume": true,
  "rows_per_shard": 100000,
  "sources": [
    "cc12m",
    "datacomp12m",
    "yfcc15m"
  ],
  "url_concurrency": 16,
  "url_retries": 4,
  "url_timeout": 10,
  "worker_maxtasksperchild": 100
}
```