ludwig-ai--ludwig
593b94c120
pytest / Unit Tests (push) Has been cancelled
pytest / Integration (integration_tests_a) (push) Has been cancelled
pytest / Integration (integration_tests_b) (push) Has been cancelled
pytest / Integration (integration_tests_c) (push) Has been cancelled
pytest / Integration (integration_tests_d) (push) Has been cancelled
pytest / Integration (integration_tests_e) (push) Has been cancelled
pytest / Integration (integration_tests_f) (push) Has been cancelled
pytest / Integration (integration_tests_g) (push) Has been cancelled
pytest / Integration (integration_tests_h) (push) Has been cancelled
pytest / Integration (integration_tests_i) (push) Has been cancelled
pytest / Integration (integration_tests_j) (push) Has been cancelled
pytest / Distributed (distributed_a) (push) Has been cancelled
pytest / Distributed (distributed_b) (push) Has been cancelled
pytest / Distributed (distributed_c) (push) Has been cancelled
pytest / Distributed (distributed_d) (push) Has been cancelled
pytest / Distributed (distributed_e) (push) Has been cancelled
pytest / Distributed (distributed_f) (push) Has been cancelled
pytest / Minimal Install (push) Has been cancelled
pytest / Event File (push) Has been cancelled
pytest (slow) / py-slow (push) Has been cancelled
Publish JSON Schema / publish-schema (push) Has been cancelled
116 行
3.4 KiB
Python
116 行
3.4 KiB
Python
#! /usr/bin/env python
|
|
# Copyright (c) 2022 Predibase, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
# ==============================================================================
|
|
|
|
import os
|
|
|
|
import modin.pandas as pd
|
|
import numpy as np
|
|
|
|
from ludwig.data.dataframe.base import DataFrameEngine
|
|
from ludwig.globals import PREDICTIONS_SHAPES_FILE_NAME
|
|
from ludwig.utils.data_utils import get_pa_schema, load_json, save_json, split_by_slices
|
|
from ludwig.utils.dataframe_utils import flatten_df, unflatten_df
|
|
|
|
|
|
class ModinEngine(DataFrameEngine):
|
|
def __init__(self, **kwargs):
|
|
super().__init__()
|
|
|
|
def df_like(self, df, proc_cols):
|
|
# df argument unused for pandas, which can instantiate df directly
|
|
return pd.DataFrame(proc_cols)
|
|
|
|
def parallelize(self, data):
|
|
return data
|
|
|
|
def persist(self, data):
|
|
return data
|
|
|
|
def compute(self, data):
|
|
return data
|
|
|
|
def from_pandas(self, df):
|
|
return pd.DataFrame(df)
|
|
|
|
def map_objects(self, series, map_fn, meta=None):
|
|
return series.map(map_fn)
|
|
|
|
def map_batches(self, df, map_fn, enable_tensor_extension_casting=True):
|
|
return map_fn(df)
|
|
|
|
def map_partitions(self, series, map_fn, meta=None, progress_tracker=None):
|
|
result = map_fn(series)
|
|
if progress_tracker is not None:
|
|
progress_tracker.increment()
|
|
return result
|
|
|
|
def apply_objects(self, df, apply_fn, meta=None):
|
|
return df.apply(apply_fn, axis=1)
|
|
|
|
def reduce_objects(self, series, reduce_fn):
|
|
return reduce_fn(series)
|
|
|
|
def split(self, df, probabilities):
|
|
return split_by_slices(df.iloc, len(df), probabilities)
|
|
|
|
def remove_empty_partitions(self, df):
|
|
return df
|
|
|
|
def to_parquet(self, df, path, index=False):
|
|
schema = get_pa_schema(df)
|
|
df.to_parquet(
|
|
path,
|
|
engine="pyarrow",
|
|
index=index,
|
|
schema=schema,
|
|
)
|
|
|
|
def write_predictions(self, df: pd.DataFrame, path: str):
|
|
df, column_shapes = flatten_df(df, self)
|
|
self.to_parquet(df, path)
|
|
save_json(os.path.join(os.path.dirname(path), PREDICTIONS_SHAPES_FILE_NAME), column_shapes)
|
|
|
|
def read_predictions(self, path: str) -> pd.DataFrame:
|
|
pred_df = pd.read_parquet(path)
|
|
column_shapes = load_json(os.path.join(os.path.dirname(path), PREDICTIONS_SHAPES_FILE_NAME))
|
|
return unflatten_df(pred_df, column_shapes, self)
|
|
|
|
def to_ray_dataset(self, df):
|
|
from ray.data import from_modin
|
|
|
|
return from_modin(df)
|
|
|
|
def from_ray_dataset(self, dataset) -> pd.DataFrame:
|
|
return dataset.to_modin()
|
|
|
|
def reset_index(self, df):
|
|
return df.reset_index(drop=True)
|
|
|
|
@property
|
|
def array_lib(self):
|
|
return np
|
|
|
|
@property
|
|
def df_lib(self):
|
|
return pd
|
|
|
|
@property
|
|
def partitioned(self):
|
|
return False
|
|
|
|
def set_parallelism(self, parallelism):
|
|
pass
|