-
Notifications
You must be signed in to change notification settings - Fork 178
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
Bug: incorrect shape size set for categorical field in classifier model. #25
Comments
Hmmm, it seems I jumped the gun. When I said my model worked, it turns out it only worked for that set of hyperparameters or something? That is to say, it worked when I ran it manually via |
Input here: https://gist.github.com/germanjoey/4204c3b4d49476b78fc3edcab0417b0e
|
Looks like this is a more fundamental issue - Combined with the above reversion of
to this:
That gets the model working through the entire search, but I'm hesitant to submit a PR because I wonder if there's a more efficient way to do this. The model I'm testing on is small, but I imagine this could be a big performance hit on bigger data sets. What do y'all think? |
While trying out automl_gs on this uci dataset, I got this error:
After some sleuthing, I eventually figured out that the error is that the shape size for the offending column was set incorrectly in
build_model()
:I don't understand what the purpose of that `if-else clause. It looks like this change was introduced in 1dcb9e2; reverting that commit allows my model to work.
The text was updated successfully, but these errors were encountered: