Created
August 2, 2017 00:18
-
-
Save jeongho/b3e7cf817cb414a4f7dc38a623a8e93c to your computer and use it in GitHub Desktop.
scikit-learn classifier comparison plot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
#http://scikit-learn.org/stable/auto_examples/classification/plot_classifier_comparison.html#sphx-glr-auto-examples-classification-plot-classifier-comparison-py | |
git clone https://github.com/scikit-learn/scikit-learn | |
cd scikit-learn | |
# check anacona scikit version and upgrade necessary | |
pip list | grep scikit | |
conda install scikit-learn | |
#scikit-image (0.13.0) | |
#scikit-learn (0.18.2) | |
git checkout tags/0.18.2 -b 0.18.2 | |
find . -name plot_classifier_comparison.py | |
#./examples/classification/plot_classifier_comparison.py | |
cd examples/classification/ | |
python plot_classifier_comparison.py & | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment