Guillaume Lemaitre

Results 87 issues of Guillaume Lemaitre

It seems that we introduced a regression in the HTML representation. The following code is failing: ```python import numpy as np from sklearn.linear_model import RidgeCV RidgeCV(np.logspace(-3, 3, num=10) ``` leads...

Bug

Since we are moving, `_check_n_features` and `_check_feature_names` into a new module, I'm wondering if we should make them public as well. I can imagine some people that don't want to...

Easy
Documentation

As stated in https://github.com/scikit-learn/scikit-learn/issues/27151, it would be great to reduce the number of examples in the gallery. Right now, we have three examples for: - OPTICS: https://scikit-learn.org/dev/auto_examples/cluster/plot_optics.html#sphx-glr-auto-examples-cluster-plot-optics-py - DBSCAN: https://scikit-learn.org/dev/auto_examples/cluster/plot_dbscan.html#sphx-glr-auto-examples-cluster-plot-dbscan-py...

Documentation

This PR allows to call some context manager before calling the function in the parallel context. It provides the following functionalities: - add `call_context` in `Parallel` to pass a list...

I got kind of surprise when I did the following display ```python import skrub from sklearn.datasets import fetch_california_housing skrub.patch_display() X, y = fetch_california_housing(return_X_y=True, as_frame=True) X.head() ``` ![image](https://github.com/user-attachments/assets/3489931e-b91e-48d0-b462-25db0a14d906) It took some...

In dark mode, the text below figure is really close of the bottom of the figure. I think that we can change our css with a little trick: ``` /*...

documentation

Passing the option `return_indices=True` in `skrub.cross_validate` raises an error: ```python import skrub from sklearn.datasets import make_classification from sklearn.linear_model import LogisticRegression X_a, y_a = make_classification(random_state=0) X, y = skrub.X(X_a), skrub.y(y_a) log_reg...

bug
data_ops