Datasets:
Tasks:
Token Classification
Modalities:
Text
Sub-tasks:
coreference-resolution
Languages:
English
Size:
< 1K
License:
Arie Cattan
commited on
Commit
•
37db430
1
Parent(s):
9e8f717
add features
Browse files
scico.py
CHANGED
@@ -28,6 +28,20 @@ class Scico(datasets.GeneratorBasedBuilder):
|
|
28 |
return datasets.DatasetInfo(
|
29 |
description=_DESCRIPTION,
|
30 |
homepage="https://scico.apps.allenai.org/",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
citation = _CITATION)
|
32 |
|
33 |
|
|
|
28 |
return datasets.DatasetInfo(
|
29 |
description=_DESCRIPTION,
|
30 |
homepage="https://scico.apps.allenai.org/",
|
31 |
+
features=datasets.Features(
|
32 |
+
{
|
33 |
+
"flatten_tokens": list,
|
34 |
+
"flatten_mentions": list,
|
35 |
+
"tokens": list,
|
36 |
+
"doc_ids": list,
|
37 |
+
"metadata": list,
|
38 |
+
"sentences": list,
|
39 |
+
"mentions": list,
|
40 |
+
"relations": list,
|
41 |
+
"id": datasets.Value("int32"),
|
42 |
+
"source": datasets.Value("string")
|
43 |
+
}
|
44 |
+
),
|
45 |
citation = _CITATION)
|
46 |
|
47 |
|