MCPcopy Create free account
hub / github.com/feast-dev/feast / read_text

Method read_text

sdk/python/feast/infra/ray_initializer.py:226–228  ·  view source on GitHub ↗

Read plain-text file(s).

(self, path: Union[str, List[str]], **kwargs)

Source from the content-addressed store, hash-verified

224 return ray.data.read_json(path, **kwargs)
225
226 def read_text(self, path: Union[str, List[str]], **kwargs) -> Any:
227 """Read plain-text file(s)."""
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."""

Callers 13

read_feastignoreFunction · 0.45
_loadMethod · 0.45
_remoteMethod · 0.45
__init__Method · 0.45
get_example_repoFunction · 0.45
_notebooksMethod · 0.45

Calls

no outgoing calls