--- license: cc-by-nc-nd-4.0 viewer: false --- # 简介 Wuthering Waves Game Character Voice Dataset 本仓库为由 [AI Hobbyist](https://www.modelscope.cn/organization/aihobbyist) 提供的 [aihobbyist/WutheringWaves_Dataset](https://www.modelscope.cn/datasets/aihobbyist/WutheringWaves_Dataset) 数据集的集成代码,最终解释权均归 [库洛游戏](https://mc.kurogames.com) 所有。集成代码旨在为社区提供更加便捷的使用方案:对于 `Python` 开发者仅需几行代码即可实现自动按需查找、下载、按语言拆分以及正规化,而非手动搜索和下载笨重的完整包以照顾不同背景和门槛的使用者。集成代码由 [Genius-Society](https://www.modelscope.cn/organization/Genius-Society) 提供,若您需要使用压缩包版数据源并自行编写数据处理脚本,可转至 [aihobbyist/WutheringWaves_Dataset](https://www.modelscope.cn/datasets/aihobbyist/WutheringWaves_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 [角色列表 Character list](https://pan.ai-hobbyist.com/Wuthering%20Waves%20Datasets/%E4%B8%AD%E6%96%87%20-%20Chinese) ## 语言选项 Languages | 语言 Lang | 分割 Split | | :---------: | :--------: | | 中 Chinese | `zh` | | 日 Japanese | `jp` | | 英 English | `en` | | 韩 Korean | `kr` | ## 使用案例 Usage ```python from datasets import load_dataset ds = load_dataset( "Genius-Society/wwTTS", name="椿", # 角色中文名 split="zh", # 选择语言 cache_dir="./__pycache__", # 数据集缓存位置 ) for item in ds: print(item) ``` ## 维护 Maintenance ```bash git clone git@hf.co:datasets/Genius-Society/wwTTS cd wwTTS ``` ## 参考引用 Reference [1]
[2]