Source code for synapse.ml.vw.VowpalWabbitGeneric

# Copyright (C) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See LICENSE in project root for information.

from synapse.ml.vw._VowpalWabbitGeneric import _VowpalWabbitGeneric
from synapse.ml.vw.VowpalWabbitPythonBase import (
    VowpalWabbitPythonBase,
)
from pyspark.ml.common import inherit_doc


[docs]@inherit_doc class VowpalWabbitGeneric(_VowpalWabbitGeneric, VowpalWabbitPythonBase): pass