a13team commited on
Commit
233a17c
·
verified ·
1 Parent(s): 7705730

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +91 -0
README.md ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - no-annotation
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - en
8
+ - ru
9
+ license: unknown
10
+ multimodal:
11
+ - text
12
+ - tabular
13
+ pretty_name: Shikimori Dataset
14
+ size_categories:
15
+ - n_10K
16
+ source_datasets:
17
+ - original
18
+ task_categories:
19
+ - tabular-regression
20
+ task_ids:
21
+ - tabular-multi-class-classification
22
+ ---
23
+
24
+ # Shikimori Dataset
25
+
26
+ Anime database from [Shikimori](https://shikimori.one) with user ratings, suitable for recommender systems and ML research.
27
+
28
+ ## Dataset Structure
29
+
30
+ The dataset contains **3 separate data files**:
31
+
32
+ ### anime.parquet / anime.jsonl (9,950 entries)
33
+ Anime titles with metadata.
34
+ | Field | Type | Description |
35
+ |-------|------|-------------|
36
+ | id | int | Shikimori anime ID |
37
+ | name | string | English name |
38
+ | russian | string | Russian name |
39
+ | description | string | Synopsis (BBCode) |
40
+ | score | float | Average community score |
41
+ | rating | string | Age rating (g, pg_13, r, etc.) |
42
+ | episodes | int | Total episodes |
43
+ | episodes_aired | int | Aired episodes (for ongoing) |
44
+ | duration | int | Episode duration in minutes |
45
+ | genres | dict | Genre IDs and names |
46
+ | season | string | Season (e.g. fall_2023) |
47
+ | aired_on | string | Premiere date |
48
+ | released_on | string | Release date |
49
+ | status | string | released/ongoing/anons |
50
+ | studios | dict | Studio info |
51
+ | is_censored | bool | Censored flag |
52
+
53
+ ### users_rates.parquet / users_rates.jsonl (67,071 entries)
54
+ User anime viewing history and ratings.
55
+ | Field | Type | Description |
56
+ |-------|------|-------------|
57
+ | id | int | Rate ID |
58
+ | user_id | int | Shikimori user ID |
59
+ | anime_id | int | Anime ID |
60
+ | score | int | User's score (0 = unset) |
61
+ | episodes | int | Episodes watched |
62
+ | rewatches | int | Rewatch count |
63
+ | created_at | string | First rate timestamp |
64
+ | updated_at | string | Last update timestamp |
65
+
66
+ ### genres.parquet / genres.jsonl (80 entries)
67
+ Genre reference table.
68
+ | Field | Type | Description |
69
+ |-------|------|-------------|
70
+ | id | int | Genre ID |
71
+ | name | string | English name |
72
+ | russian | string | Russian name |
73
+
74
+ ## Use Cases
75
+
76
+ - **Recommender Systems** (Collaborative Filtering, Matrix Factorization)
77
+ - **Anime Classification** by genre/description
78
+ - **Score Prediction** models
79
+ - **User Behavior Analysis**
80
+ - **LLM fine-tuning** for anime recommendations
81
+
82
+ ## Data Source
83
+
84
+ Original scraped from Shikimori API. See: https://shikimori.one/api/doc
85
+
86
+ ## Notes
87
+
88
+ - Anime descriptions contain BBCode formatting (`[character=id]name[/character]`)
89
+ - Scores are community averages (float, 1-10 scale)
90
+ - Users are anonymized by ID (not by name)
91
+ - Dataset snapshot date: April 2026