Ruben
Ruben
`getfullargspec` is a drop in replacement for `getargspec`, see [docs](https://docs.python.org/3/library/inspect.html#inspect.getargspec) for details
Change as per FutureWarning in sklearn, to allow eli5 to be used with sklearn 0.24 and newer. [docs](https://scikit-learn.org/stable/modules/generated/sklearn.metrics.check_scoring.html) Currently issues FutureWarning ``` File "/app/model/model.py", line 3, in import eli5 File...
Made import compliant with newer API as per warning: ``` File "/app/model/model.py", line 3, in import eli5 File "/usr/local/lib/python3.7/site-packages/eli5/__init__.py", line 13, in from .sklearn import explain_weights_sklearn, explain_prediction_sklearn File "/usr/local/lib/python3.7/site-packages/eli5/sklearn/__init__.py", line...
A new PR to get the changes needed for new sklearn. Combines #396 #397 #398 into one change. Any update on when a new version of eli5 is to be...
https://www.attrs.org/en/stable/changelog.html and the corresponding deprecation warning: ``` eli5\base_utils.py:36 C:\Users\...\eli5\eli5\base_utils.py:36: DeprecationWarning: The usage of `cmp` is deprecated and will be removed on or after 2021-06-01. Please use `eq` and `order` instead....
Hi, this module appears to not have had any changes to it in a while. Are you still actively maintaining it?
I'm trying to install `gosdt` on a docker container (just to have a clean linux environment, I'm pretty sure the issue is unrelated to docker) This is after all listed...
### All Submissions: * [x] Contributions should target the `dev` branch. Did you create your branch from `dev`? * [x] Have you followed the guidelines in our Contributing document? *...
Using latest `qdrant-client==1.11.2` with latest `numpy==2.1.1` and a sparse collection results in: ```AttributeError: `np.NINF` was removed in the NumPy 2.0 release. Use `-np.inf` instead.``` The obvious two solutions would be...