-
```
from sklearn import svm
from sklearn_evaluation import plot
X = [[0, 0], [1, 1]]
y = [0, 1]
clf = svm.SVC()
clf.fit(X, y)
plot.feature_importances(clf)
```
gives the error:
```
--…
-
### Describe the bug
I tried using `RFECV` with `RandomForestClassifier` in version 1.4.0 on data containing NaNs and got the following error:
```
ValueError: Input contains NaN.
```
This is my…
-
Hi!
I was trying to use step_select_vip or step_select_boruta but I get this error message:
```
Error in `step_select_boruta()`:
Caused by error:
! `terms_select()` was deprecated in recipes…
-
Hello, I'm having a problem with ranger sometimes reporting importances of 0 for all predictors.
For example, this:
`rf
-
Describe the bug
================
Load Boston in the Boruta.py leads to an import error. This is due to Sckit-learn version 1.2 and above.
To Reproduce
============
Steps to reproduce the behav…
-
There are a few major issues with the model, the largest being the way the train/test data is split. Since it is based on temporal / time series data each datapoint that is next to each other is highl…
-
**Describe the bug**
Scripts generated with `generatedcode` fail with shap.Explainer.
**To Reproduce**
Steps to reproduce the behavior:
1. Run the following test code:
```bash
poetry run -- py…
-
**Describe the bug**
Scripts generated with generatedcode fail with shap.plots.beeswarm.
**To Reproduce**
Steps to reproduce the behavior:
1. Run the following test code:
```
poetry run -- pyt…
-
There is a small annoyance I found when adding figures to model cards. The problem is that the path to the file on the storage device and the path saved in the model card can differ. This can easily r…
-
IndexError Traceback (most recent call last)
/tmp/ipykernel_27/17403233.py in
2
3 ofe = openfe()
----> 4 features = ofe.fit(data=train_x, label=train_y…