-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* mcscript * black * add mcscript to documentation * removed task property method Co-authored-by: jeswan <57466294+jeswan@users.noreply.github.com>
- Loading branch information
Showing
4 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
from dataclasses import dataclass | ||
|
||
from jiant.tasks.lib.templates.shared import labels_to_bimap | ||
from jiant.tasks.lib.templates import multiple_choice as mc_template | ||
from jiant.utils.python.io import read_json_lines | ||
|
||
|
||
@dataclass | ||
class Example(mc_template.Example): | ||
pass | ||
|
||
|
||
@dataclass | ||
class TokenizedExample(mc_template.TokenizedExample): | ||
pass | ||
|
||
|
||
@dataclass | ||
class DataRow(mc_template.DataRow): | ||
pass | ||
|
||
|
||
@dataclass | ||
class Batch(mc_template.Batch): | ||
pass | ||
|
||
|
||
class MCScriptTask(mc_template.AbstractMultipleChoiceTask): | ||
Example = Example | ||
TokenizedExample = Example | ||
DataRow = DataRow | ||
Batch = Batch | ||
|
||
CHOICE_KEYS = [0, 1] | ||
CHOICE_TO_ID, ID_TO_CHOICE = labels_to_bimap(CHOICE_KEYS) | ||
NUM_CHOICES = len(CHOICE_KEYS) | ||
|
||
def get_train_examples(self): | ||
return self._create_examples(lines=read_json_lines(self.train_path), set_type="train") | ||
|
||
def get_val_examples(self): | ||
return self._create_examples(lines=read_json_lines(self.val_path), set_type="val") | ||
|
||
def get_test_examples(self): | ||
return self._create_examples(lines=read_json_lines(self.test_path), set_type="test") | ||
|
||
@classmethod | ||
def _create_examples(cls, lines, set_type): | ||
examples = [] | ||
for line in lines: | ||
passage = line["passage"]["text"] | ||
passage_id = line["idx"] | ||
for question_dict in line["passage"]["questions"]: | ||
question = question_dict["question"] | ||
question_id = question_dict["idx"] | ||
answer_dicts = question_dict["answers"] | ||
examples.append( | ||
Example( | ||
guid="%s-%s-%s" % (set_type, passage_id, question_id), | ||
prompt=passage, | ||
choice_list=[ | ||
question + " " + answer_dict["text"] for answer_dict in answer_dicts | ||
], | ||
label=answer_dicts[1]["label"] == "True" | ||
if set_type != "test" | ||
else cls.CHOICE_KEYS[-1], | ||
) | ||
) | ||
|
||
return examples |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters