text="...."
(self, text)
| 101 | self.sp.Load(model_path) |
| 102 | |
| 103 | def encode(self, text): |
| 104 | """ |
| 105 | text="...." |
| 106 | """ |
| 107 | return self.sp.EncodeAsIds(text) |
| 108 | |
| 109 | def decode(self, tokens): |
| 110 | """ |
nothing calls this directly
no test coverage detected