(self, text_list)
| 35 | Simple dataset returning a single text (TinyStory) per index. |
| 36 | """ |
| 37 | def __init__(self, text_list): |
| 38 | super().__init__() |
| 39 | self.texts = text_list |
| 40 | |
| 41 | def __len__(self): |
| 42 | return len(self.texts) |
nothing calls this directly
no outgoing calls
no test coverage detected