aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/examples/kmeans.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/examples/kmeans.py b/python/examples/kmeans.py
index ad2be21178..72cf9f88c6 100644
--- a/python/examples/kmeans.py
+++ b/python/examples/kmeans.py
@@ -33,7 +33,9 @@ if __name__ == "__main__":
K = int(sys.argv[3])
convergeDist = float(sys.argv[4])
- kPoints = data.takeSample(False, K, 34)
+ # TODO: change this after we port takeSample()
+ #kPoints = data.takeSample(False, K, 34)
+ kPoints = data.take(K)
tempDist = 1.0
while tempDist > convergeDist: