Go to file
Lars 3c6cf99470 Merge pull request #5059 from amueller/function_transformer_rebase
ENH add FunctionTransformer
2015-08-03 22:04:19 +02:00
benchmarks remove some style errors in bench code. 2015-03-10 16:24:48 -04:00
continuous_integration MAINT use the new container-based travis workers 2015-05-20 16:10:16 +02:00
doc Merge pull request #5059 from amueller/function_transformer_rebase 2015-08-03 22:04:19 +02:00
examples ENH: Renames CallableTransformer -> FunctionTransformer. 2015-08-03 11:45:16 -04:00
sklearn FIX be robust to obscure callables that are false. 2015-08-03 12:59:41 -04:00
.coveragerc coverall added 2013-10-08 15:08:13 +02:00
.gitattributes remove deprecated stuff from 0.17 2015-03-18 14:49:04 -04:00
.gitignore MAINT: better gitignore 2014-08-20 10:51:33 +02:00
.landscape.yml make landscape.io much more useful 2015-03-10 10:41:37 -04:00
.mailmap MAINT: update mailmap 2015-03-29 17:42:47 +02:00
.travis.yml MAINT use the new container-based travis workers 2015-05-20 16:10:16 +02:00
AUTHORS.rst Authors: Update based on #3067 2014-04-17 18:19:56 -04:00
CONTRIBUTING.md Fix #4978: Typo in CONTRIBUTING.md 2015-07-15 05:26:40 -04:00
COPYING Updating copyright year to 2014 2014-01-04 21:00:09 -06:00
MANIFEST.in MAINT Include binary_tree.pxi in source distribution 2014-07-04 15:32:24 +02:00
Makefile MAINT ignore Python import state in ctags 2015-07-16 12:15:17 +02:00
README.rst DOC fix README.rst coveralls badge 2015-07-22 16:41:12 +02:00
appveyor.yml MAINT make it possible to use plain HTTP to download pre-built numpy & scipy from rackspace container 2015-07-16 12:23:02 +02:00
setup.cfg MAINT make it possible to use wheelhouse-uploader 2014-12-29 18:48:49 +01:00
setup.py FIX: Ensure dependencies installed 2015-04-02 00:21:42 -07:00
site.cfg Remove obsolete info. 2011-02-08 09:27:20 +01:00

README.rst

.. -*- mode: rst -*-

|Travis|_ |AppVeyor|_ |Coveralls|_

.. |Travis| image:: https://api.travis-ci.org/scikit-learn/scikit-learn.png?branch=master
.. _Travis: https://travis-ci.org/scikit-learn/scikit-learn

.. |AppVeyor| image:: https://ci.appveyor.com/api/projects/status/github/scikit-learn/scikit-learn?branch=master&svg=true
.. _AppVeyor: https://ci.appveyor.com/project/sklearn-ci/scikit-learn/history

.. |Coveralls| image:: https://coveralls.io/repos/scikit-learn/scikit-learn/badge.svg?branch=master
.. _Coveralls: https://coveralls.io/r/scikit-learn/scikit-learn

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.

**Note** `scikit-learn` was previously referred to as `scikits.learn`.


Important links
===============

- Official source code repo: https://github.com/scikit-learn/scikit-learn
- HTML documentation (stable release): http://scikit-learn.org
- HTML documentation (development version): http://scikit-learn.org/dev/
- Download releases: http://sourceforge.net/projects/scikit-learn/files/
- Issue tracker: https://github.com/scikit-learn/scikit-learn/issues
- Mailing list: https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
- IRC channel: ``#scikit-learn`` at ``irc.freenode.net``

Dependencies
============

scikit-learn is tested to work under Python 2.6, Python 2.7, and Python 3.4.
(using the same codebase thanks to an embedded copy of
`six <http://pythonhosted.org/six/>`_). It should also work with Python 3.3.

The required dependencies to build the software are NumPy >= 1.6.1,
SciPy >= 0.9 and a working C/C++ compiler.

For running the examples Matplotlib >= 1.1.1 is required and for running the
tests you need nose >= 1.1.2.

This configuration matches the Ubuntu Precise 12.04 LTS release from April
2012.

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
<http://scikit-learn.org/stable/modules/computational_performance.html#linear-algebra-libraries>`_
for known issues.


Install
=======

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

  python setup.py install --user

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 https://github.com/scikit-learn/scikit-learn.git

or if you have write privileges::

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


Contributing
~~~~~~~~~~~~

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

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


Testing
-------

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

   $ nosetests -v sklearn

Under Windows, it is recommended to use the following command (adjust the path
to the ``python.exe`` program) as using the ``nosetests.exe`` program can badly
interact with tests that use ``multiprocessing``::

   C:\Python34\python.exe -c "import nose; nose.main()" -v sklearn

See the web page http://scikit-learn.org/stable/install.html#testing
for more information.

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