Skip to content
Snippets Groups Projects
Commit fab0d62a authored by zero323's avatar zero323 Committed by Joseph K. Bradley
Browse files

[SPARK-19467][ML][PYTHON] Remove cyclic imports from pyspark.ml.pipeline

## What changes were proposed in this pull request?

Remove cyclic imports between `pyspark.ml.pipeline` and `pyspark.ml`.

## How was this patch tested?

Existing unit tests.

Author: zero323 <zero323@users.noreply.github.com>

Closes #16814 from zero323/SPARK-19467.
parent d6dc603e
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ if sys.version > '3':
basestring = str
from pyspark import since, keyword_only, SparkContext
from pyspark.ml import Estimator, Model, Transformer
from pyspark.ml.base import Estimator, Model, Transformer
from pyspark.ml.param import Param, Params
from pyspark.ml.util import JavaMLWriter, JavaMLReader, MLReadable, MLWritable
from pyspark.ml.wrapper import JavaParams
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment