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 tried fixing it but it ended up in an error on line 1288 in sklearn/preprocessing/data.py in normalize() because the function inplace_csr_row_normalize_l2(X) didn't seem to be able to handle float32
The text was updated successfully, but these errors were encountered:
inplace_csr_row_normalize_l2 is implemented in cython and can only handle double (np.float64) at the moment. To handle float32 we need to use fused types of cython, which is not implemented yet.
I tried fixing it but it ended up in an error on line 1288 in sklearn/preprocessing/data.py in normalize() because the function inplace_csr_row_normalize_l2(X) didn't seem to be able to handle float32
The text was updated successfully, but these errors were encountered: