(self, *args, **kwargs)
| 5 | |
| 6 | class ImageFolder_FakeWrapper(Dataset): |
| 7 | def __init__(self, *args, **kwargs): |
| 8 | print("ImageFolder_FakeWrapper initialized") |
| 9 | |
| 10 | def __getitem__(self, index): |
| 11 |
nothing calls this directly
no outgoing calls
no test coverage detected