All Projects → h2oai → H2o Tutorials

h2oai / H2o Tutorials

Tutorials and training material for the H2O Machine Learning Platform

Programming Languages

python
139335 projects - #7 most used programming language
r
7636 projects

Projects that are alternatives of or similar to H2o Tutorials

Learning python
Source material for Python Like You Mean it
Stars: ✭ 78 (-94.02%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Intro To Python
An intro to Python & programming for wanna-be data scientists
Stars: ✭ 536 (-58.93%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Code search
Code For Medium Article: "How To Create Natural Language Semantic Search for Arbitrary Objects With Deep Learning"
Stars: ✭ 436 (-66.59%)
Mutual labels:  jupyter-notebook, data-science, tutorial
User Machine Learning Tutorial
useR! 2016 Tutorial: Machine Learning Algorithmic Deep Dive http://user2016.org/tutorials/10.html
Stars: ✭ 393 (-69.89%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Awesome Google Colab
Google Colaboratory Notebooks and Repositories (by @firmai)
Stars: ✭ 863 (-33.87%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Pycon 2019 Tutorial
Data Science Best Practices with pandas
Stars: ✭ 410 (-68.58%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Data Science Your Way
Ways of doing Data Science Engineering and Machine Learning in R and Python
Stars: ✭ 530 (-59.39%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Cryptocurrency Analysis Python
Open-Source Tutorial For Analyzing and Visualizing Cryptocurrency Data
Stars: ✭ 278 (-78.7%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Python Introducing Pandas
Introduction to pandas Treehouse course
Stars: ✭ 24 (-98.16%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Har Keras Coreml
Human Activity Recognition (HAR) with Keras and CoreML
Stars: ✭ 23 (-98.24%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Open source demos
A collection of demos showcasing automated feature engineering and machine learning in diverse use cases
Stars: ✭ 391 (-70.04%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Data Privacy For Data Scientists
A workshop on data privacy methods for data scientists.
Stars: ✭ 53 (-95.94%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Thesemicolon
This repository contains Ipython notebooks and datasets for the data analytics youtube tutorials on The Semicolon.
Stars: ✭ 345 (-73.56%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Mli Resources
H2O.ai Machine Learning Interpretability Resources
Stars: ✭ 428 (-67.2%)
Mutual labels:  jupyter-notebook, data-science, h2o
Scikit Learn Videos
Jupyter notebooks from the scikit-learn video series
Stars: ✭ 3,254 (+149.35%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Interpretable machine learning with python
Examples of techniques for training interpretable ML models, explaining ML models, and debugging ML models for accuracy, discrimination, and security.
Stars: ✭ 530 (-59.39%)
Mutual labels:  jupyter-notebook, data-science, h2o
Gwu data mining
Materials for GWU DNSC 6279 and DNSC 6290.
Stars: ✭ 217 (-83.37%)
Mutual labels:  jupyter-notebook, data-science, h2o
Functional intro to python
[tutorial]A functional, Data Science focused introduction to Python
Stars: ✭ 228 (-82.53%)
Mutual labels:  jupyter-notebook, data-science, tutorial
H2o 3
H2O is an Open Source, Distributed, Fast & Scalable Machine Learning Platform: Deep Learning, Gradient Boosting (GBM) & XGBoost, Random Forest, Generalized Linear Modeling (GLM with Elastic Net), K-Means, PCA, Generalized Additive Models (GAM), RuleFit, Support Vector Machine (SVM), Stacked Ensembles, Automatic Machine Learning (AutoML), etc.
Stars: ✭ 5,656 (+333.41%)
Mutual labels:  jupyter-notebook, data-science, h2o
Computervision Recipes
Best Practices, code samples, and documentation for Computer Vision.
Stars: ✭ 8,214 (+529.43%)
Mutual labels:  jupyter-notebook, data-science, tutorial

H2O Tutorials

This document contains tutorials and training materials for H2O-3. If you find any problems with the tutorial code, please open an issue in this repository.

For general H2O questions, please post those to Stack Overflow using the "h2o" tag or join the H2O Stream Google Group for questions that don't fit into the Stack Overflow format.

Finding tutorial material in Github

There are a number of tutorials on all sorts of topics in this repo. To help you get started, here are some of the most useful topics in both R and Python.

R Tutorials

Python Tutorials

Most current material

Tutorials in the master branch are intended to work with the lastest stable version of H2O.

URL
Training material https://github.com/h2oai/h2o-tutorials/blob/master/SUMMARY.md
Latest stable H2O release http://h2o.ai/download

Historical events

Tutorial versions in named branches are snapshotted for specific events. Scripts should work unchanged for the version of H2O used at that time.

H2O World 2017 Training

URL
Training material https://github.com/h2oai/h2o-tutorials/tree/master/h2o-world-2017/README.md
Wheeler-2 H2O release http://h2o-release.s3.amazonaws.com/h2o/rel-wheeler/2/index.html

H2O World 2015 Training

URL
Training material https://github.com/h2oai/h2o-tutorials/blob/h2o-world-2015-training/SUMMARY.md
Tibshirani-3 H2O release http://h2o-release.s3.amazonaws.com/h2o/rel-tibshirani/3/index.html

Requirements:

For most tutorials using Python you can install dependent modules to your environment by running the following commands.

# As current user
pip install -r requirements.txt
# As root user
sudo -E pip install -r requirements.txt

Note: If you are behind a corporate proxy you may need to set environment variables for https_proxy accordingly.

# If you are behind a corporate proxy
export https_proxy=https://<user>:<password>@<proxy_server>:<proxy_port>

# As current user
pip install -r requirements.txt
# If you are behind a corporate proxy
export https_proxy=https://<user>:<password>@<proxy_server>:<proxy_port>

# As root user
sudo -E pip install -r requirements.txt
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].