All Projects → Speedml → Notebooks

Speedml / Notebooks

Speedml Python Notebooks

Projects that are alternatives of or similar to Notebooks

Poppy Ergo Jr
🤖 Poppy Ergo Jr is an open-source robotic arm based on modular 3D printed conception and low-cost XL-320 motors.
Stars: ✭ 133 (-0.75%)
Mutual labels:  jupyter-notebook
Depth Hints
[ICCV 2019] Depth Hints are complementary depth suggestions which improve monocular depth estimation algorithms trained from stereo pairs
Stars: ✭ 134 (+0%)
Mutual labels:  jupyter-notebook
Python Machine Learning
机器学习算法项目
Stars: ✭ 134 (+0%)
Mutual labels:  jupyter-notebook
Streaming Demos
Demos of Plotly's Real-time Streaming API
Stars: ✭ 133 (-0.75%)
Mutual labels:  jupyter-notebook
Bcs workshop apr 20
Workshop on basic machine learning, computational modeling, psychophysics, basic data analysis and experiment design
Stars: ✭ 134 (+0%)
Mutual labels:  jupyter-notebook
Code With Ai
Interface for people to use my model which predicts which techniques one should use to solve a competitive programming problem to get an AC
Stars: ✭ 134 (+0%)
Mutual labels:  jupyter-notebook
Laplacians.jl
Algorithms inspired by graph Laplacians: linear equation solvers, sparsification, clustering, optimization, etc.
Stars: ✭ 132 (-1.49%)
Mutual labels:  jupyter-notebook
Deep Learning With Python
Example projects I completed to understand Deep Learning techniques with Tensorflow. Please note that I do no longer maintain this repository.
Stars: ✭ 134 (+0%)
Mutual labels:  jupyter-notebook
Readata
Python数据分析实战项目汇总~
Stars: ✭ 134 (+0%)
Mutual labels:  jupyter-notebook
Tianchiorgame
天池比赛,kaggle等等(Keras/PyTorch实战)
Stars: ✭ 134 (+0%)
Mutual labels:  jupyter-notebook
Fastdoc
Create publication-quality books from Jupyter notebooks
Stars: ✭ 134 (+0%)
Mutual labels:  jupyter-notebook
Making with ml
Stars: ✭ 133 (-0.75%)
Mutual labels:  jupyter-notebook
Optimization Python
General optimization (LP, MIP, QP, continuous and discrete optimization etc.) using Python
Stars: ✭ 133 (-0.75%)
Mutual labels:  jupyter-notebook
Computational Statistics With Python
Resources for STA 633 class
Stars: ✭ 133 (-0.75%)
Mutual labels:  jupyter-notebook
Dea Notebooks
Repository for Digital Earth Australia Jupyter Notebooks: tools and workflows for geospatial analysis with Open Data Cube and xarray
Stars: ✭ 133 (-0.75%)
Mutual labels:  jupyter-notebook
Dataminingnotebooks
This is a collection of iPython notebooks from my course on data mining. Data used in the notebooks can be downloaded from the given links in the notebooks.
Stars: ✭ 133 (-0.75%)
Mutual labels:  jupyter-notebook
Machine Learning Concepts
Machine Learning Concepts with Concepts
Stars: ✭ 134 (+0%)
Mutual labels:  jupyter-notebook
Deeplearning
深度学习相关教程
Stars: ✭ 134 (+0%)
Mutual labels:  jupyter-notebook
Ml
Machine Learning Projects and Learning Content
Stars: ✭ 134 (+0%)
Mutual labels:  jupyter-notebook
Python tips
Some Python tips for beginner to intermediate users. Also used as a personal cheat sheet. Featured here https://bit.ly/2ZaV4Pl
Stars: ✭ 134 (+0%)
Mutual labels:  jupyter-notebook

====================================== Speedml Machine Learning Speed Start

Speedml is a Python package for speed starting machine learning projects.

The speedml.com_ website documents API use cases, behind-the-scenes implementation, features, best practices, and demos in detail.

To see Speedml in action run or download the notebook_ Titanic Solution Using Speedml which walks through an end-to-end machine learning solution documenting features of the Speedml API.

Latest Speedml release is always available on the PyPi_ website.

Install Speedml package using pip like so::

pip install speedml

We manage the project on GitHub.

  • Demo notebooks_
  • GitHub repo_
  • Project roadmap_
  • Issues_ tracking

We are authoring Speedml API with four goals in mind.

Popular. Best packages together

Speedml already imports and properly initializes the popular ML packages including pandas, numpy, sklearn, xgboost, and matplotlib. All you need to do is import speedml to get started::

from speedml import Speedml

Rapid. Machine learning speed start

Coding is up to 3X faster when using Speedml because of (1) iterative development, (2) linear workflow, and (3) component-based API.

These three lines of Speedml code (a) load the training, test datasets, (b) define the target and unique id features, (c) plot the feature correlation matrix heatmap for numerical features, (d) perform a detailed EDA returning 10-15 observations and next steps for making the datasets model ready::

sml = Speedml('train.csv', 'test.csv', target='Survived', uid='PassengerId') sml.plot.correlate() sml.eda()

Easy. Concise commands with sensible defaults

A notebook using Speedml reduces coding required by up to 70%. Speedml API implements methods requiring zero to minimal number of parameters, working on sensible defaults.

Call to this single method replaces empty values in the entire dataframe with median value for numerical features and most common values for text features::

sml.feature.impute()

Productive. Intuitive linear workflow

Understanding machine learning fundamentals is a breeze with Speedml as we have designed the API to follow a linear workflow with sensible prerequisites and intuitive next steps.

These three lines of Speedml code perform feature engineering by replacing null values, extracting a new feature matching a regular expression, and dropping a feature that is no longer required::

sml.feature.fillna(a='Cabin', new='Z') sml.feature.extract(new='Deck', a='Cabin', regex='([A-Z]){1}') sml.feature.drop(['Cabin'])

Hope you enjoy using Speedml in your projects. Watch this space as we intend to update Speedml frequently with more cool features.

.. _PyPi: https://pypi.python.org/pypi/speedml .. _documentation: http://pythonhosted.org/speedml/ .. _speedml.com: https://speedml.com .. _repo: https://github.com/Speedml/speedml .. _roadmap: https://github.com/Speedml/speedml/projects/1 .. _notebooks: https://github.com/Speedml/notebooks .. _Issues: https://github.com/Speedml/speedml/issues .. _notebook: https://github.com/Speedml/notebooks/blob/master/titanic/titanic-solution-using-speedml.ipynb

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].