Datasets:
Update euroeval_config.py
Browse files- euroeval_config.py +5 -4
euroeval_config.py
CHANGED
|
@@ -1,8 +1,9 @@
|
|
| 1 |
-
from euroeval import DatasetConfig
|
|
|
|
| 2 |
from euroeval.languages import DANISH
|
| 3 |
|
| 4 |
CONFIG = DatasetConfig(
|
| 5 |
-
task=
|
| 6 |
-
|
| 7 |
-
|
| 8 |
)
|
|
|
|
| 1 |
+
from euroeval import DatasetConfig
|
| 2 |
+
from euroeval.tasks import LA
|
| 3 |
from euroeval.languages import DANISH
|
| 4 |
|
| 5 |
CONFIG = DatasetConfig(
|
| 6 |
+
task=LA,
|
| 7 |
+
pretty_name="DaLA",
|
| 8 |
+
languages=[DANISH]
|
| 9 |
)
|