Update README.md
Browse files
README.md
CHANGED
@@ -1,25 +1,102 @@
|
|
1 |
-
---
|
2 |
-
license: unknown
|
3 |
-
configs:
|
4 |
-
- config_name: 0verflow_Shiny_Days
|
5 |
-
data_files:
|
6 |
-
- split: train
|
7 |
-
path: 0verflow_Shiny_Days/train-*
|
8 |
-
dataset_info:
|
9 |
-
config_name: 0verflow_Shiny_Days
|
10 |
-
features:
|
11 |
-
- name: audio
|
12 |
-
dtype:
|
13 |
-
audio:
|
14 |
-
sampling_rate: 48000
|
15 |
-
- name: text
|
16 |
-
dtype: string
|
17 |
-
- name: audio_ID
|
18 |
-
dtype: string
|
19 |
-
splits:
|
20 |
-
- name: train
|
21 |
-
num_bytes: 940144571.088
|
22 |
-
num_examples: 37616
|
23 |
-
download_size: 1073144264
|
24 |
-
dataset_size: 940144571.088
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: unknown
|
3 |
+
configs:
|
4 |
+
- config_name: 0verflow_Shiny_Days
|
5 |
+
data_files:
|
6 |
+
- split: train
|
7 |
+
path: 0verflow_Shiny_Days/train-*
|
8 |
+
dataset_info:
|
9 |
+
config_name: 0verflow_Shiny_Days
|
10 |
+
features:
|
11 |
+
- name: audio
|
12 |
+
dtype:
|
13 |
+
audio:
|
14 |
+
sampling_rate: 48000
|
15 |
+
- name: text
|
16 |
+
dtype: string
|
17 |
+
- name: audio_ID
|
18 |
+
dtype: string
|
19 |
+
splits:
|
20 |
+
- name: train
|
21 |
+
num_bytes: 940144571.088
|
22 |
+
num_examples: 37616
|
23 |
+
download_size: 1073144264
|
24 |
+
dataset_size: 940144571.088
|
25 |
+
task_categories:
|
26 |
+
- automatic-speech-recognition
|
27 |
+
- text-to-speech
|
28 |
+
language:
|
29 |
+
- ja
|
30 |
+
tags:
|
31 |
+
- speech
|
32 |
+
- anime
|
33 |
+
- japanese
|
34 |
+
size_categories:
|
35 |
+
- 100K<n<1M
|
36 |
+
---
|
37 |
+
|
38 |
+
# Galgame VisualNovel Reupload
|
39 |
+
|
40 |
+
This repository is a reupload of the visual novel dataset [OOPPEENN/56697375616C4E6F76656C5F44617461736574](https://huggingface.co/datasets/OOPPEENN/56697375616C4E6F76656C5F44617461736574).
|
41 |
+
|
42 |
+
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.
|
43 |
+
|
44 |
+
### Loading the entire dataset
|
45 |
+
|
46 |
+
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.
|
47 |
+
|
48 |
+
```python
|
49 |
+
from datasets import load_dataset
|
50 |
+
|
51 |
+
# This will stream all data from all games
|
52 |
+
dataset = load_dataset("joujiboi/GalgameDataset-reupload", split="train", streaming=True)
|
53 |
+
|
54 |
+
# Get the first example
|
55 |
+
first_example = next(iter(dataset))
|
56 |
+
print(first_example)
|
57 |
+
# {'audio': {'path': '...', 'array': ..., 'sampling_rate': 48000}, 'text': '...', 'audio_ID': '...'}
|
58 |
+
|
59 |
+
### Loading data from Single Game
|
60 |
+
|
61 |
+
To load data from only one game, use the name parameter with the game's subset name.
|
62 |
+
|
63 |
+
```python
|
64 |
+
from datasets import load_dataset
|
65 |
+
|
66 |
+
# Load only the data for 0verflow_Cross_Days subset
|
67 |
+
cross_days_subset = load_dataset("joujiboi/GalgameDataset-reupload", name="0verflow_Cross_Days", split="train")
|
68 |
+
|
69 |
+
print(f"Number of lines in Cross Days: {len(cross_days_subset)}")
|
70 |
+
```
|
71 |
+
|
72 |
+
You can get a list of all available games (subsets) like so:
|
73 |
+
```python
|
74 |
+
from datasets import get_dataset_config_names
|
75 |
+
|
76 |
+
all_games = get_dataset_config_names("joujiboi/GalgameDataset-reupload")
|
77 |
+
print(all_games)
|
78 |
+
# ['0verflow_Cross_Days', '0verflow_School_Days_HQ', '0verflow_Shiny_Days', ...]
|
79 |
+
```
|
80 |
+
|
81 |
+
### Reupload information
|
82 |
+
|
83 |
+
The audio files and transcribed text are identical to the original source. No data has been altered or removed.
|
84 |
+
|
85 |
+
The CATALOG.md and TOTAL.md files in this repository are copies from the original dataset.
|
86 |
+
|
87 |
+
The script used to perform this reupload is included in this repository as `reupload_dataset.py`.
|
88 |
+
|
89 |
+
|
90 |
+
## Disclaimer, Copyright, and Legal Notice
|
91 |
+
|
92 |
+
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.
|
93 |
+
|
94 |
+
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.
|
95 |
+
|
96 |
+
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.
|
97 |
+
|
98 |
+
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.
|
99 |
+
|
100 |
+
**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.
|
101 |
+
|
102 |
+
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.
|