We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2dc02f commit 4aadab6Copy full SHA for 4aadab6
python/pyspark/mllib/random.py
@@ -28,7 +28,7 @@
28
__all__ = ['RandomRDDs', ]
29
30
31
-class RandomRDDs:
+class RandomRDDs(object):
32
"""
33
Generator methods for creating RDDs comprised of i.i.d samples from
34
some distribution.
python/pyspark/mllib/util.py
@@ -25,7 +25,7 @@
25
from pyspark.serializers import NoOpSerializer
26
27
-class MLUtils:
+class MLUtils(object):
Helper methods to load, save and pre-process data used in MLlib.
python/pyspark/storagelevel.py
@@ -18,7 +18,7 @@
18
__all__ = ["StorageLevel"]
19
20
21
-class StorageLevel:
+class StorageLevel(object):
22
23
24
Flags for controlling the storage of an RDD. Each StorageLevel records whether to use memory,
0 commit comments