Module imported (2.30.0)

Imported models.

Classes

ONNXModel

ONNXModel(
    model_path: str, *, session: typing.Optional[bigframes.session.Session] = None
)

Imported Open Neural Network Exchange (ONNX) model.

TensorFlowModel

TensorFlowModel(
    model_path: str, *, session: typing.Optional[bigframes.session.Session] = None
)

Imported TensorFlow model.

XGBoostModel

XGBoostModel(
    model_path: str,
    *,
    input: typing.Optional[typing.Mapping[str, str]] = None,
    output: typing.Optional[typing.Mapping[str, str]] = None,
    session: typing.Optional[bigframes.session.Session] = None
)

Imported XGBoost model.

Modules Functions

cast

cast(typ, val)

Cast a value to a type.

This returns the value unchanged. To the type checker this signals that the return value has the designated type, but at runtime we intentionally don't check anything (we want this to be as fast as possible).