(self, transformation_func)
| 2078 | |
| 2079 | @functools.wraps(DatasetV2.apply) |
| 2080 | def apply(self, transformation_func): |
| 2081 | return DatasetV1Adapter(super(DatasetV1, self).apply(transformation_func)) |
| 2082 | |
| 2083 | @functools.wraps(DatasetV2.window) |
| 2084 | def window(self, size, shift=None, stride=1, drop_remainder=False): |
nothing calls this directly
no test coverage detected