Update README.md
Browse files
README.md
CHANGED
@@ -134,64 +134,42 @@ Below are an example row from metadata-train.parquet.
|
|
134 |
|:---|:---|:---|:---|:---|:---|:---|:---|:---|
|
135 |
|images/train/train_1/1b4b2d61-89c2-4091-a1c0-f547ad5065cb.webp|001324-0093|a magical forest that separates the good world from the dark world, fantasy art by greg rutkowski, loish, rhads, ferdinand knab, makoto shinkai and lois van baarle, ilya kuvshinov, rossdraws, tom bagshaw, global illumination, radiant light, detailed and intricate environment|Outdoor Scenes|9|3|6|6|6|
|
136 |
|
137 |
-
##
|
138 |
|
139 |
-
|
|
|
|
|
|
|
140 |
|
141 |
-
|
|
|
142 |
|
143 |
-
|
|
|
144 |
|
145 |
-
|
|
|
146 |
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
[More Information Needed]
|
152 |
-
|
153 |
-
### Annotations
|
154 |
-
|
155 |
-
#### Annotation process
|
156 |
-
|
157 |
-
[More Information Needed]
|
158 |
-
|
159 |
-
#### Who are the annotators?
|
160 |
-
|
161 |
-
[More Information Needed]
|
162 |
-
|
163 |
-
### Personal and Sensitive Information
|
164 |
-
|
165 |
-
[More Information Needed]
|
166 |
-
|
167 |
-
## Considerations for Using the Data
|
168 |
-
|
169 |
-
### Social Impact of Dataset
|
170 |
-
|
171 |
-
[More Information Needed]
|
172 |
-
|
173 |
-
### Discussion of Biases
|
174 |
-
|
175 |
-
[More Information Needed]
|
176 |
-
|
177 |
-
### Other Known Limitations
|
178 |
-
|
179 |
-
[More Information Needed]
|
180 |
|
181 |
## Additional Information
|
182 |
|
183 |
-
### Dataset Curators
|
184 |
-
|
185 |
-
[More Information Needed]
|
186 |
-
|
187 |
### Licensing Information
|
188 |
|
189 |
-
[
|
|
|
190 |
|
191 |
### Citation Information
|
192 |
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
|
|
|
|
|
|
|
|
|
|
|
134 |
|:---|:---|:---|:---|:---|:---|:---|:---|:---|
|
135 |
|images/train/train_1/1b4b2d61-89c2-4091-a1c0-f547ad5065cb.webp|001324-0093|a magical forest that separates the good world from the dark world, fantasy art by greg rutkowski, loish, rhads, ferdinand knab, makoto shinkai and lois van baarle, ilya kuvshinov, rossdraws, tom bagshaw, global illumination, radiant light, detailed and intricate environment|Outdoor Scenes|9|3|6|6|6|
|
136 |
|
137 |
+
## Loading ImageRewardDB
|
138 |
|
139 |
+
You can use the Hugging Face [Datasets](https://huggingface.co/docs/datasets/quickstart) library to easily load the ImageRewardDB.
|
140 |
+
As we mentioned before, we provide four subsets in the scales of 1k, 2k, 4k, and 8k. You can load them using as following:
|
141 |
+
```python
|
142 |
+
from datasets import load_dataset
|
143 |
|
144 |
+
# Load the 1K-scale dataset
|
145 |
+
dataset = load_dataset("wuyuchen/ImageRewardDB", "1k")
|
146 |
|
147 |
+
# Load the 2K-scale dataset
|
148 |
+
dataset = load_dataset("wuyuchen/ImageRewardDB", "2k")
|
149 |
|
150 |
+
# Load the 4K-scale dataset
|
151 |
+
dataset = load_dataset("wuyuchen/ImageRewardDB", "4K")
|
152 |
|
153 |
+
# Load the 8K-scale dataset
|
154 |
+
dataset = load_dataset("wuyuchen/ImageRewardDB", "8k")
|
155 |
+
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
156 |
|
157 |
## Additional Information
|
158 |
|
|
|
|
|
|
|
|
|
159 |
### Licensing Information
|
160 |
|
161 |
+
The ImageRewardDB dataset is available under the [Apache license 2.0](https://www.apache.org/licenses/LICENSE-2.0.html).
|
162 |
+
The Python code in this repository is available under the [MIT License](https://github.com/poloclub/diffusiondb/blob/main/LICENSE).
|
163 |
|
164 |
### Citation Information
|
165 |
|
166 |
+
```
|
167 |
+
@misc{xu2023imagereward,
|
168 |
+
title={ImageReward: Learning and Evaluating Human Preferences for Text-to-Image Generation},
|
169 |
+
author={Jiazheng Xu and Xiao Liu and Yuchen Wu and Yuxuan Tong and Qinkai Li and Ming Ding and Jie Tang and Yuxiao Dong},
|
170 |
+
year={2023},
|
171 |
+
eprint={2304.05977},
|
172 |
+
archivePrefix={arXiv},
|
173 |
+
primaryClass={cs.CV}
|
174 |
+
}
|
175 |
+
```
|