Fix InputExample docstring (#2891)
This commit is contained in:
@@ -32,11 +32,11 @@ class InputExample(object):
|
|||||||
Args:
|
Args:
|
||||||
guid: Unique id for the example.
|
guid: Unique id for the example.
|
||||||
text_a: string. The untokenized text of the first sequence. For single
|
text_a: string. The untokenized text of the first sequence. For single
|
||||||
sequence tasks, only this sequence must be specified.
|
sequence tasks, only this sequence must be specified.
|
||||||
text_b: (Optional) string. The untokenized text of the second sequence.
|
text_b: (Optional) string. The untokenized text of the second sequence.
|
||||||
Only must be specified for sequence pair tasks.
|
Only must be specified for sequence pair tasks.
|
||||||
label: (Optional) string. The label of the example. This should be
|
label: (Optional) string. The label of the example. This should be
|
||||||
specified for train and dev examples, but not for test examples.
|
specified for train and dev examples, but not for test examples.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, guid, text_a, text_b=None, label=None):
|
def __init__(self, guid, text_a, text_b=None, label=None):
|
||||||
|
|||||||
Reference in New Issue
Block a user