Github user mateiz commented on a diff in the pull request:
https://github.com/apache/spark/pull/685#discussion_r13170969
--- Diff: mllib/src/main/scala/org/apache/spark/mllib/util/MLUtils.scala ---
@@ -189,8 +221,11 @@ object MLUtils {
* @param dir Directory to the input data files.
* @return An RDD of LabeledPoint. Each labeled point has two elements:
the first element is
* the label, and the second element represents the feature
values (an array of Double).
+ *
+ * @deprecated Should use [[org.apache.spark.rdd.RDD#saveAsTextFile]]
for saving and
+ * [[org.apache.spark.mllib.util.MLUtils#loadLabeledPoints]]
for loading.
*/
- @Experimental
+ @deprecated("Should use RDD#saveAsTextFile and MLUtils#loadLabeledPoints
instead.", "1.0")
--- End diff --
Same here, use `.`
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---