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
When I am trying to use the fit function with the UnwrapperClassfier, I constantly keep getting a type error that says the following:
I am not sure if this is an issue faced earlier, but if further details can be provided for the input data types for the functions that would be helpful as well.
Looking forward to hearing from you, thank you very much!
The text was updated successfully, but these errors were encountered:
It seems to be related to the mismatch of your X_train and weights, i.e., the number of input features (X_train.shape[1]) does not match the number of rows of the first hidden layer weights (weights[0].shape[0]).
Another possible reason is that if your response varable y has more than one column, then you will also get an error. Currently, the package only supports binary classification.
Thanks so much for your solution! I was able to solve that error by matching all the dimensions within the weights of the hidden layers.
But I am receiving another error as seen here:
I am using the "UnwrapperClassifier" on a CNN based network, but all the input values have been vectorized. I am not sure what formatting error is being recognized.
Looking forward to hearing from you!
Hi,
When I am trying to use the fit function with the UnwrapperClassfier, I constantly keep getting a type error that says the following:
I am not sure if this is an issue faced earlier, but if further details can be provided for the input data types for the functions that would be helpful as well.
Looking forward to hearing from you, thank you very much!
The text was updated successfully, but these errors were encountered: