khanitachi commited on
Commit
b5ea811
·
verified ·
1 Parent(s): ab1c7f8

Add data descriptions

Browse files
Files changed (1) hide show
  1. README.md +52 -1
README.md CHANGED
@@ -19,4 +19,55 @@ configs:
19
  license: apache-2.0
20
  language:
21
  - en
22
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  license: apache-2.0
20
  language:
21
  - en
22
+ ---
23
+ # Dataset Card for One Piece Image Dataset
24
+
25
+ ## Metadata
26
+
27
+ * **Identifier:** `OnePiece_Characters`
28
+ * **Contributions:** Mohd Hozaifa Khan
29
+ * **License:** apache-2.0
30
+
31
+ ## Dataset Description
32
+
33
+ This dataset contains images of famous One Piece characters scraped from the web using simple image search. It includes approximately 15 images per character for a total of 20 characters.
34
+
35
+ ## Intended Use
36
+
37
+ This dataset is intended for educational and research purposes, including:
38
+
39
+ * **Image classification:** Train models to recognize different One Piece characters.
40
+ * **Image generation:** Fine-tune text-to-image models to generate images of One Piece characters.
41
+
42
+ ## Format
43
+
44
+ The dataset is organized as follows:
45
+
46
+ * **Data Folder:** `one_piece_images`
47
+ * `train`: Contains all the images, named as `character_name_index.jpg`.
48
+ * **Metadata File:** `metadata.jsonl`
49
+ * Contains metadata for each image, with each line being a JSON object containing:
50
+ * `file_name`: The name of the image file. (type: string)
51
+ * `text`: A caption or description of the image. (type: string)
52
+
53
+ ## Features
54
+
55
+ * **image (jpg):** The image of the One Piece character. (expected type: PIL Image, JPG format)
56
+ * **text (str):** A caption or description of the image. (expected type: string)
57
+
58
+ ## Slices
59
+
60
+ The dataset is split into a single training split (`train`).
61
+
62
+ ## Acknowledgements
63
+
64
+ This dataset uses images primarily from Google Images. Used `simple_image_download` for downloading images using character queries.
65
+
66
+ ## BibTeX citation
67
+
68
+ ```bibtex
69
+ @misc{OnePiece_Characters,
70
+ title={One Piece Characters Image Dataset},
71
+ author={khanitachi},
72
+ year={2024}
73
+ }