-
Notifications
You must be signed in to change notification settings - Fork 146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the number of features must be even in fp16 mode - error #86
Comments
Indeed, the feature vector size must be even in fp16 mode, due to the way the optimizations are implemented. There is not much I can do here, unfortunately. You should switch to the regular fp32. |
Hello Sir, |
You should ensure that the number of your features is even. That is, |
ok, lets say we have an 3D image 50x50x50 with pixel float values and the groundtruth with values 0 and 1, for 2 clusters. The parameters |
The second way is to work with float32. There is no third way for this library. |
And this is what I've done at first, as above. First, the data type was float32. And then I changed it to float16. I had than the problem with the number of features. This is why I asked about the shape of the arrays?
|
Hello Sir, I have: np.arrays with type float32 == y_train [1000, 1] How can I use these data with the method knn ? Thanks sir |
Hello Sir , Can you please help me with that ? 5 data images of size 50x50x50 for testing (float 32) How can we use knn (python) with the data? Thanks |
Hello dear Sir,
i got this error "the number of features must be even in fp16 mode", when i run this code.
trainData is an np array of type float32 with the shape [100000,1]
trainDataGroundtruth is the groundtruth of train Data. An array of float32, that contains 1 and 0 value and has the shape [100000,]
I alwas get the error above. Can you please help me on this?
Thanks
Sami
The text was updated successfully, but these errors were encountered: