(self, t: List[int])
| 32 | return t |
| 33 | |
| 34 | def decode(self, t: List[int]) -> str: |
| 35 | return self.tokenizer.decode(t) |
| 36 | |
| 37 | class BaseDataset(Dataset): |
| 38 | def __init__(self, tokenizer=None, max_len=2048, test=False, category="", dedup=False, seed=None): |
nothing calls this directly
no outgoing calls
no test coverage detected