File size: 627 Bytes
f9700c5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20


## 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]")

```