Read image files (PNG, JPEG, …) from a directory as numpy arrays.
(self, path: Union[str, List[str]], **kwargs)
| 228 | return ray.data.read_text(path, **kwargs) |
| 229 | |
| 230 | def read_images(self, path: Union[str, List[str]], **kwargs) -> Any: |
| 231 | """Read image files (PNG, JPEG, …) from a directory as numpy arrays.""" |
| 232 | return ray.data.read_images(path, **kwargs) |
| 233 | |
| 234 | def read_binary_files(self, path: Union[str, List[str]], **kwargs) -> Any: |
| 235 | """Read arbitrary binary files; each row has 'path' and 'bytes' columns.""" |
no outgoing calls
no test coverage detected