Skip to content

Commit

Permalink
6.21
Browse files Browse the repository at this point in the history
  • Loading branch information
SUC-DriverOld committed Jun 21, 2024
1 parent d6e66a6 commit 16160d5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -448,15 +448,18 @@ dataset_raw

```json
{
"n_speakers": 10, // The number represents the number of speakers, starting from 1, and needs to correspond to the number below
"n_speakers": 10,

"spk": {
"speaker0": 0, // "speaker0" refers to the speaker's name, which can be changed
"speaker1": 1 // The numbers 0, 1, 2... represent the speaker count, starting from 0
"speaker0": 0,
"speaker1": 1
}
}
```

- `"n_speakers": 10`: The number represents the number of speakers, starting from 1, and needs to correspond to the number below
- `"speaker0": 0`: "speaker0" refers to the speaker's name, which can be changed. The numbers 0, 1, 2... represent the speaker count, starting from 0.

## 2.4 Data Preprocessing

### 2.4.0 Audio Slicing
Expand Down
9 changes: 6 additions & 3 deletions README_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -467,14 +467,17 @@ dataset_raw
3. 此外还需要在`dataset_raw`新建并编辑`config.json`

```json
"n_speakers": 10 //数字代表说话人人数,从1开始计数,需要和下面的人数对应
"n_speakers": 10

"spk":{
"speaker0": 0, //speaker0指的是说话人名字,可以更改
"speaker1": 1, //后面的数字0,1,2...代表说话人计数,从0开始计数
"speaker0": 0,
"speaker1": 1
}
```

- `"n_speakers": 10`: 数字代表说话人人数,从 1 开始计数,需要和下面的人数对应
- `"speaker0": 0`: speaker0 指的是说话人名字,可以更改, 后面的数字 0,1,2...代表说话人计数,从 0 开始计数

## 2.4 数据预处理

### 2.4.0 音频切片
Expand Down

0 comments on commit 16160d5

Please sign in to comment.