scikit-learn: machine learning in Python
Clone or download
adrinjalali and amueller BaseSearchCV._run_search raises NotImplementedError instead of being …
…an abstractmethod (#12182)

* _run_search raises NotImplementedError instead of being and abstractmethod

* add error message

* test for a BaseSearchCV child w/o a _run_search

* make the test python2 compatible, still in 0.20 zone.

* specify cv in tests not to trigger the related FutureWarning

* PEP8
Latest commit 239482f Sep 28, 2018
Permalink
Failed to load latest commit information.
.circleci [MRG] Fix FutureWarnings in logistic regression examples (#12114) Sep 24, 2018
benchmarks FIX: enfore backward compatibility of decision function in Iforest (#… Jul 23, 2018
build_tools [MRG] MNT Re-enable PyPy CI (#12039) Sep 18, 2018
doc MNT Move what's new entry Sep 28, 2018
examples MNT Unused import in plot_gpr_co2.py Sep 26, 2018
sklearn BaseSearchCV._run_search raises NotImplementedError instead of being … Sep 28, 2018
.codecov.yml Turn off codecov comments (#10146) Nov 15, 2017
.coveragerc coverall added Oct 8, 2013
.gitattributes MAINT remove .c files from .gitattributes Nov 21, 2016
.gitignore MAINT Complete 0.20 deprecations (#9570) Jun 24, 2018
.landscape.yml make landscape.io much more useful Mar 10, 2015
.mailmap Fix mailmap format (#9620) Aug 24, 2017
.travis.yml MNT Only checks warnings on latest depedendencies versions in CI (#12048 Sep 17, 2018
CONTRIBUTING.md DOC Link to dev doc in CONTRIBUTING.md Mar 29, 2018
COPYING MAINT Update copyright year 2018 (#10456) Jan 11, 2018
ISSUE_TEMPLATE.md add python parameter to issue template for better code rendering Apr 14, 2017
MANIFEST.in [MRG] Openml data loader (#11419) Aug 15, 2018
Makefile add durations=20 to makefile to show test runtimes locally (#11147) Aug 22, 2018
PULL_REQUEST_TEMPLATE.md DOC Encourage contributors to use keywords to close issue automatical… Oct 20, 2017
README.rst [MRG] Fix FutureWarnings in logistic regression examples (#12114) Sep 24, 2018
appveyor.yml MNT Only checks warnings on latest depedendencies versions in CI (#12048 Sep 17, 2018
conftest.py [MRG] MNT Re-enable PyPy CI (#12039) Sep 18, 2018
setup.cfg MNT Only checks warnings on latest depedendencies versions in CI (#12048 Sep 17, 2018
setup.py MAINT CI [scipy-dev] now uses python 3.7 (#11409) Jul 20, 2018
site.cfg Remove obsolete info. Feb 8, 2011

README.rst

Travis AppVeyor Codecov CircleCI Python27 Python35 PyPi DOI

scikit-learn

scikit-learn is a Python module for machine learning built on top of SciPy and distributed under the 3-Clause BSD license.

The project was started in 2007 by David Cournapeau as a Google Summer of Code project, and since then many volunteers have contributed. See the AUTHORS.rst file for a complete list of contributors.

It is currently maintained by a team of volunteers.

Website: http://scikit-learn.org

Installation

Dependencies

scikit-learn requires:

  • Python (>= 2.7 or >= 3.4)
  • NumPy (>= 1.8.2)
  • SciPy (>= 0.13.3)

Scikit-learn 0.20 is the last version to support Python2.7. Scikit-learn 0.21 and later will require Python 3.5 or newer.

For running the examples Matplotlib >= 1.4 is required. A few examples require scikit-image >= 0.11.3 and a few examples require pandas >= 0.17.1.

scikit-learn also uses CBLAS, the C interface to the Basic Linear Algebra Subprograms library. scikit-learn comes with a reference implementation, but the system CBLAS will be detected by the build system and used if present. CBLAS exists in many implementations; see Linear algebra libraries for known issues.

User installation

If you already have a working installation of numpy and scipy, the easiest way to install scikit-learn is using pip

pip install -U scikit-learn

or conda:

conda install scikit-learn

The documentation includes more detailed installation instructions.

Changelog

See the changelog for a history of notable changes to scikit-learn.

Development

We welcome new contributors of all experience levels. The scikit-learn community goals are to be helpful, welcoming, and effective. The Development Guide has detailed information about contributing code, documentation, tests, and more. We've included some basic information in this README.

Important links

Source code

You can check the latest sources with the command:

git clone https://github.com/scikit-learn/scikit-learn.git

Setting up a development environment

Quick tutorial on how to go about setting up your environment to contribute to scikit-learn: https://github.com/scikit-learn/scikit-learn/blob/master/CONTRIBUTING.md

Testing

After installation, you can launch the test suite from outside the source directory (you will need to have pytest >= 3.3.0 installed):

pytest sklearn

See the web page http://scikit-learn.org/dev/developers/advanced_installation.html#testing for more information.

Random number generation can be controlled during testing by setting the SKLEARN_SEED environment variable.

Submitting a Pull Request

Before opening a Pull Request, have a look at the full Contributing page to make sure your code complies with our guidelines: http://scikit-learn.org/stable/developers/index.html

Project History

The project was started in 2007 by David Cournapeau as a Google Summer of Code project, and since then many volunteers have contributed. See the AUTHORS.rst file for a complete list of contributors.

The project is currently maintained by a team of volunteers.

Note: scikit-learn was previously referred to as scikits.learn.

Help and Support

Documentation

Communication

Citation

If you use scikit-learn in a scientific publication, we would appreciate citations: http://scikit-learn.org/stable/about.html#citing-scikit-learn