Source code for synapse.ml.vw.VowpalWabbitGenericModel

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

from synapse.ml.vw._VowpalWabbitGenericModel import _VowpalWabbitGenericModel
from synapse.ml.vw.VowpalWabbitPythonBase import (
    VowpalWabbitPythonBaseModel,
)
from pyspark.ml.common import inherit_doc
from pyspark import SparkContext, SQLContext
from pyspark.sql import DataFrame


[docs]@inherit_doc class VowpalWabbitGenericModel(_VowpalWabbitGenericModel, VowpalWabbitPythonBaseModel): pass