Michael Griffiths

Results 1 comments of Michael Griffiths

I patched the code to bypass this error (_ran into a second_). FYI ```diff def decode(self, token_ids: NDArray[np.int64]) -> List[str]: + if isinstance(token_ids, torch.Tensor): + token_ids = token_ids.numpy() if isinstance(token_ids,...