I'm trying to create a Collaborative filtering model for custom orders and getting useful results using ALS.train() , but I would like to try ALS.trianImplicit() , but trianImplicit() predicts only zeros in the same dataset as ASL.train() I got decent forecasts.
When using ALS.trianImplicit() to train the model, I received the following warnings:
15/09/01 15:39:29 WARN BLAS: Failed to load implementation from: com.github.fommil.netlib.NativeSystemBLAS 15/09/01 15:39:29 WARN BLAS: Failed to load implementation from: com.github.fommil.netlib.NativeRefBLAS
Does this mean that it was a mistake , not a warning, and the model simply could not teach anything due to missing libraries?
source share