Serialize this instance to a JSON string.
(self)
| 74 | return output |
| 75 | |
| 76 | def to_json_string(self): |
| 77 | """Serialize this instance to a JSON string.""" |
| 78 | return json.dumps(self.to_dict(), indent=2, sort_keys=True) + "\n" |
| 79 | |
| 80 | @staticmethod |
| 81 | def load_examples(path: str) -> List['InputExample']: |