deeplearning / bert_multiple_choice / 1.0.0
README.md
Overview
Usage
Input
Describe the input fields for your algorithm. For example:
Parameter | Description |
---|---|
sentence | A sentence with a blank (____) section |
choices | A list of choices to select from |
Output
Parameter | Description |
---|---|
answer | Selected choice from the list |
Examples
Example 1.
- Parameter 1: A sentence with a blank.
- Parameter 2: A list of choices to select from.
Input:
{
"sentence": "I couldn't make it in time ____ I missed the train.",
"choices": ["because", "therefore", "and", "apple"]
}
Output:
{
"answer": "because"
}
Contents