(self, ids: list[int])
| 85 | self.mask = jax.numpy.ones([1024], dtype=np.bfloat16) |
| 86 | |
| 87 | def decode(self, ids: list[int]) -> str: |
| 88 | return self.vocab.decode(ids) |
| 89 | |
| 90 | def decode_list(self, tokens: list[int]) -> list[str]: |
| 91 | return [self.decode([tok]) for tok in tokens] |
no outgoing calls
no test coverage detected