Revision as of 21:43, 8 February 2021 editDuplo surrogate (talk | contribs)192 editsm →Version history: Added 0.24 releaseTag: Visual edit← Previous edit | Revision as of 15:52, 27 February 2021 edit undo103.123.114.1 (talk) →ImplementationTags: Reverted Visual editNext edit → | ||
Line 65: | Line 65: | ||
==Implementation== | ==Implementation== | ||
Scikit-learn is largely written in Python, and uses ] extensively for high-performance linear algebra and array operations. Furthermore, some core algorithms are written in ] to improve performance. Support vector machines are implemented by a Cython wrapper around ]; logistic regression and linear support vector machines by a similar wrapper around ]. In such cases, extending these methods with Python may not be possible. | Scikit-learn is largely written in Python, and uses ] extensively for high-performance linear algebra and array operations. Furthermore, some core algorithms are written in ] to improve performance. Support vector machines are implemented by a Cython wrapper around ]; logistic regression and linear support vector machines by a similar wrapper around ]. In such cases, extending these methods with Python may not be possible.The book is for aspiring students of Machine Learning who want to make their hands dirty with real-world problems related to Machine Learning. The book illustrates the concepts right from the scratch. <ref>{{Cite web|date=2020-08-31|title=Machine Learning with Python|url=https://www.machineelearning.com/machine-learning-with-python/|access-date=2021-02-27|website=Machine Learning|language=en-US}}</ref> | ||
Scikit-learn integrates well with many other Python libraries, such as ] and ] for plotting, ] for array vectorization, ] dataframes, ], and many more. | Scikit-learn integrates well with many other Python libraries, such as ] and ] for plotting, ] for array vectorization, ] dataframes, ], and many more. |
Revision as of 15:52, 27 February 2021
Machine learning library for the Python programming languageOriginal author(s) | David Cournapeau |
---|---|
Initial release | June 2007; 17 years ago (2007-06) |
Stable release | 1.6.0 / 9 December 2024; 32 days ago (9 December 2024) |
Repository | |
Written in | Python, Cython, C and C++ |
Operating system | Linux, macOS, Windows |
Type | Library for machine learning |
License | New BSD License |
Website | scikit-learn |
Scikit-learn (formerly scikits.learn and also known as sklearn) is a free software machine learning library for the Python programming language. It features various classification, regression and clustering algorithms including support vector machines, random forests, gradient boosting, k-means and DBSCAN, and is designed to interoperate with the Python numerical and scientific libraries NumPy and SciPy.
Overview
The scikit-learn project started as scikits.learn, a Google Summer of Code project by David Cournapeau. Its name stems from the notion that it is a "SciKit" (SciPy Toolkit), a separately-developed and distributed third-party extension to SciPy. The original codebase was later rewritten by other developers. In 2010 Fabian Pedregosa, Gael Varoquaux, Alexandre Gramfort and Vincent Michel, all from the French Institute for Research in Computer Science and Automation in Rocquencourt, France, took leadership of the project and made the first public release on February the 1st 2010. Of the various scikits, scikit-learn as well as scikit-image were described as "well-maintained and popular" in November 2012. Scikit-learn is one of the most popular machine learning libraries on GitHub.
Implementation
Scikit-learn is largely written in Python, and uses numpy extensively for high-performance linear algebra and array operations. Furthermore, some core algorithms are written in Cython to improve performance. Support vector machines are implemented by a Cython wrapper around LIBSVM; logistic regression and linear support vector machines by a similar wrapper around LIBLINEAR. In such cases, extending these methods with Python may not be possible.The book is for aspiring students of Machine Learning who want to make their hands dirty with real-world problems related to Machine Learning. The book illustrates the concepts right from the scratch.
Scikit-learn integrates well with many other Python libraries, such as matplotlib and plotly for plotting, numpy for array vectorization, pandas dataframes, scipy, and many more.
Version history
Scikit-learn was initially developed by David Cournapeau as a Google summer of code project in 2007. Later Matthieu Brucher joined the project and started to use it as a part of his thesis work. In 2010 INRIA, the French Institute for Research in Computer Science and Automation, got involved and the first public release (v0.1 beta) was published in late January 2010.
- Jan 2021. scikit-learn 0.24
- May 2020. scikit-learn 0.23.0
- December 2019. scikit-learn 0.22.0
- May 2019. scikit-learn 0.21.0
- September 2018. scikit-learn 0.20.0
- July 2017. scikit-learn 0.19.0
- September 2016. scikit-learn 0.18.0
- November 2015. scikit-learn 0.17.0
- March 2015. scikit-learn 0.16.0
- July 2014. scikit-learn 0.15.0
- August 2013. scikit-learn 0.14
The timeline of releases is depicted in the following chart.
See also
References
- "Release 1.6.0". 9 December 2024. Retrieved 29 December 2024.
- "The scikit-learn Open Source Project on Open Hub: Languages Page". Open Hub. Retrieved 14 July 2018.
- Fabian Pedregosa; Gaël Varoquaux; Alexandre Gramfort; Vincent Michel; Bertrand Thirion; Olivier Grisel; Mathieu Blondel; Peter Prettenhofer; Ron Weiss; Vincent Dubourg; Jake Vanderplas; Alexandre Passos; David Cournapeau; Matthieu Perrot; Édouard Duchesnay (2011). "Scikit-learn: Machine Learning in Python". Journal of Machine Learning Research. 12: 2825–2830.
- Dreijer, Janto. "scikit-learn".
- "About us — scikit-learn 0.20.1 documentation". scikit-learn.org.
- Eli Bressert (2012). SciPy and NumPy: an overview for developers. O'Reilly. p. 43.
- "The State of the Octoverse: machine learning". The GitHub Blog. GitHub. 2019-01-24. Retrieved 2019-10-17.
- "Machine Learning with Python". Machine Learning. 2020-08-31. Retrieved 2021-02-27.
- scikit-learn: A set of python modules for machine learning and data mining, retrieved 2021-02-08
- "Release History - 0.23.0 documentation". scikit-learn. Retrieved 7 June 2020.
- "Release History - 0.22.0 documentation". scikit-learn. Retrieved 7 June 2020.
- "Release History - 0.21.0 documentation". scikit-learn. Retrieved 5 May 2019.
- "Release History - 0.20.0 documentation". scikit-learn. Retrieved 6 November 2018.
- ^ "Release history — scikit-learn 0.19.dev0 documentation". scikit-learn.org. Retrieved 2017-02-27.
External links
Scientific software in Python | |
---|---|