Tolulope commited on
Commit
f9700c5
·
1 Parent(s): 9938be4

adding dataset card

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ ## Subset of ML-SUPERB for 224S Homeowrk 3
4
+
5
+
6
+ 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.
7
+
8
+ 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.
9
+
10
+ The folders are ISO 639-3 codes for each langage.
11
+
12
+ To load the dataset, load it with the language code as the name:
13
+
14
+
15
+ ```python
16
+ from datasets import load_dataset
17
+
18
+ tsn_test = load_dataset("tolulope/ml-superb-subset", name="tsn", split="test[:100]")
19
+
20
+ ```