From 655246dcd12b86fb804d53ed61236a6065a850e1 Mon Sep 17 00:00:00 2001 From: Luke Yeager Date: Tue, 24 Mar 2015 17:42:56 -0700 Subject: [PATCH 1/2] Remove scikit-learn dependency --- python/requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/python/requirements.txt b/python/requirements.txt index 6a90fd6f5b4..3a1d88099de 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -2,7 +2,6 @@ Cython>=0.19.2 numpy>=1.7.1 scipy>=0.13.2 scikit-image>=0.9.3 -scikit-learn>=0.14.1 matplotlib>=1.3.1 ipython>=1.1.0 h5py>=2.2.0 From 8be7842ae8809a2a8a663d7c10a31230f66e9a10 Mon Sep 17 00:00:00 2001 From: Luke Yeager Date: Tue, 24 Mar 2015 18:15:08 -0700 Subject: [PATCH 2/2] Add note in example about installing scikit-learn --- examples/hdf5_classification.ipynb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/hdf5_classification.ipynb b/examples/hdf5_classification.ipynb index b90b79d962c..19d27372754 100644 --- a/examples/hdf5_classification.ipynb +++ b/examples/hdf5_classification.ipynb @@ -40,6 +40,7 @@ "import shutil\n", "import tempfile\n", "\n", + "# You may need to 'pip install scikit-learn'\n", "import sklearn\n", "import sklearn.datasets\n", "import sklearn.linear_model" @@ -1070,4 +1071,4 @@ "metadata": {} } ] -} \ No newline at end of file +}