Hi, 1-are you able to ping the website ? if yes, it might be a problem with your ISP DNS. if no ISP must have blocked the site. try to ask a friend with different server provider to access the website. 2- Try to clear the cache in your web browser though i don't expect this to work since you said you tried accessing with multiple devices. 3- if you must access the site you can use the cached version 4- if the ISP have blocked the site try to use a proxy.
Bests Nadim On Thu, Jul 21, 2016 at 1:21 PM Rahul Ahuja <[email protected]> wrote: > Hi there, > > > Sklearn is down in my place (location). I have tried to access with > multiple devices and internet connections but still can't. I can open > github websites though. Is there any way to access sklearn website? > > > > > > > Kind regards, > Rahul Ahuja > > > ------------------------------ > *From:* scikit-learn <[email protected]> > on behalf of [email protected] < > [email protected]> > *Sent:* Thursday, July 21, 2016 9:59 PM > *To:* [email protected] > *Subject:* scikit-learn Digest, Vol 4, Issue 32 > > Send scikit-learn mailing list submissions to > [email protected] > > To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.org/mailman/listinfo/scikit-learn > scikit-learn Info Page - Python > <https://mail.python.org/mailman/listinfo/scikit-learn> > mail.python.org > To see the collection of prior postings to the list, visit the > scikit-learn Archives. Using scikit-learn: To post a message to all the > list members ... > > > or, via email, send a message with subject or body 'help' to > [email protected] > > You can reach the person managing the list at > [email protected] > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of scikit-learn digest..." > > > Today's Topics: > > 1. Re: scikit-learn Digest, Vol 4, Issue 31 (Rahul Ahuja) > 2. Re: scikit-learn Digest, Vol 4, Issue 31 (Sebastian Raschka) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 21 Jul 2016 16:27:54 +0000 > From: Rahul Ahuja <[email protected]> > To: "[email protected]" <[email protected]> > Subject: Re: [scikit-learn] scikit-learn Digest, Vol 4, Issue 31 > Message-ID: > < > ps1pr01mb1017419626403709dd7b463998...@ps1pr01mb1017.apcprd01.prod.exchangelabs.com > > > > Content-Type: text/plain; charset="iso-8859-1" > > Yes I can open github pages. > > > > > > Kind regards, > Rahul Ahuja > > > ________________________________ > From: scikit-learn <[email protected]> > on behalf of [email protected] < > [email protected]> > Sent: Thursday, July 21, 2016 9:00 PM > To: [email protected] > Subject: scikit-learn Digest, Vol 4, Issue 31 > > Send scikit-learn mailing list submissions to > [email protected] > > To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.org/mailman/listinfo/scikit-learn > scikit-learn Info Page - Python< > https://mail.python.org/mailman/listinfo/scikit-learn> > mail.python.org > To see the collection of prior postings to the list, visit the > scikit-learn Archives. Using scikit-learn: To post a message to all the > list members ... > > > > or, via email, send a message with subject or body 'help' to > [email protected] > > You can reach the person managing the list at > [email protected] > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of scikit-learn digest..." > > > Today's Topics: > > 1. sklearn website down in my country Pakistan (Rahul Ahuja) > 2. Re: sklearn website down in my country Pakistan (Nelson Liu) > 3. How to get the most important features from a RF efficiently > (Raphael C) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 21 Jul 2016 14:50:55 +0000 > From: Rahul Ahuja <[email protected]> > To: "[email protected]" <[email protected]> > Subject: [scikit-learn] sklearn website down in my country Pakistan > Message-ID: > < > ps1pr01mb101761eca4dde87e85bb999f98...@ps1pr01mb1017.apcprd01.prod.exchangelabs.com > > > > Content-Type: text/plain; charset="iso-8859-1" > > Hi there, > > > Sklearn website has been down for couple of days. Please look into it. > > > I reside in Pakistan, Karachi city. > > > > > > Kind regards, > Rahul Ahuja > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/scikit-learn/attachments/20160721/39b64f34/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Thu, 21 Jul 2016 14:58:04 +0000 > From: Nelson Liu <[email protected]> > To: Scikit-learn user and developer mailing list > <[email protected]> > Subject: Re: [scikit-learn] sklearn website down in my country > Pakistan > Message-ID: > <CALoLHMKWoEGEH+Phz7XWQAk1Jk4NaT8LfVoKqrLmgc+= > [email protected]> > Content-Type: text/plain; charset="utf-8" > > Hi, > If I remember correctly, scikit-learn.org is hosted on GitHub Pages (so > the > maintainers don't have control over downtime and issues like the one you're > having). Can you connect to GitHub, or any site on GitHub Pages? > > Thanks > Nelson > > On Thu, Jul 21, 2016, 07:52 Rahul Ahuja <[email protected]> wrote: > > > Hi there, > > > > > > Sklearn website has been down for couple of days. Please look into it. > > > > > > I reside in Pakistan, Karachi city. > > > > > > > > > > > > > > Kind regards, > > Rahul Ahuja > > _______________________________________________ > > scikit-learn mailing list > > [email protected] > > https://mail.python.org/mailman/listinfo/scikit-learn > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/scikit-learn/attachments/20160721/a12c5d84/attachment-0001.html > > > > ------------------------------ > > Message: 3 > Date: Thu, 21 Jul 2016 16:22:09 +0100 > From: Raphael C <[email protected]> > To: Scikit-learn user and developer mailing list > <[email protected]> > Subject: [scikit-learn] How to get the most important features from a > RF efficiently > Message-ID: > <CAFHc1Qb181SQAxdb1= > [email protected]> > Content-Type: text/plain; charset=UTF-8 > > I have a set of feature vectors associated with binary class labels, > each of which has about 40,000 features. I can train a random forest > classifier in sklearn which works well. I would however like to see > the most important features. > > I tried simply printing out forest.feature_importances_ but this takes > about 1 second per feature making about 40,000 seconds overall. This > is much much longer than the time needed to train the classifier in > the first place? > > Is there a more efficient way to find out which features are most > important? > > Raphael > > On 21 July 2016 at 15:58, Nelson Liu <[email protected]> wrote: > > Hi, > > If I remember correctly, scikit-learn.org is hosted on GitHub Pages (so > the > > maintainers don't have control over downtime and issues like the one > you're > > having). Can you connect to GitHub, or any site on GitHub Pages? > > > > Thanks > > Nelson > > > > On Thu, Jul 21, 2016, 07:52 Rahul Ahuja <[email protected]> wrote: > >> > >> Hi there, > >> > >> > >> Sklearn website has been down for couple of days. Please look into it. > >> > >> > >> I reside in Pakistan, Karachi city. > >> > >> > >> > >> > >> > >> > >> Kind regards, > >> Rahul Ahuja > >> _______________________________________________ > >> scikit-learn mailing list > >> [email protected] > >> https://mail.python.org/mailman/listinfo/scikit-learn > > > > > > _______________________________________________ > > scikit-learn mailing list > > [email protected] > > https://mail.python.org/mailman/listinfo/scikit-learn > > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > scikit-learn mailing list > [email protected] > https://mail.python.org/mailman/listinfo/scikit-learn > > > ------------------------------ > > End of scikit-learn Digest, Vol 4, Issue 31 > ******************************************* > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/scikit-learn/attachments/20160721/d2af07c7/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Thu, 21 Jul 2016 12:58:48 -0400 > From: Sebastian Raschka <[email protected]> > To: Scikit-learn user and developer mailing list > <[email protected]> > Subject: Re: [scikit-learn] scikit-learn Digest, Vol 4, Issue 31 > Message-ID: > <[email protected]> > Content-Type: text/plain; charset=utf-8 > > Hm, the website works fine for me (and I also didn?t have any issues in > the last few days). > Just to make sure your are using the correct address, it should be > http://scikit-learn.org/ (maybe you used https://scikit-learn.org by > accident !?) > > - Alternatively, maybe try http://scikit-learn.org/stable/ > - A different browser > - clearing the browser cache > > Hope one of these things work! > > Best, > Sebastian > > > > On Jul 21, 2016, at 12:27 PM, Rahul Ahuja <[email protected]> wrote: > > > > Yes I can open github pages. > > > > > > > > > > > > Kind regards, > > Rahul Ahuja > > > > > > From: scikit-learn <[email protected]> > on behalf of [email protected] < > [email protected]> > > Sent: Thursday, July 21, 2016 9:00 PM > > To: [email protected] > > Subject: scikit-learn Digest, Vol 4, Issue 31 > > > > Send scikit-learn mailing list submissions to > > [email protected] > > > > To subscribe or unsubscribe via the World Wide Web, visit > > https://mail.python.org/mailman/listinfo/scikit-learn > > scikit-learn Info Page - Python > > mail.python.org > > To see the collection of prior postings to the list, visit the > scikit-learn Archives. Using scikit-learn: To post a message to all the > list members ... > > > > > > or, via email, send a message with subject or body 'help' to > > [email protected] > > > > You can reach the person managing the list at > > [email protected] > > > > When replying, please edit your Subject line so it is more specific > > than "Re: Contents of scikit-learn digest..." > > > > > > Today's Topics: > > > > 1. sklearn website down in my country Pakistan (Rahul Ahuja) > > 2. Re: sklearn website down in my country Pakistan (Nelson Liu) > > 3. How to get the most important features from a RF efficiently > > (Raphael C) > > > > > > ---------------------------------------------------------------------- > > > > Message: 1 > > Date: Thu, 21 Jul 2016 14:50:55 +0000 > > From: Rahul Ahuja <[email protected]> > > To: "[email protected]" <[email protected]> > > Subject: [scikit-learn] sklearn website down in my country Pakistan > > Message-ID: > > < > ps1pr01mb101761eca4dde87e85bb999f98...@ps1pr01mb1017.apcprd01.prod.exchangelabs.com > > > > > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi there, > > > > > > Sklearn website has been down for couple of days. Please look into it. > > > > > > I reside in Pakistan, Karachi city. > > > > > > > > > > > > Kind regards, > > Rahul Ahuja > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: < > http://mail.python.org/pipermail/scikit-learn/attachments/20160721/39b64f34/attachment-0001.html > > > > > > ------------------------------ > > > > Message: 2 > > Date: Thu, 21 Jul 2016 14:58:04 +0000 > > From: Nelson Liu <[email protected]> > > To: Scikit-learn user and developer mailing list > > <[email protected]> > > Subject: Re: [scikit-learn] sklearn website down in my country > > Pakistan > > Message-ID: > > <CALoLHMKWoEGEH+Phz7XWQAk1Jk4NaT8LfVoKqrLmgc+= > [email protected]> > > Content-Type: text/plain; charset="utf-8" > > > > Hi, > > If I remember correctly, scikit-learn.org is hosted on GitHub Pages (so > the > > maintainers don't have control over downtime and issues like the one > you're > > having). Can you connect to GitHub, or any site on GitHub Pages? > > > > Thanks > > Nelson > > > > On Thu, Jul 21, 2016, 07:52 Rahul Ahuja <[email protected]> wrote: > > > > > Hi there, > > > > > > > > > Sklearn website has been down for couple of days. Please look into it. > > > > > > > > > I reside in Pakistan, Karachi city. > > > > > > > > > > > > > > > > > > > > > Kind regards, > > > Rahul Ahuja > > > _______________________________________________ > > > scikit-learn mailing list > > > [email protected] > > > https://mail.python.org/mailman/listinfo/scikit-learn > > > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: < > http://mail.python.org/pipermail/scikit-learn/attachments/20160721/a12c5d84/attachment-0001.html > > > > > > ------------------------------ > > > > Message: 3 > > Date: Thu, 21 Jul 2016 16:22:09 +0100 > > From: Raphael C <[email protected]> > > To: Scikit-learn user and developer mailing list > > <[email protected]> > > Subject: [scikit-learn] How to get the most important features from a > > RF efficiently > > Message-ID: > > <CAFHc1Qb181SQAxdb1= > [email protected]> > > Content-Type: text/plain; charset=UTF-8 > > > > I have a set of feature vectors associated with binary class labels, > > each of which has about 40,000 features. I can train a random forest > > classifier in sklearn which works well. I would however like to see > > the most important features. > > > > I tried simply printing out forest.feature_importances_ but this takes > > about 1 second per feature making about 40,000 seconds overall. This > > is much much longer than the time needed to train the classifier in > > the first place? > > > > Is there a more efficient way to find out which features are most > important? > > > > Raphael > > > > On 21 July 2016 at 15:58, Nelson Liu <[email protected]> wrote: > > > Hi, > > > If I remember correctly, scikit-learn.org is hosted on GitHub Pages > (so the > > > maintainers don't have control over downtime and issues like the one > you're > > > having). Can you connect to GitHub, or any site on GitHub Pages? > > > > > > Thanks > > > Nelson > > > > > > On Thu, Jul 21, 2016, 07:52 Rahul Ahuja <[email protected]> wrote: > > >> > > >> Hi there, > > >> > > >> > > >> Sklearn website has been down for couple of days. Please look into it. > > >> > > >> > > >> I reside in Pakistan, Karachi city. > > >> > > >> > > >> > > >> > > >> > > >> > > >> Kind regards, > > >> Rahul Ahuja > > >> _______________________________________________ > > >> scikit-learn mailing list > > >> [email protected] > > >> https://mail.python.org/mailman/listinfo/scikit-learn > > > > > > > > > _______________________________________________ > > > scikit-learn mailing list > > > [email protected] > > > https://mail.python.org/mailman/listinfo/scikit-learn > > > > > > > > > ------------------------------ > > > > Subject: Digest Footer > > > > _______________________________________________ > > scikit-learn mailing list > > [email protected] > > https://mail.python.org/mailman/listinfo/scikit-learn > > > > > > ------------------------------ > > > > End of scikit-learn Digest, Vol 4, Issue 31 > > ******************************************* > > _______________________________________________ > > scikit-learn mailing list > > [email protected] > > https://mail.python.org/mailman/listinfo/scikit-learn > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > scikit-learn mailing list > [email protected] > https://mail.python.org/mailman/listinfo/scikit-learn > > > ------------------------------ > > End of scikit-learn Digest, Vol 4, Issue 32 > ******************************************* > _______________________________________________ > scikit-learn mailing list > [email protected] > https://mail.python.org/mailman/listinfo/scikit-learn > -- Nadim Farhat
_______________________________________________ scikit-learn mailing list [email protected] https://mail.python.org/mailman/listinfo/scikit-learn
