(self, index)
| 266 | return self.num_samples |
| 267 | |
| 268 | def __getitem__(self, index): |
| 269 | example = {} |
| 270 | example["prompt"] = self.prompt |
| 271 | example["index"] = index |
| 272 | return example |
| 273 | |
| 274 | |
| 275 | class CustomDiffusionDataset(Dataset): |
nothing calls this directly
no outgoing calls
no test coverage detected