Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
---
|
|
|
2 |
dataset_info:
|
3 |
features:
|
4 |
- name: prompt
|
@@ -20,4 +21,121 @@ configs:
|
|
20 |
data_files:
|
21 |
- split: train
|
22 |
path: data/train-*
|
|
|
|
|
|
|
|
|
23 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
size_categories: n<1K
|
3 |
dataset_info:
|
4 |
features:
|
5 |
- name: prompt
|
|
|
21 |
data_files:
|
22 |
- split: train
|
23 |
path: data/train-*
|
24 |
+
tags:
|
25 |
+
- synthetic
|
26 |
+
- distilabel
|
27 |
+
- rlaif
|
28 |
---
|
29 |
+
|
30 |
+
<p align="left">
|
31 |
+
<a href="https://github.com/argilla-io/distilabel">
|
32 |
+
<img src="https://raw.githubusercontent.com/argilla-io/distilabel/main/docs/assets/distilabel-badge-light.png" alt="Built with Distilabel" width="200" height="32"/>
|
33 |
+
</a>
|
34 |
+
</p>
|
35 |
+
|
36 |
+
# Dataset Card for img-prefs-distilabel-artifacts-sample
|
37 |
+
|
38 |
+
This dataset has been created with [distilabel](https://distilabel.argilla.io/).
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
## Dataset Summary
|
43 |
+
|
44 |
+
This dataset contains a `pipeline.yaml` which can be used to reproduce the pipeline that generated it in distilabel using the `distilabel` CLI:
|
45 |
+
|
46 |
+
```console
|
47 |
+
distilabel pipeline run --config "https://huggingface.co/datasets/dvilasuero/img-prefs-distilabel-artifacts-sample/raw/main/pipeline.yaml"
|
48 |
+
```
|
49 |
+
|
50 |
+
or explore the configuration:
|
51 |
+
|
52 |
+
```console
|
53 |
+
distilabel pipeline info --config "https://huggingface.co/datasets/dvilasuero/img-prefs-distilabel-artifacts-sample/raw/main/pipeline.yaml"
|
54 |
+
```
|
55 |
+
|
56 |
+
## Dataset structure
|
57 |
+
|
58 |
+
The examples have the following structure per configuration:
|
59 |
+
|
60 |
+
|
61 |
+
<details><summary> Configuration: default </summary><hr>
|
62 |
+
|
63 |
+
```json
|
64 |
+
{
|
65 |
+
"images": [
|
66 |
+
{
|
67 |
+
"path": "artifacts/flux/images/90b884933d23c4d57ca01dbe2898d405.jpeg"
|
68 |
+
},
|
69 |
+
{
|
70 |
+
"path": "artifacts/sdxl/images/90b884933d23c4d57ca01dbe2898d405.jpeg"
|
71 |
+
},
|
72 |
+
{
|
73 |
+
"path": "artifacts/flux_task_2/images/90b884933d23c4d57ca01dbe2898d405.jpeg"
|
74 |
+
}
|
75 |
+
],
|
76 |
+
"models": [
|
77 |
+
"black-forest-labs/FLUX.1-schnell",
|
78 |
+
"stabilityai/stable-diffusion-xl-base-1.0",
|
79 |
+
"black-forest-labs/FLUX.1-schnell"
|
80 |
+
],
|
81 |
+
"prompt": "intelligence"
|
82 |
+
}
|
83 |
+
```
|
84 |
+
|
85 |
+
This subset can be loaded as:
|
86 |
+
|
87 |
+
```python
|
88 |
+
from datasets import load_dataset
|
89 |
+
|
90 |
+
ds = load_dataset("dvilasuero/img-prefs-distilabel-artifacts-sample", "default")
|
91 |
+
```
|
92 |
+
|
93 |
+
Or simply as it follows, since there's only one configuration and is named `default`:
|
94 |
+
|
95 |
+
```python
|
96 |
+
from datasets import load_dataset
|
97 |
+
|
98 |
+
ds = load_dataset("dvilasuero/img-prefs-distilabel-artifacts-sample")
|
99 |
+
```
|
100 |
+
|
101 |
+
|
102 |
+
</details>
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
## Artifacts
|
107 |
+
|
108 |
+
|
109 |
+
* **Step**: `flux`
|
110 |
+
|
111 |
+
* **Artifact name**: `images`
|
112 |
+
|
113 |
+
* `type`: image
|
114 |
+
|
115 |
+
* `library`: diffusers
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
* **Step**: `sdxl`
|
120 |
+
|
121 |
+
* **Artifact name**: `images`
|
122 |
+
|
123 |
+
* `type`: image
|
124 |
+
|
125 |
+
* `library`: diffusers
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
* **Step**: `flux_task_2`
|
130 |
+
|
131 |
+
* **Artifact name**: `images`
|
132 |
+
|
133 |
+
* `type`: image
|
134 |
+
|
135 |
+
* `library`: diffusers
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|