Anime_Characters / README.md
adi2606's picture
Update README.md
16f5030 verified
---
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`
---