Adding content in Portuguese about the scikit-learn module: e.g., description, installation & dependencies, development, important links.
48 lines
1.7 KiB
Markdown
48 lines
1.7 KiB
Markdown
---
|
|
title: scikit-learn
|
|
localeTitle: scikit-learn
|
|
---
|
|
## Scikit-learn
|
|
|
|
A scikit-learn é uma biblioteca de código aberto para aprendizado de máquina construído sobre o [SciPy](https://www.scipy.org/) na linguagem de programação [Python](https://www.python.org/).
|
|
|
|
O projeto, atualmente é mantido por uma equipe de voluntários, foi iniciado em 2007 por David Cournapeau como um projeto do [Google Summer of Code](https://summerofcode.withgoogle.com/), e desde então teve muitos [colaboradores](http://scikit-learn.org/dev/about.html#authors).
|
|
|
|
Website oficial: http://scikit-learn.org
|
|
|
|
**Nota**: o scikit-learn foi anteriormente referido como scikits.learn.
|
|
|
|
## Instalação
|
|
|
|
O scikit-learn requer:
|
|
|
|
- [Python](https://www.python.org/) (> = 2,7 ou> = 3,4)
|
|
- [NumPy](http://www.numpy.org/) (> = 1.8.2)
|
|
- [SciPy](https://www.scipy.org/) (> = 0.13.3)
|
|
|
|
### Como instalar
|
|
Se você já tem uma instalação funcional de [NumPy](http://www.numpy.org/) e [SciPy](https://www.scipy.org/), a maneira mais fácil de instalar o scikit-learn é usando `pip`
|
|
```
|
|
pip install -U scikit-learn
|
|
```
|
|
|
|
ou `conda`:
|
|
```
|
|
conda install scikit-learn
|
|
```
|
|
|
|
Para instruções mais detalhadas de instalação veja a [documentação](http://scikit-learn.org/stable/install.html).
|
|
|
|
## Desenvolvimento
|
|
|
|
O [Guia de Desenvolvimento](http://scikit-learn.org/stable/developers/index.html) contém informações detalhadas sobre código, documentação, testes e muito mais.
|
|
|
|
### Links importantes
|
|
|
|
- Repositório oficial: https://github.com/scikit-learn/scikit-learn
|
|
- Versões para Download: https://pypi.org/project/scikit-learn/
|
|
|
|
#### Mais Informações:
|
|
|
|
[Página de referência do Scikit-learn](http://scikit-learn.org/stable/)
|