|
|
|
|
|
## Subset of ML-SUPERB for 224S Homeowrk 3 |
|
|
|
|
|
This dataset is a subset of the ML-SUPERB dataset for Stanford's [CS 224S: Spoken Language Processing](https://web.stanford.edu/class/cs224s/) class. |
|
|
|
It contains data from the mexico-el, nchlt and ALFA sections of the entire [ML-SUPERB](https://multilingual.superbbenchmark.org/challenge-asru2023/challenge_overview) dataset. |
|
|
|
The folders are ISO 639-3 codes for each langage. |
|
|
|
To load the dataset, load it with the language code as the name: |
|
|
|
|
|
```python |
|
from datasets import load_dataset |
|
|
|
tsn_test = load_dataset("tolulope/ml-superb-subset", name="tsn", split="test[:100]") |
|
|
|
``` |