Zakaria Nacer
Zakaria Nacer
Hi, While looking for the first sklearn task (```X has feature names, but LinearRegression was fitted without feature names```), I noticed that this warning is due to the function ```convert_to_model```...
This seems to have already be discussed in : #2966 To avoid the warning about not having valid feature names, features name have been removed from the given model. I...
Hi, I tried to update a few notebooks, but I am stuck with an error from pre-commit check (`Import block is un-sorted or un-formatted`). I tried to fix it by...
Thanks ! Managed to use `ruff check notebook.ipynb --fix` to correct the problem.
I think a good example would be the scikit-learn documentation. When you go in the API documentation of an object or function, there is a section "Examples using {}". e.g.:...
Hi, The documentation contains some API Examples. The examples are useful but do not covers all the API reference. And there is no direct link between them. It would be...
I beleive a note on how to migrate from a legacy to a modern function would be helpful. This could be a quick to do and refered to in the...
Hi, I manage to reproduce this error. It can be corrected by a change in the line 250 of ```captum/attr/_utils/visualization.py```: ```250 plt_axis.grid(b=False)``` to ```250 plt_axis.grid(visible=False)``` After this change, it worked...
The issue has already been fixed: #1118 You can install directely from source to make it works : ```pip install git+https://github.com/pytorch/captum.git```
I have the same issue using a remote notebook. issue #1127 suggest to comment the line : ` os.environ["WERKZEUG_RUN_MAIN"] = "true" # hides starting message` in your `/home/ec2-user/anaconda3/envs/pytorch_p39/lib/python3.9/site-packages/captum/insights/attr_vis/server.py ` This...