From carlos.gonzalez1006 at gmail.com Sat Feb 3 12:16:52 2024 From: carlos.gonzalez1006 at gmail.com (carlos gonzalez) Date: Sat, 3 Feb 2024 14:16:52 -0300 Subject: [scikit-learn] error code linear models Message-ID: Dear friends, this is a friend from Latin America reporting the error in one of his guides, the one on linear problems, which in the following paragraph represents a variable through (sns): train_dataset = X_train.copy() train_dataset.insert(0, "WAGE", y_train) _ = sns.pairplot(train_dataset, kind="reg", diag_kind="kde") which in representation to be defined as: _ the value is incorrect in addition to not importing the correct library.. I leave you what I did with colab and helping with this error corrected: !pip install seaborn import seaborn as sns # The code below will now execute successfully. train_dataset = X_train.copy() train_dataset.insert(0, "WAGE", y_train) a = sns.pairplot(train_dataset, kind="reg", diag_kind="kde") I appreciate your reading and correction in advance :) greetings. -- Carlos Gonz?lez T. Ing. Inform?tico. [image: mobilePhone] +56977542105 [image: emailAddress] carlos.gonzalez1006 at gmail.com [image: address] Maip?, Santiago -------------- next part -------------- An HTML attachment was scrubbed... URL: From carlos.gonzalez1006 at gmail.com Sat Feb 3 12:36:54 2024 From: carlos.gonzalez1006 at gmail.com (carlos gonzalez) Date: Sat, 3 Feb 2024 14:36:54 -0300 Subject: [scikit-learn] error code linear models Message-ID: Se encuentra nuevo error en guia de models linear: from sklearn.compose import make_column_transformer from sklearn.preprocessing import OneHotEncoder categorical_columns = ["RACE", "OCCUPATION", "SECTOR", "MARR", "UNION", "SEX", "SOUTH"] numerical_columns = ["EDUCATION", "EXPERIENCE", "AGE"] preprocessor = make_column_transformer( (OneHotEncoder(drop="if_binary"), categorical_columns), remainder="passthrough", verbose_feature_names_out=False, # avoid to prepend the preprocessor names ) ------------------------------------------------------------------------------ !pip install scipy import scipy as sp from sklearn.compose import make_column_transformer from sklearn.preprocessing import OneHotEncoder categorical_columns = ["RACE", "OCCUPATION", "SECTOR", "MARR", "UNION", "SEX", "SOUTH"] numerical_columns = ["EDUCATION", "EXPERIENCE", "AGE"] preprocessor = make_column_transformer( (OneHotEncoder(drop="if_binary"), categorical_columns), remainder="passthrough", verbose_feature_names_out=False, # avoid to prepend the preprocessor names ) -- Carlos Gonz?lez T. Ing. Inform?tico. [image: mobilePhone] +56977542105 [image: emailAddress] carlos.gonzalez1006 at gmail.com [image: address] Maip?, Santiago -------------- next part -------------- An HTML attachment was scrubbed... URL: From g.lemaitre58 at gmail.com Fri Feb 16 04:32:25 2024 From: g.lemaitre58 at gmail.com (=?UTF-8?Q?Guillaume_Lema=C3=AEtre?=) Date: Fri, 16 Feb 2024 10:32:25 +0100 Subject: [scikit-learn] [ANN] scikit-learn 1.4.1.post1 is online! Message-ID: scikit-learn 1.4.1.post1 is out on pypi.org and conda-forge! This is a maintenance release that fixes several regressions introduced in version 1.4.0 https://scikit-learn.org/stable/whats_new/v1.4.html#version-1-4-1-post1 You can upgrade with pip as usual: pip install -U scikit-learn The conda-forge builds will be available shortly, which you can then install using: conda install -c conda-forge scikit-learn Thanks to all contributors who helped on this release. On behalf of the Scikit-learn maintainers team. -- Guillaume Lemaitre Open source engineer at :probabl. -------------- next part -------------- An HTML attachment was scrubbed... URL: From g.lemaitre58 at gmail.com Mon Feb 19 02:36:15 2024 From: g.lemaitre58 at gmail.com (=?UTF-8?Q?Guillaume_Lema=C3=AEtre?=) Date: Mon, 19 Feb 2024 08:36:15 +0100 Subject: [scikit-learn] [ANN] New core contributor: Yao Xiao Message-ID: We are excited to welcome Yao Xiao (https://github.com/Charlie-XIAO) as a core contributor of the scikit-learn project. Your past contributions are greatly appreciated, and I'm looking forward to working further with you. On behalf of the scikit-learn team. -- Guillaume Lemaitre Open source engineer at :probabl. -------------- next part -------------- An HTML attachment was scrubbed... URL: From adrin.jalali at gmail.com Mon Feb 19 03:04:10 2024 From: adrin.jalali at gmail.com (Adrin) Date: Mon, 19 Feb 2024 09:04:10 +0100 Subject: [scikit-learn] [ANN] New core contributor: Yao Xiao In-Reply-To: References: Message-ID: Excited to have you on board Yao! Thanks for your contributions. On Mon, Feb 19, 2024, 08:37 Guillaume Lema?tre wrote: > We are excited to welcome Yao Xiao (https://github.com/Charlie-XIAO) as a > core contributor of the scikit-learn project. > > Your past contributions are greatly appreciated, and I'm looking forward > to working further with you. > > On behalf of the scikit-learn team. > -- > Guillaume Lemaitre > Open source engineer at :probabl. > _______________________________________________ > scikit-learn mailing list > scikit-learn at python.org > https://mail.python.org/mailman/listinfo/scikit-learn > -------------- next part -------------- An HTML attachment was scrubbed... URL: From gael.varoquaux at normalesup.org Mon Feb 19 03:28:52 2024 From: gael.varoquaux at normalesup.org (Gael Varoquaux) Date: Mon, 19 Feb 2024 09:28:52 +0100 Subject: [scikit-learn] [ANN] New core contributor: Yao Xiao In-Reply-To: References: Message-ID: <20240219082852.xrocwsxrdjhngb62@gaellaptop> 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, 08:37 Guillaume Lema?tre <[1]g.lemaitre58 at gmail.com> > wrote: > We are excited to welcome Yao Xiao ([2]https://github.com/Charlie-XIAO) as > a core contributor of the scikit-learn project. > Your past contributions are greatly appreciated, and I'm looking forward to > working further with you. > On behalf of the scikit-learn team. -- Gael Varoquaux Research Director, INRIA http://gael-varoquaux.info http://twitter.com/GaelVaroquaux From loic.esteve at ymail.com Mon Feb 19 05:02:25 2024 From: loic.esteve at ymail.com (=?utf-8?B?TG/Dr2MgRXN0w6h2ZQ==?=) Date: Mon, 19 Feb 2024 11:02:25 +0100 Subject: [scikit-learn] [ANN] New core contributor: Yao Xiao In-Reply-To: <20240219082852.xrocwsxrdjhngb62@gaellaptop> References: <20240219082852.xrocwsxrdjhngb62@gaellaptop> Message-ID: <87v86kg4ag.fsf@ymail.com> 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, 08:37 Guillaume Lema?tre <[1]g.lemaitre58 at gmail.com> >> wrote: > >> We are excited to welcome Yao Xiao ([2]https://github.com/Charlie-XIAO) as >> a core contributor of the scikit-learn project. > >> Your past contributions are greatly appreciated, and I'm looking forward to >> working further with you. > >> On behalf of the scikit-learn team. From adrin.jalali at gmail.com Tue Feb 27 11:47:47 2024 From: adrin.jalali at gmail.com (Adrin) Date: Tue, 27 Feb 2024 17:47:47 +0100 Subject: [scikit-learn] round robin triage Message-ID: Hi, In the last scikit-learn monthly meeting we talked about doing round robin triage, with Tim, Lo?c, Jeremie, Guillaume, Olivier, and myself. To get the ball rolling, I'm suggesting this random order, starting next week: CW10: Adrin CW11: Lo?c CW12: Olivier CW13: Jeremie CW14: Tim CW15: Guillaume There are a bunch of public holidays in between, but I think we don't have to find people who can triage on public holidays of their respective country. Does this look okay? We can switch things around if people have holidays planned. I can then add us to the scikit-learn calendar as well. Cheers, Adrin -------------- next part -------------- An HTML attachment was scrubbed... URL: From g.lemaitre58 at gmail.com Tue Feb 27 14:49:44 2024 From: g.lemaitre58 at gmail.com (=?UTF-8?Q?Guillaume_Lema=C3=AEtre?=) Date: Tue, 27 Feb 2024 20:49:44 +0100 Subject: [scikit-learn] round robin triage In-Reply-To: References: Message-ID: LGTM on my side. On Tue, 27 Feb 2024 at 17:50, Adrin wrote: > Hi, > > In the last scikit-learn monthly meeting we talked about doing round robin > triage, with Tim, Lo?c, Jeremie, Guillaume, Olivier, and myself. To get the > ball rolling, I'm suggesting this random order, starting next week: > > CW10: Adrin > CW11: Lo?c > CW12: Olivier > CW13: Jeremie > CW14: Tim > CW15: Guillaume > > There are a bunch of public holidays in between, but I think we don't have > to find people who can triage on public holidays of their respective > country. > > Does this look okay? We can switch things around if people have holidays > planned. I can then add us to the scikit-learn calendar as well. > > Cheers, > Adrin > _______________________________________________ > scikit-learn mailing list > scikit-learn at python.org > https://mail.python.org/mailman/listinfo/scikit-learn > -- Guillaume Lemaitre Open source engineer at :probabl. -------------- next part -------------- An HTML attachment was scrubbed... URL: From adrin.jalali at gmail.com Thu Feb 29 05:45:44 2024 From: adrin.jalali at gmail.com (Adrin) Date: Thu, 29 Feb 2024 11:45:44 +0100 Subject: [scikit-learn] round robin triage In-Reply-To: References: Message-ID: @Lo?c Est?ve , @Tim Head , @Jeremie Du boisberranger , @Olivier Grisel , this looks good to you too? On Tue, Feb 27, 2024 at 8:51?PM Guillaume Lema?tre wrote: > LGTM on my side. > > On Tue, 27 Feb 2024 at 17:50, Adrin wrote: > >> Hi, >> >> In the last scikit-learn monthly meeting we talked about doing round >> robin triage, with Tim, Lo?c, Jeremie, Guillaume, Olivier, and myself. To >> get the ball rolling, I'm suggesting this random order, starting next week: >> >> CW10: Adrin >> CW11: Lo?c >> CW12: Olivier >> CW13: Jeremie >> CW14: Tim >> CW15: Guillaume >> >> There are a bunch of public holidays in between, but I think we don't >> have to find people who can triage on public holidays of their respective >> country. >> >> Does this look okay? We can switch things around if people have holidays >> planned. I can then add us to the scikit-learn calendar as well. >> >> Cheers, >> Adrin >> _______________________________________________ >> scikit-learn mailing list >> scikit-learn at python.org >> https://mail.python.org/mailman/listinfo/scikit-learn >> > > > -- > Guillaume Lemaitre > Open source engineer at :probabl. > _______________________________________________ > scikit-learn mailing list > scikit-learn at python.org > https://mail.python.org/mailman/listinfo/scikit-learn > -------------- next part -------------- An HTML attachment was scrubbed... URL: From betatim at gmail.com Thu Feb 29 05:51:15 2024 From: betatim at gmail.com (Tim Head) Date: Thu, 29 Feb 2024 11:51:15 +0100 Subject: [scikit-learn] round robin triage In-Reply-To: References: Message-ID: Looks good to me. TIL how to display week numbers in my calendar. T On Thu, 29 Feb 2024 at 11:45, Adrin wrote: > @Lo?c Est?ve , @Tim Head , @Jeremie > Du boisberranger , @Olivier Grisel > , this looks good to you too? > > On Tue, Feb 27, 2024 at 8:51?PM Guillaume Lema?tre > wrote: > >> LGTM on my side. >> >> On Tue, 27 Feb 2024 at 17:50, Adrin wrote: >> >>> Hi, >>> >>> In the last scikit-learn monthly meeting we talked about doing round >>> robin triage, with Tim, Lo?c, Jeremie, Guillaume, Olivier, and myself. To >>> get the ball rolling, I'm suggesting this random order, starting next week: >>> >>> CW10: Adrin >>> CW11: Lo?c >>> CW12: Olivier >>> CW13: Jeremie >>> CW14: Tim >>> CW15: Guillaume >>> >>> There are a bunch of public holidays in between, but I think we don't >>> have to find people who can triage on public holidays of their respective >>> country. >>> >>> Does this look okay? We can switch things around if people have holidays >>> planned. I can then add us to the scikit-learn calendar as well. >>> >>> Cheers, >>> Adrin >>> _______________________________________________ >>> scikit-learn mailing list >>> scikit-learn at python.org >>> https://mail.python.org/mailman/listinfo/scikit-learn >>> >> >> >> -- >> Guillaume Lemaitre >> Open source engineer at :probabl. >> _______________________________________________ >> scikit-learn mailing list >> scikit-learn at python.org >> https://mail.python.org/mailman/listinfo/scikit-learn >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremie.du-boisberranger at inria.fr Thu Feb 29 05:50:40 2024 From: jeremie.du-boisberranger at inria.fr (Jeremie du Boisberranger) Date: Thu, 29 Feb 2024 11:50:40 +0100 Subject: [scikit-learn] round robin triage In-Reply-To: References: Message-ID: <501b54d3-ebda-4530-9f02-6abaa89f1657@inria.fr> Yes, let's try it On 27/02/2024 20:49, Guillaume Lema?tre wrote: > LGTM on my side. > > On Tue, 27 Feb 2024 at 17:50, Adrin wrote: > > Hi, > > In the last scikit-learn monthly meeting we talked about doing > round robin triage, with Tim, Lo?c, Jeremie, Guillaume, Olivier, > and myself. To get the ball rolling, I'm suggesting this random > order, starting next week: > > CW10: Adrin > CW11: Lo?c > CW12: Olivier > CW13: Jeremie > CW14: Tim > CW15: Guillaume > > There are a bunch of public holidays in between, but I think we > don't have to find people who can triage on public holidays of > their respective country. > > Does this look okay? We can switch things around if people have > holidays planned. I can then add us to the scikit-learn calendar > as well. > > Cheers, > Adrin > _______________________________________________ > scikit-learn mailing list > scikit-learn at python.org > https://mail.python.org/mailman/listinfo/scikit-learn > > > > -- > Guillaume Lemaitre > Open source engineer at :probabl. > > _______________________________________________ > scikit-learn mailing list > scikit-learn at python.org > https://mail.python.org/mailman/listinfo/scikit-learn -------------- next part -------------- An HTML attachment was scrubbed... URL: