|
Hello Flink experts,
val inputDS: DataSet[(Int, Int, Int, Int, Double)] = env.readCsvFile[(Int, Int, Int, Int, Double)]( pathToTrainingFile) ... als.fit(inputDS, parameters)
However when I used only 2 features (i.e passing DataSet[(Int, Int, Double)] to fit()), it went successfully. Is it a limitation in ALS in general or it is an configuration issue?
I would appreciate any info on this. Thanks.
Regards, BH
|