litagin commited on
Commit
4eb8c1c
·
verified ·
1 Parent(s): 6e8dd81

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -1
README.md CHANGED
@@ -6,7 +6,44 @@ license: gpl-3.0
6
  This dataset repository contains metadata for [OOPPEENN/VisualNovel_Dataset](https://huggingface.co/datasets/OOPPEENN/VisualNovel_Dataset).
7
 
8
  - `maker_game_vnid.tsv`: Contains the mapping of maker names, game names, and their corresponding Visual Novel IDs in [vndb](https://vndb.org/). Here the column `maker` and `game` correspond to `{maker}_{game}` in the file names of 7z (or directory names of extracted files) in [OOPPEENN/VisualNovel_Dataset](https://huggingface.co/datasets/OOPPEENN/VisualNovel_Dataset).
9
- - I'm now working on the mapping of `maker game character` to `vndb char id` and `vndb voice actor id`.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
  ## Some notes on the dataset which you may find useful
12
 
 
6
  This dataset repository contains metadata for [OOPPEENN/VisualNovel_Dataset](https://huggingface.co/datasets/OOPPEENN/VisualNovel_Dataset).
7
 
8
  - `maker_game_vnid.tsv`: Contains the mapping of maker names, game names, and their corresponding Visual Novel IDs in [vndb](https://vndb.org/). Here the column `maker` and `game` correspond to `{maker}_{game}` in the file names of 7z (or directory names of extracted files) in [OOPPEENN/VisualNovel_Dataset](https://huggingface.co/datasets/OOPPEENN/VisualNovel_Dataset).
9
+ - `voice_actor_info.tsv` maps `maker game character` to `vndb char id`, `vndb voice actor id`, and `voice actor normalized name`:
10
+
11
+ ```tsv
12
+ maker game charname char_in_vndb vndb_char_id va_credit_name va_in_vndb vndb_staff_id va_normalized_name
13
+ 0verflow Cross Days みなみ true c1605 栗林 みな実 true s18 栗林 みな実
14
+ 0verflow Cross Days 七海 true c1601 藤村 美緒 true s287 高橋 千晶
15
+ 0verflow Cross Days 世界 true c1597 柚木 かなめ true s13 柚木 かなめ
16
+ 0verflow Cross Days 乙女 true c1603 松永 雪希 true s452 松永 雪希
17
+ ```
18
+
19
+ - `voice_actor_alias.json`: Contains the alias of voice actors apeared in the above tsv:
20
+
21
+ - ```json
22
+ {
23
+ "s5": {
24
+ "alias_map": {
25
+ "akazawa kaede": "赤沢 かえで",
26
+ "akitsuki momiji": "秋月 もみじ",
27
+ ...
28
+ "natsuno koori": "夏野 こおり",
29
+ ...
30
+ },
31
+ "normalized": "夏野 こおり"
32
+ },
33
+ "s6": {
34
+ "alias_map": {
35
+ "deko": "DEKO",
36
+ "isshiki hikaru": "一色 光",
37
+ "minahara izumi": "三原 泉",
38
+ "morimoto makoto": "森本 まこと",
39
+ "tanaka ryouko": "田中 涼子"
40
+ },
41
+ "normalized": "一色 光"
42
+ },
43
+ ...
44
+ }
45
+ ```
46
+
47
 
48
  ## Some notes on the dataset which you may find useful
49