You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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.
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
About
Tutorials and training material for the H2O Machine Learning Platform