We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef84269 commit 9471f17Copy full SHA for 9471f17
tests/test_implicit.py
@@ -28,5 +28,5 @@ def test_model(self):
28
model.fit(counts, show_progress=False)
29
rows, cols = model.item_factors, model.user_factors
30
31
- assert not np.isnan(np.sum(cols))
32
- assert not np.isnan(np.sum(rows))
+ assert not np.isnan(np.sum(cols.to_numpy()))
+ assert not np.isnan(np.sum(rows.to_numpy()))
0 commit comments