You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
334 B
10 lines
334 B
class InputExample(object): |
|
def __init__(self, text_a): |
|
self.text_a = text_a |
|
|
|
class InputFeature(object): |
|
def __init__(self, input_ids, input_mask, input_len, segment_ids): |
|
self.input_ids = input_ids |
|
self.input_mask = input_mask |
|
self.segment_ids = segment_ids |
|
self.input_len = input_len |