Datasets:
Create descriptions02.json
Browse files- data/descriptions02.json +21 -0
data/descriptions02.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
descriptions_dict = {
|
| 2 |
+
"Wom61.jpg": "a young girl in pink hair using a fit leather bikini"
|
| 3 |
+
}
|
| 4 |
+
|
| 5 |
+
labels_dict = {
|
| 6 |
+
"Wom61.jpg": "Leather Bikini"
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
data = {
|
| 10 |
+
"image": image_paths,
|
| 11 |
+
"label": labels,
|
| 12 |
+
"description": descriptions
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
features = Features({
|
| 17 |
+
"image": Image(),
|
| 18 |
+
"label": Value("string"),
|
| 19 |
+
"description": Value("string")
|
| 20 |
+
})
|
| 21 |
+
|