Serialize this instance to a JSON string.
(self)
| 93 | return output |
| 94 | |
| 95 | def to_json_string(self): |
| 96 | """Serialize this instance to a JSON string.""" |
| 97 | return json.dumps(self.to_dict(), indent=2, sort_keys=True) + "\n" |
| 98 | |
| 99 | @staticmethod |
| 100 | def load_examples(path: str) -> List['InputExample']: |