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