File size: 1,647 Bytes
60aaff1
 
 
 
 
 
 
 
 
 
 
 
 
d09a869
 
 
 
 
 
 
 
 
 
 
 
 
544aced
d09a869
544aced
 
60aaff1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
language:
- en
- ko
license: mit
task_categories:
- text-to-image
tags:
- pixel-art
- image-generation
- fine-tuning
size_categories:
- n<1K
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
dataset_info:
  features:
  - name: image
    dtype: image
  - name: prompt
    dtype: string
  splits:
  - name: train
    num_bytes: 468840177
    num_examples: 492
  download_size: 468840369
  dataset_size: 468840177
---

# Pixel Art Image Dataset

A dataset of pixel art style images with English prompts, designed for text-to-image model fine-tuning.

## Dataset Description

- **Images**: 492 pixel art style images (1024x1024 PNG)
- **Prompts**: English prompts describing each image with pixel art style suffixes
- **Source**: Generated using Tongyi-MAI/Z-Image-Turbo model
- **Subjects**: Korean-inspired creative subjects translated to English prompts

## Dataset Structure

| Field | Type | Description |
|-------|------|-------------|
| image | Image | Pixel art style image (1024x1024) |
| prompt | string | English prompt used to generate the image |

## Usage

```python
from datasets import load_dataset

dataset = load_dataset("mks0813/pixel_image_dataset")

# Access an example
example = dataset["train"][0]
image = example["image"]
prompt = example["prompt"]
```

## Prompt Format

Each prompt follows this structure:
- Subject description in English
- 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"

## License

MIT License