Fix text_features typo
Browse files- bioasq_2021_mesinesp.py +2 -2
bioasq_2021_mesinesp.py
CHANGED
@@ -49,7 +49,7 @@ from typing import Dict, List, Tuple
|
|
49 |
|
50 |
import datasets
|
51 |
|
52 |
-
from .bigbiohub import
|
53 |
from .bigbiohub import BigBioConfig
|
54 |
from .bigbiohub import Tasks
|
55 |
|
@@ -210,7 +210,7 @@ class Bioasq2021MesinespDataset(datasets.GeneratorBasedBuilder):
|
|
210 |
}
|
211 |
)
|
212 |
elif self.config.schema == "bigbio_text":
|
213 |
-
features =
|
214 |
|
215 |
return datasets.DatasetInfo(
|
216 |
description=_DESCRIPTION,
|
|
|
49 |
|
50 |
import datasets
|
51 |
|
52 |
+
from .bigbiohub import text_features
|
53 |
from .bigbiohub import BigBioConfig
|
54 |
from .bigbiohub import Tasks
|
55 |
|
|
|
210 |
}
|
211 |
)
|
212 |
elif self.config.schema == "bigbio_text":
|
213 |
+
features = text_features
|
214 |
|
215 |
return datasets.DatasetInfo(
|
216 |
description=_DESCRIPTION,
|