Mavs

Results 24 issues of Mavs

## Related Issue or bug Closes #2769 #### Describe the changes you've made Running `deepcopy(pipeline)` on a pipleine containing a catboost model returns the catboost estimator instead of the pipeline...

## Related Issue or bug Closes #2829 and #2827 #### Describe the changes you've made * Move tests dir to root folder (outside code base) -> Change configuration files accordingly...

### Describe the feature you want to add to this project * I noticed we have `pycaret\internal\pycaret_experiment\utils.py`, `pycaret/internal/utils.py` and `pycaret/utils`. We should move everything to `pycaret/utils` imo. * We have...

enhancement
refactor

**Describe the bug** LabelEncoder returns a cudf array even when output_type="numpy". **Steps/Code to reproduce bug** ```python from cuml.preprocessing import LabelEncoder a = LabelEncoder(output_type="numpy").fit_transform(pd.Series(["a", "b", "a"])) print(type(a)) >>> ``` **Expected behavior**...

bug
inactive-30d
inactive-90d

#### Describe the bug The output of imblearn's pipeline is inconsistent for `fit_transform` and `fit().transform()` (see example). The reason this happens is because in the `transform` method SMOTE is not...

@kernc Hi. I see there are many PRs that would greatly improve the library ready to merge to `master`. Any idea when this will happen and a new release will...

Fix for #958. The problem arises because a numpy array is forced on the provided input. If the list contains only numbers and strings, the numerical elements are converted to...

I noticed conda is behind on version: https://github.com/conda-forge/explainerdashboard-feedstock/pull/41/

Closes #5677 Adds the `feature_names_in_` attributes to all estimators. Code copied from sklearn's [BaseEstimator](https://github.com/scikit-learn/scikit-learn/blob/3f89022fa/sklearn/base.py#L137).

Cython / Python
improvement
non-breaking

**Is your feature request related to a problem? Please describe.** To be able to use cuml estimators as a sklearn drop-in replacement, they should have the same attributes. One often...

feature request
? - Needs Triage