@@ -71,8 +71,10 @@ class TaskCategory:
71
71
name = TaskType .named_entity_recognition ,
72
72
description = """
73
73
Recognize named entities from a given text.
74
- See one example of the uploaded file:
75
- https://github.com/neulab/ExplainaBoard/blob/main/data/system_outputs/conll2003/conll2003.elmo
74
+ See one example of the system output:
75
+ https://github.com/neulab/ExplainaBoard/blob/main/data/system_outputs/conll2003/conll2003-elmo-output.conll
76
+ See one example of the custom dataset file:
77
+ https://github.com/neulab/ExplainaBoard/blob/main/data/system_outputs/conll2003/conll2003-dataset.conll
76
78
""" ,
77
79
),
78
80
Task (
@@ -85,6 +87,10 @@ class TaskCategory:
85
87
name = TaskType .chunking ,
86
88
description = """
87
89
Dividing text into syntactically related non-overlapping groups of words.
90
+ See one example of the system output:
91
+ https://github.com/neulab/ExplainaBoard/blob/main/data/system_outputs/chunking/test-conll00-predictions.tsv
92
+ See one example of the custom dataset file:
93
+ https://github.com/neulab/ExplainaBoard/blob/main/data/system_outputs/chunking/dataset-test-conll00.tsv
88
94
""" ,
89
95
),
90
96
],
@@ -96,15 +102,13 @@ class TaskCategory:
96
102
Task (
97
103
name = TaskType .cloze_mutiple_choice ,
98
104
description = """
99
- fill in a blank in a text based on given options:
100
- https://github.com/neulab/ExplainaBoard/blob/main/docs/cloze.md
105
+ Fill in a blank in a text based on given options.
101
106
""" ,
102
107
),
103
108
Task (
104
109
name = TaskType .cloze_generative ,
105
110
description = """
106
- fill in a blank in a text based on given hint:
107
- https://github.com/neulab/ExplainaBoard/blob/main/docs/cloze.md
111
+ Fill in a blank in a text based on given hint.
108
112
""" ,
109
113
),
110
114
],
@@ -118,16 +122,24 @@ class TaskCategory:
118
122
description = """
119
123
A task of extracting an answer from a text given a question.
120
124
See more details about the format of upload files:
121
- https://github.com/neulab/ExplainaBoard/blob/main/docs/task_extractive_qa_squad .md
125
+ https://github.com/neulab/ExplainaBoard/blob/main/docs/task_extractive_qa .md
122
126
""" ,
123
127
),
124
128
Task (
125
129
name = TaskType .qa_multiple_choice ,
126
- description = "Answer a question from multiple options" ,
130
+ description = """
131
+ Answer a question from multiple options
132
+ See more details about the format of upload files:
133
+ https://github.com/neulab/ExplainaBoard/blob/main/docs/task_qa_multiple_choice.md
134
+ """ ,
127
135
),
128
136
Task (
129
137
name = TaskType .qa_open_domain ,
130
- description = "Answer a question in an open domain" ,
138
+ description = """
139
+ Answer a question in an open domain
140
+ See more details about the format of upload files:
141
+ https://github.com/neulab/ExplainaBoard/blob/main/docs/task_qa_open_domain.md
142
+ """ ,
131
143
),
132
144
],
133
145
),
@@ -139,8 +151,10 @@ class TaskCategory:
139
151
name = TaskType .aspect_based_sentiment_classification ,
140
152
description = """
141
153
Predict the sentiment of a text based on a specific aspect.
142
- See more details about the format of upload files :
154
+ See one example of the system output :
143
155
https://github.com/neulab/ExplainaBoard/blob/main/data/system_outputs/absa/absa-example-output.txt
156
+ See one example of the custom dataset file:
157
+ https://github.com/neulab/ExplainaBoard/blob/main/data/system_outputs/absa/absa-dataset.tsv
144
158
""" ,
145
159
),
146
160
],
0 commit comments