Update test_ldkp.py
Browse files- test_ldkp.py +2 -2
test_ldkp.py
CHANGED
|
@@ -62,8 +62,8 @@ class TestLDKP(datasets.GeneratorBasedBuilder):
|
|
| 62 |
if self.config.name == "ldkp": # This is the name of the configuration selected in BUILDER_CONFIGS above
|
| 63 |
features = datasets.Features(
|
| 64 |
{
|
| 65 |
-
"text": datasets.features.Sequence(
|
| 66 |
-
"BIO_tags": datasets.features.Sequence(
|
| 67 |
#"text": datasets.features.Sequence({'txt':datasets.Value("string")}),
|
| 68 |
#"BIO_tags": datasets.features.Sequence({'tag':datasets.Value("string")})
|
| 69 |
#"text": datasets.Value("string"),
|
|
|
|
| 62 |
if self.config.name == "ldkp": # This is the name of the configuration selected in BUILDER_CONFIGS above
|
| 63 |
features = datasets.Features(
|
| 64 |
{
|
| 65 |
+
"text": datasets.features.Sequence(datasets.Value("string")),
|
| 66 |
+
"BIO_tags": datasets.features.Sequence(datasets.Value("string"))
|
| 67 |
#"text": datasets.features.Sequence({'txt':datasets.Value("string")}),
|
| 68 |
#"BIO_tags": datasets.features.Sequence({'tag':datasets.Value("string")})
|
| 69 |
#"text": datasets.Value("string"),
|