Skip to content
Snippets Groups Projects
Select Git revision
  • f96263a973b23262fbbf52214ead601a85761e92
  • master default protected
  • 0.19.X
  • discrete
  • 0.18.X
  • ignore_lambda_to_diff_errors
  • 0.17.X
  • authors-update
  • 0.16.X
  • 0.15.X
  • 0.14.X
  • debian
  • 0.13.X
  • 0.12.X
  • 0.11.X
  • 0.10.X
  • 0.9.X
  • 0.6.X
  • 0.7.X
  • 0.8.X
  • 0.19.1
  • 0.19.0
  • 0.19b2
  • 0.19b1
  • 0.19-branching
  • 0.18.2
  • 0.18.1
  • 0.18
  • 0.18rc2
  • 0.18rc1
  • 0.18rc
  • 0.17.1-1
  • 0.17.1
  • debian/0.17.0-4
  • debian/0.17.0-3
  • debian/0.17.0-1
  • 0.17
  • debian/0.17.0_b1+git14-g4e6829c-1
  • debian/0.17.0_b1-1
  • 0.17b1
40 results

scikit-learn

user avatar
Fabian Pedregosa authored
 ____     __   __            _          ___ _     _____      _   _   _    ___
| __ )  __\ \ / / __      __/ \   ___  |_ _| |_  |  ___|   _| \ | | | |_ / _ \
|  _ \ / _ \ V /  \ \ /\ / / _ \ / __|  | || __| | |_ | | | |  \| | | __| | | |
| |_) | (_) | |    \ V  V / ___ \\__ \  | || |_  |  _|| |_| | |\  | | |_| |_| |
|____/ \___/|_|     \_/\_/_/   \_\___/ |___|\__| |_|   \__,_|_| \_|  \__|\___/

 _   ____        ____ _      ____     __        __       _ _ _
| |_|  _ \ __ _ / ___| | __ |  _ \  __\ \      / / __   | | | |
| __| |_) / _` | |   | |/ / | | | |/ _ \ \ /\ / / '_ \  | | | |
| |_|  _ < (_| | |___|   <  | |_| | (_) \ V  V /| | | | |_|_|_|
 \__|_| \_\__,_|\____|_|\_\ |____/ \___/ \_/\_/ |_| |_| (_|_|_)
f96263a9
History

About

scikits.learn is a python module for machine learning built on top of scipy.

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.

Important links

Dependencies

The required dependencies to build the software are python >= 2.5, setuptools, NumPy >= 1.2, SciPy >= 0.7 and a working C++ compiler.

To run the tests you will also need nose >= 0.10.

Install

This packages uses distutils, which is the default way of installing python modules. To install in your home directory, use:

python setup.py install --home

To install for all users on Unix/Linux:

python setup.py build
sudo python setup.py install

Development

Code

GIT

You can check the latest sources with the command:

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

or if you have write privileges:

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

Testing

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

python -c "import scikits.learn as skl; skl.test()"

See web page http://scikit-learn.sourceforge.net/install.html#testing for more information.