-
Notifications
You must be signed in to change notification settings - Fork 411
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
Compute predictions from selected model #423
Comments
I'll like to work on this |
@asuzukosi great! Some tips:
Please let me know if you need more help. |
hey, is this issue still open? can i work on this |
hey @matrixhead! the issue is still open, I'm assigning it to you |
#460 |
@matrixhead few comments:
|
|
Hi @pplonski , I just opened a PR for this. I'm sure that more work would be required before we can merge it, but early feedback would be very helpful. |
Quick and dirty workaround until this is oficially implemented: from supervised.model_framework import ModelFramework
model = ModelFramework.load("AUTOML_FOLDER_NAME_HERE", model_subpath="MODEL_FOLDER_NAME_HERE") For regression results: y_pred = automl._base_predict(qdqd_X_test, model=model)["prediction"].to_numpy() For classification results: y_pred = automl._base_predict(qdqd_X_test, model=model)["label"].to_numpy() Hopefully i can save someones time. :D |
I am trying to implement this work around, but I am getting the error "module 'supervised.automl' has no attribute '_base_predict'". Do I need to be loading automl in a different way than "from supervised import automl"? |
Thank you @Reese-Martin, during summer we will have intern, I hope this will be implemented :) |
Details in discussion #421
The text was updated successfully, but these errors were encountered: