mks0813 commited on
Commit
60aaff1
·
verified ·
1 Parent(s): b2276f6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -57
README.md CHANGED
@@ -1,57 +1,55 @@
1
- ---
2
- language:
3
- - en
4
- - ko
5
- license: mit
6
- task_categories:
7
- - text-to-image
8
- tags:
9
- - pixel-art
10
- - image-generation
11
- - fine-tuning
12
- size_categories:
13
- - n<1K
14
- ---
15
-
16
- # Pixel Art Image Dataset
17
-
18
- A dataset of pixel art style images with English prompts, designed for text-to-image model fine-tuning.
19
-
20
- ## Dataset Description
21
-
22
- - **Images**: 492 pixel art style images (1024x1024 PNG)
23
- - **Prompts**: English prompts describing each image with pixel art style suffixes
24
- - **Source**: Generated using Tongyi-MAI/Z-Image-Turbo model
25
- - **Subjects**: Korean-inspired creative subjects translated to English prompts
26
-
27
- ## Dataset Structure
28
-
29
- | Field | Type | Description |
30
- |-------|------|-------------|
31
- | image | Image | Pixel art style image (1024x1024) |
32
- | prompt | string | English prompt used to generate the image |
33
-
34
- ## Usage
35
-
36
- ```python
37
- from datasets import load_dataset
38
-
39
- dataset = load_dataset("mks0813/pixel_image_dataset")
40
-
41
- # Access an example
42
- example = dataset["train"][0]
43
- image = example["image"]
44
- prompt = example["prompt"]
45
-
46
- Prompt Format
47
-
48
- Each prompt follows this structure:
49
- - Subject description in English
50
- - Fixed pixel art style suffix: "large, clearly visible pixels, chunky pixel blocks, low resolution look,
51
- limited color palette, no smooth gradients, no anti-aliasing, no blur, sharp pixel edges, retro 16-bit
52
- game style"
53
-
54
- License
55
-
56
- MIT License
57
- ```
 
1
+ ---
2
+ language:
3
+ - en
4
+ - ko
5
+ license: mit
6
+ task_categories:
7
+ - text-to-image
8
+ tags:
9
+ - pixel-art
10
+ - image-generation
11
+ - fine-tuning
12
+ size_categories:
13
+ - n<1K
14
+ ---
15
+
16
+ # Pixel Art Image Dataset
17
+
18
+ A dataset of pixel art style images with English prompts, designed for text-to-image model fine-tuning.
19
+
20
+ ## Dataset Description
21
+
22
+ - **Images**: 492 pixel art style images (1024x1024 PNG)
23
+ - **Prompts**: English prompts describing each image with pixel art style suffixes
24
+ - **Source**: Generated using Tongyi-MAI/Z-Image-Turbo model
25
+ - **Subjects**: Korean-inspired creative subjects translated to English prompts
26
+
27
+ ## Dataset Structure
28
+
29
+ | Field | Type | Description |
30
+ |-------|------|-------------|
31
+ | image | Image | Pixel art style image (1024x1024) |
32
+ | prompt | string | English prompt used to generate the image |
33
+
34
+ ## Usage
35
+
36
+ ```python
37
+ from datasets import load_dataset
38
+
39
+ dataset = load_dataset("mks0813/pixel_image_dataset")
40
+
41
+ # Access an example
42
+ example = dataset["train"][0]
43
+ image = example["image"]
44
+ prompt = example["prompt"]
45
+ ```
46
+
47
+ ## Prompt Format
48
+
49
+ Each prompt follows this structure:
50
+ - Subject description in English
51
+ - Fixed pixel art style suffix: "large, clearly visible pixels, chunky pixel blocks, low resolution look, limited color palette, no smooth gradients, no anti-aliasing, no blur, sharp pixel edges, retro 16-bit game style"
52
+
53
+ ## License
54
+
55
+ MIT License