我正在使用PySpark使用ALS进行协作过滤。我的原始用户名和项目ID是字符串,因此我使用StringIndexer将其转换为数字索引(PySpark的ALS模型要求我们这样做)。

拟合模型后,我可以为每个用户获得最重要的3条建议,如下所示:

recs = (
    model
    .recommendForAllUsers(3)
)


recs数据框如下所示:

+-----------+--------------------+
|userIdIndex|     recommendations|
+-----------+--------------------+
|       1580|[[10096,3.6725707...|
|       4900|[[10096,3.0137873...|
|       5300|[[10096,2.7274625...|
|       6620|[[10096,2.4493625...|
|       7240|[[10096,2.4928937...|
+-----------+--------------------+
only showing top 5 rows

root
 |-- userIdIndex: integer (nullable = false)
 |-- recommendations: array (nullable = true)
 |    |-- element: struct (containsNull = true)
 |    |    |-- productIdIndex: integer (nullable = true)
 |    |    |-- rating: float (nullable = true)


我想使用此数据帧创建一个巨大的JSOM转储,我可以这样:

(
    recs
    .toJSON()
    .saveAsTextFile("name_i_must_hide.recs")
)


这些json的示例是:

{
  "userIdIndex": 1580,
  "recommendations": [
    {
      "productIdIndex": 10096,
      "rating": 3.6725707
    },
    {
      "productIdIndex": 10141,
      "rating": 3.61542
    },
    {
      "productIdIndex": 11591,
      "rating": 3.536216
    }
  ]
}


userIdIndexproductIdIndex键归因于StringIndexer转换。

如何获得这些列的原始值?我怀疑必须使用IndexToString转换器,但是由于数据嵌套在recs数据框内的数组中,因此我无法完全弄清楚。

我尝试使用Pipeline评估程序(stages=[StringIndexer, ALS, IndexToString]),但似乎该评估程序不支持这些索引器。

干杯!

最佳答案

在这两种情况下,您都需要访问标签列表。可以使用StringIndexerModel进行访问

user_indexer_model = ...  # type: StringIndexerModel
user_labels = user_indexer_model.labels

product_indexer_model = ...  # type: StringIndexerModel
product_labels = product_indexer_model.labels


或列元数据。

对于userIdIndex,您只需应用IndexToString

from pyspark.ml.feature import IndexToString

user_id_to_label = IndexToString(
    inputCol="userIdIndex", outputCol="userId", labels=user_labels)
user_id_to_label.transform(recs)


对于建议,您将需要udf或类似这样的表达式:

from pyspark.sql.functions import array, col, lit, struct

n = 3  # Same as numItems

product_labels_ = array(*[lit(x) for x in product_labels])
recommendations = array(*[struct(
    product_labels_[col("recommendations")[i]["productIdIndex"]].alias("productId"),
    col("recommendations")[i]["rating"].alias("rating")
) for i in range(n)])

recs.withColumn("recommendations", recommendations)

08-25 03:38