A single set of features of data.
| 74 | |
| 75 | |
| 76 | class InputFeatures(object): |
| 77 | """A single set of features of data.""" |
| 78 | |
| 79 | def __init__(self, input_ids, input_mask, segment_ids, label_id): |
| 80 | self.input_ids = input_ids |
| 81 | self.input_mask = input_mask |
| 82 | self.segment_ids = segment_ids |
| 83 | self.label_id = label_id |
| 84 | |
| 85 | |
| 86 | class DataProcessor(object): |
no outgoing calls
no test coverage detected