Upload 2 files
Browse files- .gitattributes +1 -0
- README.md +75 -0
- anime_clean.json +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
anime_clean.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 📦 shikimori-anime-clean-v1
|
| 2 |
+
|
| 3 |
+
**Anime dataset parsed from Shikimori.one — cleaned, filtered, description-only entries.**
|
| 4 |
+
|
| 5 |
+
## Description
|
| 6 |
+
|
| 7 |
+
Dataset of anime titles scraped from [Shikimori.one](https://shikimori.one) — a popular Russian-language anime database. Contains only **completed/released titles** with descriptions, filtered from adult content (hentai, ecchi-heavy) and ongoing series.
|
| 8 |
+
|
| 9 |
+
Suitable for semantic search, recommendation systems, RAG pipelines, and vector databases (e.g. Qdrant).
|
| 10 |
+
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
## Filters applied
|
| 14 |
+
|
| 15 |
+
- Status: `released` only (no ongoing/announced)
|
| 16 |
+
- Has `description` (non-empty)
|
| 17 |
+
- Rating: excluded `rx`, `r+`
|
| 18 |
+
- Kind: `tv`, `movie`, `ova`, `ona` (no music/cm/special spam)
|
| 19 |
+
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
## Schema
|
| 23 |
+
|
| 24 |
+
| Field | Type | Description |
|
| 25 |
+
|---|---|---|
|
| 26 |
+
| `id` | string | Shikimori internal ID |
|
| 27 |
+
| `mal_id` | string | MyAnimeList ID |
|
| 28 |
+
| `name` | string | Original title (romaji) |
|
| 29 |
+
| `russian` | string | Russian title |
|
| 30 |
+
| `synonyms` | list[str] | Alternative titles |
|
| 31 |
+
| `kind` | string | Type: tv / movie / ova / ona |
|
| 32 |
+
| `episodes` | int | Number of episodes |
|
| 33 |
+
| `duration` | int | Episode duration (minutes) |
|
| 34 |
+
| `status` | string | Always `released` |
|
| 35 |
+
| `season` | string | e.g. `fall_2023` |
|
| 36 |
+
| `year` | int | Release year |
|
| 37 |
+
| `score` | float | Shikimori score (0–10) |
|
| 38 |
+
| `rating` | string | Age rating: g / pg / pg_13 / r |
|
| 39 |
+
| `description` | string | Plot summary (in Russian) |
|
| 40 |
+
| `url` | string | Shikimori page URL |
|
| 41 |
+
| `franchise` | string | Franchise/series slug |
|
| 42 |
+
| `poster_url` | string | Poster image URL |
|
| 43 |
+
| `genres` | list[str] | Genres (in Russian) |
|
| 44 |
+
| `themes` | list[str] | Themes (in Russian) |
|
| 45 |
+
| `demographics` | list[str] | Target demographic |
|
| 46 |
+
| `studios` | list[str] | Animation studios |
|
| 47 |
+
| `related` | list[obj] | Related titles with relation type |
|
| 48 |
+
| `main_characters` | list[str] | Main character names |
|
| 49 |
+
| `persons` | list[obj] | Staff with roles |
|
| 50 |
+
| `trailer_url` | string | Trailer link (YouTube/VK) |
|
| 51 |
+
|
| 52 |
+
---
|
| 53 |
+
|
| 54 |
+
## Stats
|
| 55 |
+
|
| 56 |
+
```
|
| 57 |
+
Total entries: 6326 titles
|
| 58 |
+
Languages: Russian (descriptions, titles)
|
| 59 |
+
Source: shikimori.one
|
| 60 |
+
Last updated: 2025
|
| 61 |
+
|
| 62 |
+
Distribution by kind:
|
| 63 |
+
tv 3087 (48.8%)
|
| 64 |
+
movie 1030 (16.3%)
|
| 65 |
+
ova 691 (10.9%)
|
| 66 |
+
special 633 (10.0%)
|
| 67 |
+
ona 572 ( 9.0%)
|
| 68 |
+
tv_special 313 ( 4.9%)
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
+
---
|
| 72 |
+
|
| 73 |
+
## License
|
| 74 |
+
|
| 75 |
+
Data sourced from [Shikimori.one](https://shikimori.one). For research and educational purposes only.
|
anime_clean.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5827d1b909287d583e38eb142c886b536b4925a7006226cb9e19e6da52854ddc
|
| 3 |
+
size 18519376
|