Create dataset from pandas DataFrame using standard Ray.
(self, df: Any)
| 272 | return ray.data.from_huggingface(hf_dataset) |
| 273 | |
| 274 | def from_pandas(self, df: Any) -> Any: |
| 275 | """Create dataset from pandas DataFrame using standard Ray.""" |
| 276 | return ray.data.from_pandas(df) |
| 277 | |
| 278 | def from_arrow(self, table: Any) -> Any: |
| 279 | """Create dataset from Arrow table using standard Ray.""" |
no outgoing calls
no test coverage detected