Datasets:
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: mit
|
| 5 |
+
multimodal: true
|
| 6 |
+
task_categories:
|
| 7 |
+
- audio-to-text
|
| 8 |
+
- text-to-audio
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# SNAC Encoded Elise Dataset
|
| 12 |
+
|
| 13 |
+
This dataset contains audio samples from the Elise dataset encoded using the SNAC (Sound Neural Audio Codec) model.
|
| 14 |
+
|
| 15 |
+
## Dataset Description
|
| 16 |
+
|
| 17 |
+
- **Source**: MrDragonFox/Elise dataset
|
| 18 |
+
- **Encoding**: SNAC audio codec (hubertsiuzdak/snac_24khz)
|
| 19 |
+
- **Sampling Rate**: 24kHz
|
| 20 |
+
- **Format**: Text transcriptions paired with SNAC discrete codes
|
| 21 |
+
|
| 22 |
+
## Structure
|
| 23 |
+
|
| 24 |
+
Each sample contains:
|
| 25 |
+
- `text`: Text transcription
|
| 26 |
+
- `snac_codes`: Multi-layer SNAC audio codes
|
| 27 |
+
- `audio_length_seconds`: Duration of original audio
|
| 28 |
+
- `original_sample`: Metadata from source dataset
|
| 29 |
+
|
| 30 |
+
## Usage
|
| 31 |
+
|
| 32 |
+
```python
|
| 33 |
+
from datasets import load_dataset
|
| 34 |
+
|
| 35 |
+
dataset = load_dataset("{repo_name}")
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
## Citation
|
| 39 |
+
|
| 40 |
+
If you use this dataset, please cite the original Elise dataset and the SNAC model.
|