Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Several fixes relating to required dependencies changing their behavior:
Shap
It seems
shap==0.43.0
and onwards changed the name of explainer classes --- see shap/shap#3247Pinning the shap version to prior to this change is a temporary quick fix.
Pandas
Additionally, it seems
pandas==2.0
and onwards changed something about file loading that broke the notebooks. A simple fix is setting pandas to use any prior version. I fixed it topandas>=1.3.2,<=1.5.3
. I ran the AReM.ipynb notebook and it runs fine with these fixes.Numpy
Some other quick fixes include pinning numpy to a version prior to 1.20, relating to this error:
I didn't fix this one as it seems this older version of numpy is not compatible with arm CPUs, leading to other problems. I supposed that if you're running x86 CPUs pinning this numpy version should fix the issues.
Closes #48 #56
Changes: