All Projects → tirthajyoti → Interactive_machine_learning

tirthajyoti / Interactive_machine_learning

Licence: mit
IPython widgets, interactive plots, interactive machine learning

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Interactive machine learning

Machine Learning With Python
Practice and tutorial-style notebooks covering wide variety of machine learning techniques
Stars: ✭ 2,197 (+1469.29%)
Mutual labels:  jupyter-notebook, data-science, statistics, classification, scikit-learn, regression
Mlj.jl
A Julia machine learning framework
Stars: ✭ 982 (+601.43%)
Mutual labels:  jupyter-notebook, data-science, statistics, classification, regression
Openml R
R package to interface with OpenML
Stars: ✭ 81 (-42.14%)
Mutual labels:  jupyter-notebook, data-science, statistics, classification, regression
Imodels
Interpretable ML package 🔍 for concise, transparent, and accurate predictive modeling (sklearn-compatible).
Stars: ✭ 194 (+38.57%)
Mutual labels:  jupyter-notebook, data-science, statistics, scikit-learn, supervised-learning
Ml
A high-level machine learning and deep learning library for the PHP language.
Stars: ✭ 1,270 (+807.14%)
Mutual labels:  data-science, analytics, classification, regression
Virgilio
Virgilio is developed and maintained by these awesome people. You can email us virgilio.datascience (at) gmail.com or join the Discord chat.
Stars: ✭ 13,200 (+9328.57%)
Mutual labels:  jupyter-notebook, data-science, statistics, scikit-learn
Pycaret
An open-source, low-code machine learning library in Python
Stars: ✭ 4,594 (+3181.43%)
Mutual labels:  jupyter-notebook, data-science, regression, classification
Smile
Statistical Machine Intelligence & Learning Engine
Stars: ✭ 5,412 (+3765.71%)
Mutual labels:  data-science, statistics, classification, regression
Uci Ml Api
Simple API for UCI Machine Learning Dataset Repository (search, download, analyze)
Stars: ✭ 190 (+35.71%)
Mutual labels:  data-science, statistics, classification, regression
Stats Maths With Python
General statistics, mathematical programming, and numerical/scientific computing scripts and notebooks in Python
Stars: ✭ 381 (+172.14%)
Mutual labels:  jupyter-notebook, data-science, statistics, analytics
Hyperlearn
50% faster, 50% less RAM Machine Learning. Numba rewritten Sklearn. SVD, NNMF, PCA, LinearReg, RidgeReg, Randomized, Truncated SVD/PCA, CSR Matrices all 50+% faster
Stars: ✭ 1,204 (+760%)
Mutual labels:  jupyter-notebook, data-science, statistics, scikit-learn
Mlr
Machine Learning in R
Stars: ✭ 1,542 (+1001.43%)
Mutual labels:  data-science, statistics, classification, regression
Machine Learning From Scratch
Succinct Machine Learning algorithm implementations from scratch in Python, solving real-world problems (Notebooks and Book). Examples of Logistic Regression, Linear Regression, Decision Trees, K-means clustering, Sentiment Analysis, Recommender Systems, Neural Networks and Reinforcement Learning.
Stars: ✭ 42 (-70%)
Mutual labels:  jupyter-notebook, data-science, classification, regression
Orange3
🍊 📊 💡 Orange: Interactive data analysis
Stars: ✭ 3,152 (+2151.43%)
Mutual labels:  data-science, classification, scikit-learn, regression
Data Science Best Resources
Carefully curated resource links for data science in one place
Stars: ✭ 1,104 (+688.57%)
Mutual labels:  data-science, statistics, analytics, scikit-learn
Alphapy
Automated Machine Learning [AutoML] with Python, scikit-learn, Keras, XGBoost, LightGBM, and CatBoost
Stars: ✭ 564 (+302.86%)
Mutual labels:  data-science, classification, scikit-learn, regression
Data Science Toolkit
Collection of stats, modeling, and data science tools in Python and R.
Stars: ✭ 169 (+20.71%)
Mutual labels:  data-science, statistics, classification, regression
The Deep Learning With Keras Workshop
An Interactive Approach to Understanding Deep Learning with Keras
Stars: ✭ 34 (-75.71%)
Mutual labels:  jupyter-notebook, classification, scikit-learn, regression
Php Ml
PHP-ML - Machine Learning library for PHP
Stars: ✭ 7,900 (+5542.86%)
Mutual labels:  data-science, classification, supervised-learning, regression
Metriculous
Measure and visualize machine learning model performance without the usual boilerplate.
Stars: ✭ 71 (-49.29%)
Mutual labels:  data-science, statistics, classification, regression

Please feel free to add me here on LinkedIn if you are interested in data science and like to connect.

Interactive Machine Learning (with IPython Widgets)

GitHub issues GitHub forks GitHub stars PRs Welcome Github commits

Widgets

Notebooks come alive when interactive widgets are used. Users can visualize and control changes in the data and the model. Learning becomes an immersive, plus fun, experience.

What is Python Widget?

Project Jupyter was born out of the IPython Project in 2014 and evolved rapidly to support interactive data science and scientific computing across all major programming languages. There is no doubt that it has left one of the biggest degrees of impact on how a data scientist can quickly test and prototype his/her idea and showcase the work to peers and open-source community.

However, learning and experimenting with data become truly immersive when user can interactively control the parameters of the model and see the effect (almost) real-time. Most of the common rendering in Jupyter are static. However, there is a big effort to introduce elements called ipywidgets, which renders fun and interactive controls on the Jupyter notebook.

Widgets are eventful python objects that have a representation in the browser, often as a control like a slider, textbox, etc., through a front-end (HTML/Javascript) rendering channel.

What is the demo in this Repo?

We demonstrate simple linear regression of single variable using interactive control elements. Note, the idea can be extended for complex multi-variate, nonlinear, kernel based regression easily. However, just for simplicity of visualization, we stick to single variable case in this demo.

First, we show the data generation process as a function of input variables and statistical properties of the associated noise.

Next, We introduce interactive control for the following hyperparameters.

  • Model complexity (degree of polynomial)
  • Regularization type — LASSO or Ridge
  • Size of the test set (fraction of total sample data used in test)

User can interact with the linear regression model using these controls. Note, how the test and training scores are also updated dynamically to show a trend of over-fitting or under-fitting as the model complexity changes. One can go back to the data generation control and increase of decrease the noise magnitude to see its impact on the fitting quality and bias/variance trade-off.

Check this article I wrote on Medium about this project.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].