File size: 4,739 Bytes
3e7e592
 
 
 
 
 
 
6613f8c
 
 
 
3e7e592
6613f8c
3e7e592
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6613f8c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3e7e592
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
---
license: unknown
configs:
- config_name: 0verflow_Shiny_Days
  data_files:
  - split: train
    path: 0verflow_Shiny_Days/train-*
- config_name: AKABEiSOFT3_CharaBration_Otome_wa_Koi_shite_Charabureru
  data_files:
  - split: train
    path: AKABEiSOFT3_CharaBration_Otome_wa_Koi_shite_Charabureru/train-*
dataset_info:
- config_name: 0verflow_Shiny_Days
  features:
  - name: audio
    dtype:
      audio:
        sampling_rate: 48000
  - name: text
    dtype: string
  - name: audio_ID
    dtype: string
  splits:
  - name: train
    num_bytes: 940144571.088
    num_examples: 37616
  download_size: 1073144264
  dataset_size: 940144571.088
- config_name: AKABEiSOFT3_CharaBration_Otome_wa_Koi_shite_Charabureru
  features:
  - name: audio
    dtype:
      audio:
        sampling_rate: 48000
  - name: text
    dtype: string
  - name: audio_ID
    dtype: string
  splits:
  - name: train
    num_bytes: 1009291355.016
    num_examples: 15376
  download_size: 1153003715
  dataset_size: 1009291355.016
task_categories:
- automatic-speech-recognition
- text-to-speech
language:
- ja
tags:
- speech
- anime
- japanese
size_categories:
- 100K<n<1M
---

# Galgame VisualNovel Reupload

This repository is a reupload of the visual novel dataset [OOPPEENN/56697375616C4E6F76656C5F44617461736574](https://huggingface.co/datasets/OOPPEENN/56697375616C4E6F76656C5F44617461736574).

The goal of this reupload is to restructure the data for easier and more efficient use with the `datasets` library, instead of having to manually extract each archive file and parse json files of the original dataset.

### Loading the entire dataset

To load and stream all voice lines from all games combined, simply load the `train` split. The library will automatically retrieve the data from all subsets.

```python
from datasets import load_dataset

# This will stream all data from all games
dataset = load_dataset("joujiboi/GalgameDataset-reupload", split="train", streaming=True)

# Get the first example
first_example = next(iter(dataset))
print(first_example)
# {'audio': {'path': '...', 'array': ..., 'sampling_rate': 48000}, 'text': '...', 'audio_ID': '...'}

### Loading data from Single Game

To load data from only one game, use the name parameter with the game's subset name.

```python
from datasets import load_dataset

# Load only the data for 0verflow_Cross_Days subset
cross_days_subset = load_dataset("joujiboi/GalgameDataset-reupload", name="0verflow_Cross_Days", split="train")

print(f"Number of lines in Cross Days: {len(cross_days_subset)}")
```

You can get a list of all available games (subsets) like so:
```python
from datasets import get_dataset_config_names

all_games = get_dataset_config_names("joujiboi/GalgameDataset-reupload")
print(all_games)
# ['0verflow_Cross_Days', '0verflow_School_Days_HQ', '0verflow_Shiny_Days', ...]
```

### Reupload information

The audio files and transcribed text are identical to the original source. No data has been altered or removed.

The CATALOG.md and TOTAL.md files in this repository are copies from the original dataset.

The script used to perform this reupload is included in this repository as `reupload_dataset.py`.


## Disclaimer, Copyright, and Legal Notice

The audio and text data in this dataset are derived from commercially available visual novels. These original works are protected by copyright, and the rights belong to their respective publishers and creators. The uploader of this repository does not own the copyright to any of the underlying creative works and does not claim to.

This repository's sole purpose is to restructure the publicly available data from the `OOPPEENN/56697375616C4E6F76656C5F44617461736574` dataset into a format that is more accessible for potential non-commercial research in fields such as natural language processing and speech synthesis.

The original repository listed an MIT license. This is incorrect, as such a license can only be granted by the copyright holders. Therefore, this dataset should be considered to have **NO LICENSE**. All rights to the content remain with the original copyright holders.

The uploader of this dataset assumes no responsibility or liability for any legal consequences, damages, or losses that may arise from the use, misuse, or distribution of this dataset.

**Users of this dataset are solely responsible for ensuring that their use complies with the copyright laws of their specific jurisdiction.** By downloading or using this data, you acknowledge that you are doing so at your own risk.

If you are a copyright holder and believe that your work has been included in this dataset improperly, please open an issue on this repository. Valid requests for content removal will be honored promptly.