Update README.md
Browse files
README.md
CHANGED
@@ -19,3 +19,48 @@ configs:
|
|
19 |
- split: train
|
20 |
path: data/train-*
|
21 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
- split: train
|
20 |
path: data/train-*
|
21 |
---
|
22 |
+
|
23 |
+
## Dataset Overview
|
24 |
+
|
25 |
+
This dataset contains nearly over 679,000 English `speech instruction to text answer` samples, using:
|
26 |
+
- The combination of [homebrewltd/instruction-speech-encodec-v1](https://huggingface.co/datasets/homebrewltd/instruction-speech-encodec-v1) and [homebrewltd/instruction-speech-encodec-v1.5](https://huggingface.co/datasets/homebrewltd/instruction-speech-encodec-v1.5)
|
27 |
+
- Tokenized using [WhisperVQ](https://huggingface.co/WhisperSpeech/WhisperSpeech/blob/main/whisper-vq-stoks-medium-en%2Bpl.model).
|
28 |
+
|
29 |
+
## Usage
|
30 |
+
|
31 |
+
```python
|
32 |
+
from datasets import load_dataset, Audio
|
33 |
+
# Load Instruction Speech dataset
|
34 |
+
|
35 |
+
dataset = load_dataset("homebrewltd/raw-speech-whispervq-v1",split='train')
|
36 |
+
```
|
37 |
+
|
38 |
+
## Dataset Fields
|
39 |
+
|
40 |
+
Field | Type | Description |
|
41 |
+
|------------------|------------|--------------------------------------------------|
|
42 |
+
| `tokens` | sequence | Tokenized using Encodec |
|
43 |
+
| `text` | sequence | Converted audio tokens |
|
44 |
+
|
45 |
+
## Bias, Risks, and Limitations
|
46 |
+
|
47 |
+
- Dataset may reflect biases inherent in its source.
|
48 |
+
- Current version lacks quality control for prompts and responses.
|
49 |
+
- The usage of Encodec may compromise sound tokens quality.
|
50 |
+
- Users should consider these limitations when applying the dataset.
|
51 |
+
|
52 |
+
## Licensing Information
|
53 |
+
|
54 |
+
The dataset is released under the [MIT license](https://opensource.org/license/MIT).
|
55 |
+
|
56 |
+
## Citation Information
|
57 |
+
|
58 |
+
```
|
59 |
+
@article{Instruction Speech 2024,
|
60 |
+
title={Instruction Speech},
|
61 |
+
author={JanAI},
|
62 |
+
year=2024,
|
63 |
+
month=June},
|
64 |
+
url={https://huggingface.co/datasets/jan-hq/instruction-speech}
|
65 |
+
```
|
66 |
+
|