File size: 705 Bytes
e429301
 
 
 
 
 
 
 
e1f9123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e429301
 
55b822c
e75a513
 
 
 
 
 
 
 
 
 
 
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
---
license: cc-by-4.0
task_categories:
- text-to-image
- image-to-image
language:
- en
pretty_name: splash
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
dataset_info:
  features:
  - name: IMAGE_ID
    dtype: string
  - name: CAPTION
    dtype: string
  - name: IMG
    dtype: image
  splits:
  - name: train
    num_bytes: 37969774373.0
    num_examples: 57857
  download_size: 37837578517
  dataset_size: 37969774373.0
---

It can be captioned by [PaliGemma2](https://huggingface.co/google/paligemma2-3b-ft-docci-448)


```python
from datasets import load_dataset
from tqdm import tqdm

dataset = load_dataset("WeiChow/splash")

for item in dataset:
    ...
```