-
-
Notifications
You must be signed in to change notification settings - Fork 166
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
[fastai] 'DataFrame' object has no attribute 'to_frame' with fastai #523
Comments
Thanks, it is required to pass An example for the The already implemented We could add native support for |
Thanks, Hubert. fastai |
Yes, as I said, you need to create a new function, which will use the |
Hi Hubert, I think I got the basic idea, but I struggled for quite a while as I'm new to Python and fastai. I got the error as illustrated in the screenshot. It seems the |
Hi! Maybe you can try |
Is it possible that the tensor format predictions returned by |
Yes, you need to first apply the predict_function outside of the explainer and see what it returns. |
It returns a tensor. For example, |
It should return a one dimensional numpy array |
I'm trying to wrap a
fastai
tabularlearner
with DALEX. I got'DataFrame' object has no attribute 'to_frame'
error withdx.Explainer(learn, xs, y, label = "Deep NN")
. Any potential problems with this line of code? Thanks!The text was updated successfully, but these errors were encountered: