Update README.md
Browse files
README.md
CHANGED
|
@@ -95,19 +95,30 @@ pretty_name: Filtered LibriTTS-R
|
|
| 95 |
|
| 96 |
# Dataset Card for Filtered LibriTTS-R
|
| 97 |
|
| 98 |
-
This is a filtered version of LibriTTS-R. It has been filtered based on two sources:
|
| 99 |
1. LibriTTS-R paper [1], which lists samples for which speech restoration have failed
|
| 100 |
2. LibriTTS-P [2] list of [excluded speakers](https://github.com/line/LibriTTS-P/blob/main/data/excluded_spk_list.txt) for which multiple speakers have been detected.
|
| 101 |
|
| 102 |
-
|
| 103 |
LibriTTS-R [1] is a sound quality improved version of the [LibriTTS corpus](http://www.openslr.org/60/) which is a multi-speaker English corpus of approximately
|
| 104 |
585 hours of read English speech at 24kHz sampling rate, published in 2019.
|
| 105 |
|
| 106 |
-
##
|
| 107 |
|
| 108 |
-
|
| 109 |
|
| 110 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
|
| 112 |
### Splits
|
| 113 |
|
|
@@ -132,18 +143,6 @@ The default configuration is "all".
|
|
| 132 |
- "other": contains only "other" splits
|
| 133 |
- "all": contains only "all" splits
|
| 134 |
|
| 135 |
-
### Example
|
| 136 |
-
|
| 137 |
-
Loading the `clean` config with only the `train.clean.360` split.
|
| 138 |
-
```
|
| 139 |
-
load_dataset("blabble-io/libritts_r", "clean", split="train.clean.100")
|
| 140 |
-
```
|
| 141 |
-
|
| 142 |
-
Streaming is also supported.
|
| 143 |
-
```
|
| 144 |
-
load_dataset("blabble-io/libritts_r", streaming=True)
|
| 145 |
-
```
|
| 146 |
-
|
| 147 |
### Columns
|
| 148 |
|
| 149 |
```
|
|
|
|
| 95 |
|
| 96 |
# Dataset Card for Filtered LibriTTS-R
|
| 97 |
|
| 98 |
+
This is a filtered version of [LibriTTS-R](https://huggingface.co/datasets/mythicinfinity/libritts_r). It has been filtered based on two sources:
|
| 99 |
1. LibriTTS-R paper [1], which lists samples for which speech restoration have failed
|
| 100 |
2. LibriTTS-P [2] list of [excluded speakers](https://github.com/line/LibriTTS-P/blob/main/data/excluded_spk_list.txt) for which multiple speakers have been detected.
|
| 101 |
|
|
|
|
| 102 |
LibriTTS-R [1] is a sound quality improved version of the [LibriTTS corpus](http://www.openslr.org/60/) which is a multi-speaker English corpus of approximately
|
| 103 |
585 hours of read English speech at 24kHz sampling rate, published in 2019.
|
| 104 |
|
| 105 |
+
## Usage
|
| 106 |
|
| 107 |
+
### Example
|
| 108 |
|
| 109 |
+
Loading the `clean` config with only the `train.clean.360` split.
|
| 110 |
+
```py
|
| 111 |
+
from datasets import load_dataset
|
| 112 |
+
|
| 113 |
+
load_dataset("blabble-io/libritts_r", "clean", split="train.clean.100")
|
| 114 |
+
```
|
| 115 |
+
|
| 116 |
+
Streaming is also supported.
|
| 117 |
+
```py
|
| 118 |
+
from datasets import load_dataset
|
| 119 |
+
|
| 120 |
+
load_dataset("blabble-io/libritts_r", streaming=True)
|
| 121 |
+
```
|
| 122 |
|
| 123 |
### Splits
|
| 124 |
|
|
|
|
| 143 |
- "other": contains only "other" splits
|
| 144 |
- "all": contains only "all" splits
|
| 145 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 146 |
### Columns
|
| 147 |
|
| 148 |
```
|