File size: 1,735 Bytes
c45a875
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: mit
task_categories:
- text-to-image
language:
- en
size_categories:
- n<1K
configs:
- config_name: default
  data_files:
  - split: test
    path: test.jsonl
---

# Pick-a-Pic v1 — test_unique prompts

The 500 unique prompts from the `test_unique` split of
[Pick-a-Pic v1](https://huggingface.co/datasets/yuvalkirstain/pickapic_v1),
extracted for use as a text-to-image generation prompt set.

This is the split used for the held-out evaluation in the
[PickScore paper](https://arxiv.org/abs/2305.01569)
(*Pick-a-Pic: An Open Dataset of User Preferences for Text-to-Image Generation*).

## Contents

| file | description |
|---|---|
| `test.jsonl` | 500 records: `{"id": int, "prompt": str}` |
| `prompts.txt` | the same 500 prompts, one per line |

Images and human preference labels are **not** included — only the prompts.
For the full data (paired images + preference labels) use the original dataset.

## Usage

```python
from datasets import load_dataset

ds = load_dataset("Jialuo21/pickapic-test", split="test")
print(len(ds))          # 500
print(ds[0]["prompt"])  # 'A curious cat exploring a haunted mansion'
```

## Source

Extracted from the public mirror
[`pickapic-anonymous/pickapic_v1`](https://huggingface.co/datasets/pickapic-anonymous/pickapic_v1)
(`test_unique` split, 500 rows, all prompts unique).

## Citation

```bibtex
@inproceedings{kirstain2023pickapic,
  title     = {Pick-a-Pic: An Open Dataset of User Preferences for Text-to-Image Generation},
  author    = {Kirstain, Yuval and Polyak, Adam and Singer, Uriel and
               Matiana, Shahbuland and Penna, Joe and Levy, Omer},
  booktitle = {Advances in Neural Information Processing Systems (NeurIPS)},
  year      = {2023}
}
```