我正在尝试使用pyspark.ml构建GLR模型,并创建了一个管道。但是对于我的GLR模型,我希望看到带有和不带有offset列的结果。因此,对于spy
,我有:
ParamGridBuilder
这是我收到的:
paramGrid = ParamGridBuilder().addGrid(glr_F.offsetCol, [None, "lg_expMo"]).build()
如何将TypeError: Could not convert <class 'pyspark.sql.column.Column'> to string type
设置为有效输入?我也尝试过None
,它也不起作用。