(self, opt, motion_dataset, w_vectorizer)
| 298 | |
| 299 | class MMGeneratedDataset(Dataset): |
| 300 | def __init__(self, opt, motion_dataset, w_vectorizer): |
| 301 | self.opt = opt |
| 302 | self.dataset = motion_dataset.mm_generated_motion |
| 303 | self.w_vectorizer = w_vectorizer |
| 304 | |
| 305 | def __len__(self): |
| 306 | return len(self.dataset) |
nothing calls this directly
no outgoing calls
no test coverage detected