Issue with Error message stating inputs are of wrong sizes
I am getting the following error, my inputs are of the correct input size. I am not sure where to contact the authors for assistance so writing this up as an issue. Xtrain is all ones and zeros (it comes from a 1hot encoder) and y is all ones and zeros. Example code given in documentation works fine so not an install issue.
I used the following code (I am running on a 16 core machine): fs = ReliefF(n_features_to_select=2000, n_neighbors=100,n_jobs=-1) fs.fit(Xtrain, y)
Shapes for additional info:
y.shape (3672,) Xtrain.shape (3672, 1688789)
Error message:
Traceback (most recent call last):
File "reliefChr19.py", line 180, in
were you able to figure out this issue?
No, I have not. However, I know have a set of data that we can use that is public so I can give it to you for debugging purposes. I will write up a script in the next few days if that is useful?
A script for reproducing this issue is helpful. Thank you!
One questions, what is type(Xtrain) in your codes?
Yeah i'm just trying to figure out if there is a bug that needs to be fixed or if there might be a user error issue. Last night we just released a new version with a number of updates/fixes. So perhaps that alone might resolve your issue.
Ok, I will update the version and try again.
Xtrain was a sparse that I made using the 1-hot encoding in sci-kit learn that I convert to dense using Xtrain = Xtrain.todense(),
I updated and it seems to be chugging away with no error, so a good sign!