(file_pattern, shuffle=None, seed=None)
| 1952 | @staticmethod |
| 1953 | @functools.wraps(DatasetV2.list_files) |
| 1954 | def list_files(file_pattern, shuffle=None, seed=None): |
| 1955 | return DatasetV1Adapter(DatasetV2.list_files(file_pattern, shuffle, seed)) |
| 1956 | |
| 1957 | @functools.wraps(DatasetV2.repeat) |
| 1958 | def repeat(self, count=None): |
nothing calls this directly
no test coverage detected