Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Keras | 59,408 | 578 | 19 hours ago | 80 | June 27, 2023 | 90 | apache-2.0 | Python | ||
Deep Learning for humans | ||||||||||
Scikit Learn | 55,931 | 18,944 | 9,755 | 19 hours ago | 71 | June 30, 2023 | 2,255 | bsd-3-clause | Python | |
scikit-learn: machine learning in Python | ||||||||||
Ml For Beginners | 53,633 | a day ago | 7 | mit | HTML | |||||
12 weeks, 26 lessons, 52 quizzes, classic Machine Learning for all | ||||||||||
Made With Ml | 34,182 | 4 days ago | 5 | May 15, 2019 | 2 | mit | Jupyter Notebook | |||
Learn how to design, develop, deploy and iterate on production-grade ML applications. | ||||||||||
Ray | 27,782 | 80 | 298 | 19 hours ago | 87 | July 24, 2023 | 3,411 | apache-2.0 | Python | |
Ray is a unified framework for scaling AI and Python applications. Ray consists of a core distributed runtime and a set of AI Libraries for accelerating ML workloads. | ||||||||||
Streamlit | 27,283 | 17 | 898 | 19 hours ago | 204 | July 20, 2023 | 658 | apache-2.0 | Python | |
Streamlit — A faster way to build and share data apps. | ||||||||||
Spacy | 27,183 | 1,533 | 1,198 | a day ago | 222 | July 07, 2023 | 94 | mit | Python | |
💫 Industrial-strength Natural Language Processing (NLP) in Python | ||||||||||
Data Science Ipython Notebooks | 25,242 | 3 months ago | 34 | other | Python | |||||
Data science Python notebooks: Deep learning (TensorFlow, Theano, Caffe, Keras), scikit-learn, Kaggle, big data (Spark, Hadoop MapReduce, HDFS), matplotlib, pandas, NumPy, SciPy, Python essentials, AWS, and various command lines. | ||||||||||
Applied Ml | 24,714 | 17 days ago | 3 | mit | ||||||
📚 Papers & tech blogs by companies sharing their work on data science & machine learning in production. | ||||||||||
Lightning | 24,679 | 7 | 620 | 19 hours ago | 253 | July 25, 2023 | 688 | apache-2.0 | Python | |
Deep learning framework to train, deploy, and ship AI products Lightning fast. |
scikit-learn is a Python module for machine learning built on top of SciPy and is 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 About us page for a list of core contributors.
It is currently maintained by a team of volunteers.
Website: https://scikit-learn.org
scikit-learn requires:
Scikit-learn 0.20 was the last version to support Python 2.7 and Python 3.4. scikit-learn 1.0 and later require Python 3.7 or newer. scikit-learn 1.1 and later require Python 3.8 or newer.
Scikit-learn plotting capabilities (i.e., functions start with plot_
and
classes end with "Display") require Matplotlib (>= 3.1.3).
For running the examples Matplotlib >= 3.1.3 is required.
A few examples require scikit-image >= 0.16.2, a few examples
require pandas >= 1.0.5, some examples require seaborn >=
0.9.0 and plotly >= 5.14.0.
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 -c conda-forge scikit-learn
The documentation includes more detailed installation instructions.
See the changelog for a history of notable changes to scikit-learn.
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.
You can check the latest sources with the command:
git clone https://github.com/scikit-learn/scikit-learn.git
To learn more about making a contribution to scikit-learn, please see our Contributing guide.
After installation, you can launch the test suite from outside the source
directory (you will need to have pytest
>= 7.1.2 installed):
pytest sklearn
See the web page https://scikit-learn.org/dev/developers/contributing.html#testing-and-improving-test-coverage for more information.
Random number generation can be controlled during testing by setting
the SKLEARN_SEED
environment variable.
Before opening a Pull Request, have a look at the full Contributing page to make sure your code complies with our guidelines: https://scikit-learn.org/stable/developers/index.html
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 About us page for a list of core contributors.
The project is currently maintained by a team of volunteers.
Note: scikit-learn was previously referred to as scikits.learn.
If you use scikit-learn in a scientific publication, we would appreciate citations: https://scikit-learn.org/stable/about.html#citing-scikit-learn