Update README.md
Browse files
README.md
CHANGED
@@ -5,12 +5,17 @@ license: mit
|
|
5 |
|
6 |
We provide the train, dev, and test sets. For more details, find our report [here](https://github.com/rish-16/cs4248-project/blob/main/CS4248_Group19_Final_Report.pdf).
|
7 |
|
|
|
|
|
|
|
|
|
|
|
8 |
To access MLe-SNLI, you can use the HuggingFace Datasets API to load the dataset:
|
9 |
|
10 |
```python
|
11 |
from datasets import load_dataset
|
12 |
|
13 |
-
mle_snli = load_dataset("
|
14 |
train_data = mle_snli['train'] # 500K samples (100K per lang)
|
15 |
dev_data = mle_snli['dev'] # 49120 samples (9824 per lang)
|
16 |
test_data = mle_snli['test'] # 49120 samples (9824 per lang)
|
|
|
5 |
|
6 |
We provide the train, dev, and test sets. For more details, find our report [here](https://github.com/rish-16/cs4248-project/blob/main/CS4248_Group19_Final_Report.pdf).
|
7 |
|
8 |
+
## Dataset details
|
9 |
+
|
10 |
+
|
11 |
+
|
12 |
+
## Download Instructions
|
13 |
To access MLe-SNLI, you can use the HuggingFace Datasets API to load the dataset:
|
14 |
|
15 |
```python
|
16 |
from datasets import load_dataset
|
17 |
|
18 |
+
mle_snli = load_dataset("rish16/MLe-SNLI") # loads a DatasetDict object
|
19 |
train_data = mle_snli['train'] # 500K samples (100K per lang)
|
20 |
dev_data = mle_snli['dev'] # 49120 samples (9824 per lang)
|
21 |
test_data = mle_snli['test'] # 49120 samples (9824 per lang)
|