(self)
| 749 | return self |
| 750 | |
| 751 | def to_string(self) -> str: |
| 752 | batch = to_list(self.to_batch().meta) |
| 753 | return json.dumps(batch) |
| 754 | |
| 755 | def from_string(self, string: str): |
| 756 | batch = to_tensor(dotdict(json.loads(string)), ignore_list=True) |
no test coverage detected