From 57ac03d899c9e3893e5a4a75f867d20eef02c9d3 Mon Sep 17 00:00:00 2001 From: Yu ISHIKAWA Date: Wed, 24 Jun 2015 07:50:20 +0900 Subject: [PATCH] Remove the unnecessary import in Python unit testing --- python/pyspark/mllib/clustering.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/pyspark/mllib/clustering.py b/python/pyspark/mllib/clustering.py index 2ee42a8a653a6..5f33be30676ef 100644 --- a/python/pyspark/mllib/clustering.py +++ b/python/pyspark/mllib/clustering.py @@ -590,7 +590,6 @@ class LDAModel(JavaModelWrapper): Blei, Ng, and Jordan. "Latent Dirichlet Allocation." JMLR, 2003. >>> from pyspark.mllib.linalg import Vectors - >>> from collections import namedtuple >>> from numpy.testing import assert_almost_equal >>> data = [ ... [1, Vectors.dense([0.0, 1.0])],