Datasets:

License:
kakamond commited on
Commit
efaa741
·
verified ·
1 Parent(s): 16c2ec7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -19
README.md CHANGED
@@ -3,48 +3,46 @@ license: cc-by-nc-nd-4.0
3
  viewer: false
4
  ---
5
 
6
- # 简介 Wuthering Waves Game Character Voice Dataset
7
- 本仓库为由 [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) 支持原作者。
8
-
9
  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.
10
 
11
- ## 环境 Environment
12
  ```bash
13
  pip install datasets py7zr librosa
14
  ```
15
 
16
- ## 支持角色 Supported characters
17
- [角色列表 Character list](https://pan.ai-hobbyist.com/Wuthering%20Waves%20Datasets/%E4%B8%AD%E6%96%87%20-%20Chinese)
18
 
19
- ## 语言选项 Languages
20
- | 语言 Lang | 分割 Split |
21
- | :---------: | :--------: |
22
- | Chinese | `zh` |
23
- | Japanese | `jp` |
24
- | English | `en` |
25
- | Korean | `kr` |
26
 
27
- ## 使用案例 Usage
28
  ```python
29
  from datasets import load_dataset
30
 
31
  ds = load_dataset(
32
  "Genius-Society/wwTTS",
33
- name="椿", # 角色中文名
34
- split="zh", # 选择语言
35
- cache_dir="./__pycache__", # 数据集缓存位置
36
  )
37
 
38
  for item in ds:
39
  print(item)
40
  ```
41
 
42
- ## 维护 Maintenance
43
  ```bash
44
  git clone git@hf.co:datasets/Genius-Society/wwTTS
45
  cd wwTTS
46
  ```
47
 
48
- ## 参考引用 Reference
49
  [1] <https://pan.ai-hobbyist.com><br>
50
  [2] <https://mc.kurogames.com>
 
3
  viewer: false
4
  ---
5
 
6
+ # Wuthering Waves Game Character Voice Dataset
 
 
7
  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.
8
 
9
+ ## Environment
10
  ```bash
11
  pip install datasets py7zr librosa
12
  ```
13
 
14
+ ## Supported characters
15
+ [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)
16
 
17
+ ## Splits
18
+ | Language | Split |
19
+ | :------: | :---: |
20
+ | Chinese | `zh` |
21
+ | Japanese | `jp` |
22
+ | English | `en` |
23
+ | Korean | `kr` |
24
 
25
+ ## Usage
26
  ```python
27
  from datasets import load_dataset
28
 
29
  ds = load_dataset(
30
  "Genius-Society/wwTTS",
31
+ name="椿", # The Chinese name of the character
32
+ split="zh", # Choose a language
33
+ cache_dir="./__pycache__", # The cache location of the dataset
34
  )
35
 
36
  for item in ds:
37
  print(item)
38
  ```
39
 
40
+ ## Maintenance
41
  ```bash
42
  git clone git@hf.co:datasets/Genius-Society/wwTTS
43
  cd wwTTS
44
  ```
45
 
46
+ ## References
47
  [1] <https://pan.ai-hobbyist.com><br>
48
  [2] <https://mc.kurogames.com>