You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Apache Spark (JIRA)" <ji...@apache.org> on 2017/03/13 23:02:41 UTC

[jira] [Commented] (SPARK-19940) FPGrowthModel.transform should skip duplicated items

    [ https://issues.apache.org/jira/browse/SPARK-19940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15923146#comment-15923146 ] 

Apache Spark commented on SPARK-19940:
--------------------------------------

User 'zero323' has created a pull request for this issue:
https://github.com/apache/spark/pull/17283

> FPGrowthModel.transform should skip duplicated items
> ----------------------------------------------------
>
>                 Key: SPARK-19940
>                 URL: https://issues.apache.org/jira/browse/SPARK-19940
>             Project: Spark
>          Issue Type: Bug
>          Components: ML
>    Affects Versions: 2.2.0
>            Reporter: Maciej Szymkiewicz
>            Priority: Minor
>
> Due to misplaced {{distinct}} {{FPGrowthModel.transform} generates duplicated items in the "prediction":
> {code}
> scala> val data = spark.read.text("data/mllib/sample_fpgrowth.txt").select(split($"value", "\\s+").alias("features")) 
> data: org.apache.spark.sql.DataFrame = [features: array<string>]
> scala> val data = spark.read.text("data/mllib/sample_fpgrowth.txt").select(split($"value", "\\s+").alias("features")) 
> data: org.apache.spark.sql.DataFrame = [features: array<string>]
> scala> fpm.transform(Seq(Array("t", "s")).toDF("features")).show(1, false)
> +--------+---------------------+
> |features|prediction           |
> +--------+---------------------+
> |[t, s]  |[y, x, z, x, y, x, z]|
> +--------+---------------------+
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org