|
|
--- |
|
|
license: mit |
|
|
--- |
|
|
## π Dataset Summary |
|
|
|
|
|
This dataset features **1,941 anime character images**, neatly organized into **322 folders**, each representing a different anime series π. |
|
|
|
|
|
- π¦ **Size of downloaded files**: 152 MB |
|
|
- πͺ **Size of auto-converted Parquet files**: 151 MB |
|
|
- π **Split**: Train only |
|
|
- π **Classes**: 322 unique anime titles |
|
|
|
|
|
Perfect for **image classification**, **anime recommendation systems**, and **visual style analysis**! π¨β¨ |
|
|
|
|
|
--- |
|
|
|
|
|
## π Supported Tasks |
|
|
|
|
|
- πΌοΈ **Image Classification**: Predict the anime title based on a character image. |
|
|
- π **Visual Similarity Retrieval**: Find visually similar anime styles. |
|
|
- π οΈ **Model Fine-tuning**: Customize vision models (ViT, ConvNeXt, etc.) for anime domains. |
|
|
|
|
|
--- |
|
|
|
|
|
## ποΈ Dataset Structure |
|
|
|
|
|
### π Directory Layout |
|
|
|
|
|
``` |
|
|
Anime_Characters/ |
|
|
βββ dataset/ |
|
|
β βββ .hack__G.U. Returner/ |
|
|
β β βββ Haseo.png |
|
|
β β βββ Ovan.png ... |
|
|
β βββ Air Gear/ |
|
|
β β βββ Onigiri.png ... |
|
|
β βββ Bleach/ |
|
|
β β βββ Ichigo Kurosaki.png ... |
|
|
β βββ (other anime folders...) |
|
|
βββ anime_characters_dataset.json |
|
|
βββ .gitignore |
|
|
βββ README.md |
|
|
``` |
|
|
|
|
|
Each folder inside `dataset/` represents an **anime class**, and contains images of characters from that anime. πΈ |
|
|
|
|
|
--- |
|
|
|
|
|
## π Metadata (anime_characters_dataset.json) |
|
|
|
|
|
The file `anime_characters_dataset.json` contains a list of all images and their associated labels. |
|
|
|
|
|
--- |
|
|
|
|
|
## π’ Data Fields |
|
|
|
|
|
- `image_path` β‘οΈ Path to the character image. |
|
|
- `label` β‘οΈ Anime series title (class label). |
|
|
|
|
|
--- |
|
|
|
|
|
## π Data Splits |
|
|
|
|
|
| Split | Number of Images | |
|
|
|------|------------------| |
|
|
| Train | 1,941 | |
|
|
|
|
|
π *Note: No official validation/test split is provided β users can create their own!* |
|
|
|
|
|
--- |
|
|
|
|
|
## π Usage Example |
|
|
|
|
|
```python |
|
|
import json |
|
|
|
|
|
# Load the metadata |
|
|
with open('anime_characters_dataset.json', 'r') as f: |
|
|
data = json.load(f) |
|
|
|
|
|
# Example usage |
|
|
print(data[0]) |
|
|
``` |
|
|
|
|
|
|
|
|
--- |
|
|
|
|
|
## βοΈ Licensing |
|
|
|
|
|
β οΈ **Important**: |
|
|
This dataset may include content protected by copyright. |
|
|
|
|
|
It is intended strictly for **educational, research, or non-commercial use** under fair use laws. |
|
|
Always verify before commercial usage! π |
|
|
|
|
|
--- |
|
|
|
|
|
## π Additional Notes |
|
|
|
|
|
- The dataset includes **raw images** and **JSON metadata**. |
|
|
- Images have been auto-converted to **Parquet** format for Hugging Face Dataset Viewer. |
|
|
- π Anime_Characters: |
|
|
- `dataset/` |
|
|
- `anime_characters_dataset.json` |
|
|
- `.gitignore` |
|
|
- `README.md` |
|
|
|
|
|
--- |
|
|
|