File size: 1,733 Bytes
63b6246
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fe4e5b5
 
 
63b6246
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: other
license_name: fair-1.0.0
license_link: LICENSE
task_categories:
  - text-to-image
tags:
  - pixel-art
  - sprites
  - game-assets
  - 2d-sprites
  - text-to-image
size_categories:
  - 100K<n<1M
---

# Alucard Sprites

A curated dataset of pixel art sprites at 128x128 RGBA resolution with text captions, built for training the [Alucard](https://github.com/evilsocket/alucard) text-to-sprite generative model.

Each sprite has been individually normalized (multi-sprite grids split into individual sprites, tight-cropped and centered) and captioned using CLIP zero-shot classification describing sprite type, color, size, and view angle.

## Dataset Details

| Property | Value |
|----------|-------|
| Resolution | 128x128 RGBA |
| Format | Parquet with embedded images |
| Columns | `image` (PNG bytes), `text` (caption) |

## Usage

### With Alucard (training)

```bash
pip install git+https://github.com/evilsocket/alucard.git
```

### With HuggingFace datasets

```python
from datasets import load_dataset

ds = load_dataset("evilsocket/alucard-sprites")
sample = ds["train"][0]
print(sample["text"])  # caption
sample["image"].show()  # PIL Image
```

## License

Released under the [FAIR License (Free for Attribution and Individual Rights) v1.0.0](LICENSE).

- **Non-commercial use** (personal, educational, research, non-profit) is freely permitted under the terms of the license.
- **Commercial use** (SaaS, paid apps, any monetization) requires visible attribution to the project and its author. See the [license](LICENSE) for details.
- **Business use** (any use by or on behalf of a business entity) requires a signed commercial agreement with the author. Contact `evilsocket@gmail.com` for inquiries.