Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -33,7 +33,7 @@ pretty_name: multi_eup
|
|
33 |
configs:
|
34 |
- config_name: default
|
35 |
data_files:
|
36 |
-
- split:
|
37 |
path:
|
38 |
- "MultiEuP.csv"
|
39 |
---
|
@@ -49,6 +49,7 @@ curl -X GET "https://datasets-server.huggingface.co/first-rows?dataset=unimelb-n
|
|
49 |
pip install datasets
|
50 |
|
51 |
from datasets import load_dataset
|
|
|
52 |
dataset = load_dataset("unimelb-nlp/Multi-EuP", keep_default_na=False)
|
53 |
|
54 |
Note: It's crucial to use keep_default_na=False because some datasets contain 'null' values, such as qid_GA, due to the Irish language (GA) not being published before it became an official EU language. Additionally, some text may not belong to the active 705 MEP, resulting in missing matching information.
|
|
|
33 |
configs:
|
34 |
- config_name: default
|
35 |
data_files:
|
36 |
+
- split: full
|
37 |
path:
|
38 |
- "MultiEuP.csv"
|
39 |
---
|
|
|
49 |
pip install datasets
|
50 |
|
51 |
from datasets import load_dataset
|
52 |
+
|
53 |
dataset = load_dataset("unimelb-nlp/Multi-EuP", keep_default_na=False)
|
54 |
|
55 |
Note: It's crucial to use keep_default_na=False because some datasets contain 'null' values, such as qid_GA, due to the Irish language (GA) not being published before it became an official EU language. Additionally, some text may not belong to the active 705 MEP, resulting in missing matching information.
|