You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running the lib on a virtual server with 64gb RAM.
My data consist of:
200k distinct interaction between users and item
52k x 11 user_feature matrix
2770 x 49 item_feature matrix
all NA are replaced by 0
when i try to run it gives me this error: AssertionError: user factors [v_u] are not finite - try decreasing feature/sample_weight magnitudes
sometimes it would give me item factors error as well
However, if I run on 170k user interaction without user_features and item_features it would run smoothly
What is the meaning of the error?
The text was updated successfully, but these errors were encountered:
I too have this same error. Even with my item features dataframe comprising two columns [product_id INT32, retailprice FLOAT64] of 270 rows. I try also with two different columns, [product_id, category_id INT16], and it's the same issue.
I can include sample_weight. If I try to add any user or product attributes I get the error; AssertionError: item weights [w_i] are not finite
I may have resolved this issue that I'm facing by re-presenting all the numeric data as scaled values between 0 and 1, and with categories IDs being one-hot encoded (as you'd expect).
I'm running the lib on a virtual server with 64gb RAM.
My data consist of:
200k distinct interaction between users and item
52k x 11 user_feature matrix
2770 x 49 item_feature matrix
all NA are replaced by 0
when i try to run it gives me this error:
AssertionError: user factors [v_u] are not finite - try decreasing feature/sample_weight magnitudes
sometimes it would give me item factors error as well
However, if I run on 170k user interaction without user_features and item_features it would run smoothly
What is the meaning of the error?
The text was updated successfully, but these errors were encountered: