File size: 2,033 Bytes
fd90f01 079bfda fd90f01 efaa741 fd90f01 efaa741 fd90f01 7b64070 fd90f01 efaa741 fd90f01 efaa741 e7fc981 fd90f01 efaa741 fd90f01 efaa741 fd90f01 efaa741 fd90f01 7b64070 fd90f01 efaa741 fd90f01 |
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 |
---
license: cc-by-nc-nd-4.0
viewer: false
---
# Wuthering Waves Game Character Voice Dataset
This repository is the integration code for the [aihobbyist/WutheringWaves_Dataset](https://www.modelscope.cn/datasets/aihobbyist/WutheringWaves_Dataset) provided by [AI Hobbyist](https://www.modelscope.cn/organization/aihobbyist), with the final right of interpretation belonging to [KUROGAME](https://mc.kurogames.com). The integration code aims to provide a more convenient usage solution for the community: for `Python` developers, only a few lines of code are needed to automatically search, download, split by language, and normalize on demand, instead of manually searching for and downloading the cumbersome complete package to accommodate users with different backgrounds and thresholds. The integration code is provided by [Genius-Society](https://www.modelscope.cn/organization/Genius-Society). If you need to use the compressed package version of the data source and write your own data processing scripts, you can go to [aihobbyist/WutheringWaves_Dataset](https://www.modelscope.cn/datasets/aihobbyist/WutheringWaves_Dataset) to support the original author.
## Environment
```bash
pip install datasets py7zr librosa
```
## Supported characters
[Supported Character list](https://pan.ai-hobbyist.com/Wuthering%20Waves%20Datasets/%E5%88%86%E8%A7%92%E8%89%B2%E5%8C%85/%E8%8B%B1%E8%AF%AD)
## Splits
| Language | Chinese | Japanese | English | Korean |
| :------: | :-----: | :------: | :-----: | :----: |
| Split | `zh` | `jp` | `en` | `kr` |
## Usage
```python
from datasets import load_dataset
ds = load_dataset(
"Genius-Society/wwTTS",
name="椿", # The Chinese name of the character
split="zh", # Choose a language
cache_dir="./__pycache__", # The cache location of the dataset
)
for item in ds:
print(item)
```
## Maintenance
```bash
git clone [email protected]:datasets/Genius-Society/wwTTS
cd wwTTS
```
## References
[1] <https://pan.ai-hobbyist.com><br>
[2] <https://mc.kurogames.com> |