(self, output_dir: str)
| 610 | ) |
| 611 | |
| 612 | def save(self, output_dir: str) -> None: |
| 613 | # Save the vocabulary. |
| 614 | _save_vocabulary(output_dir, "vocabulary", self._vocabulary) |
| 615 | |
| 616 | # Save the rest of the model. |
| 617 | super().save(output_dir) |
| 618 | |
| 619 | |
| 620 | def _save_vocabulary(output_dir, name, tokens): |
nothing calls this directly
no test coverage detected