Re: [scikit-learn] Bookmarklet to view documentation on CircleCI

2017-04-07 Thread Loïc Estève via scikit-learn
On 12/22/2016 01:48 AM, Joel Nothman wrote: Well, you can as a browser extension. I just haven't bothered to investigate that technology when there's so much code to review and write. On 22 December 2016 at 09:33, Gael Varoquaux mailto:gael.varoqu...@normalesup.org>> wrote: It's super neat.

Re: [scikit-learn] Bookmarklet to view documentation on CircleCI

2017-04-07 Thread Loïc Estève via scikit-learn
On 12/22/2016 01:48 AM, Joel Nothman wrote: Well, you can as a browser extension. I just haven't bothered to investigate that technology when there's so much code to review and write. On 22 December 2016 at 09:33, Gael Varoquaux mailto:gael.varoqu...@normalesup.org>> wrote: It's super neat.

Re: [scikit-learn] Bookmarklet to view documentation on CircleCI

2017-04-07 Thread Loïc Estève via scikit-learn
On 12/22/2016 01:48 AM, Joel Nothman wrote: Well, you can as a browser extension. I just haven't bothered to investigate that technology when there's so much code to review and write. On 22 December 2016 at 09:33, Gael Varoquaux mailto:gael.varoqu...@normalesup.org>> wrote: It's super neat.

Re: [scikit-learn] VOTE: scikit-learn governance document

2019-02-19 Thread Loïc Estève via scikit-learn
+1 from me. Cheers, Loïc ___ scikit-learn mailing list scikit-learn@python.org https://mail.python.org/mailman/listinfo/scikit-learn

Re: [scikit-learn] MultiLabelBinarizer gives individual characters instead of the classes

2019-09-11 Thread Loïc Estève via scikit-learn
I think this caveat has been added in the dev doc (not yet in the stable doc). You may want to read: https://scikit-learn.org/dev/modules/generated/sklearn.preprocessing.MultiLabelBinarizer.html and in particular the part that starts with "A common mistake is to pass in a list". Cheers, Loïc > Hi

Re: [scikit-learn] Daily failure: Run failed: Wheel builder - master (1e53ae2)

2020-12-16 Thread Loïc Estève via scikit-learn
Me too, as a quick fix I reverted my fork (lesteve/scikit-learn) master branch to an old version to avoid this ... The better fix would be to modify the Github Action so that it does not run in forks but only in the main repo i.e. scikit-learn/scikit-learn. Cheers, Loïc > Hi, > > I keep getting

[scikit-learn] Github Discussions enabled for scikit-learn

2021-02-07 Thread Loïc Estève via scikit-learn
Hi, we enabled Github Discussions a few weeks ago. You can find it at: https://github.com/scikit-learn/scikit-learn/discussions For now we consider this as experimental, we will be monitoring it and see how useful it can be. The main hope I personally have with it, is to help build the scikit-le

[scikit-learn] Deprecation of the 'sklearn' PyPI package starts December 1st

2022-11-07 Thread Loïc Estève via scikit-learn
Hi everyone, "pip install scikit-learn" has always been the supported way to install scikit-learn with pip, but for some time, "pip install sklearn" has been working too. The scikit-learn team has decided to gradually deprecate the 'sklearn' PyPI package by doing a brownout over one year: - start

Re: [scikit-learn] Deprecation of the 'sklearn' PyPI package starts December 1st

2022-11-28 Thread Loïc Estève via scikit-learn
Hi everyone, a reminder that using sklearn rather than scikit-learn in pip commands, for example "pip install sklearn", will start failing in three days (December 1st) over some predefined time windows. More information about the 'sklearn' package deprecation is available at https://github.com/sc

Re: [scikit-learn] [ANN] New core contributor: Yao Xiao

2024-02-19 Thread Loïc Estève via scikit-learn
Welcome Xiao, great to have you on board! Cheers, Loïc > I'm also super happy to have you around Yao! I've really enjoyed your work. > > Gaël > > On Mon, Feb 19, 2024 at 09:04:10AM +0100, Adrin wrote: >> Excited to have you on board Yao! Thanks for your contributions. > >> On Mon, Feb 19, 2024, 0

Re: [scikit-learn] MinMaxScaler scales all (and only all) features in X?

2025-01-22 Thread Loïc Estève via scikit-learn
Hi, it feels like you want to use a ColumnTransformer that can apply different preprocessing to different columns, see e.g. this example: https://scikit-learn.org/stable/auto_examples/miscellaneous/plot_pipeline_display.html#displaying-a-complex-pipeline-chaining-a-column-transformer You can use