Re: [scikit-learn] Error while running 'python setup.py build_ext --inplace'

2017-12-03 Thread Aniket Meshram
hi Joel. Please find attached full log for 'pip install --editable .' *Are you sure you want to build from source?* *[Well, I'm trying the development version, since I'd like to help fix bugs. Wait, so you mean we are experiencing issue with source install. Oh man!. if Yes, then can you please su

[scikit-learn] a dataset suitable for logistic regression

2017-12-03 Thread Peng Yu
Hi, iris is a three-class dataset. Is there a dataset in sklearn that is suitable for binary classification? Thanks. -- Regards, Peng ___ scikit-learn mailing list scikit-learn@python.org https://mail.python.org/mailman/listinfo/scikit-learn

Re: [scikit-learn] a dataset suitable for logistic regression

2017-12-03 Thread Sebastian Raschka
As far as I know, no. But you could simply truncate the iris dataset for binary classification, e.g., from sklearn import datasets iris = datasets.load_iris() X = iris.data[:100] y = iris.target[:100] Best, Sebastian > On Dec 3, 2017, at 3:54 PM, Peng Yu wrote: > > Hi, iris is a three-class