- R Deep Learning Cookbook
- Dr. PKS Prakash Achyutuni Sri Krishna Rao
- 160字
- 2021-07-02 20:49:07
How to do it...
- H2O can be installed directly from CRAN with the dependency parameter TRUE to install all CRAN-related h2o dependencies. This command will install all the R dependencies required for the h2o package:
install.packages("h2o", dependencies = T)
- The following command is used to call the h2o package in the current R environment. The first-time execution of the h2o package will automatically download the JAR file before launching H2O, as shown in the following figure:
library(h2o)
localH2O = h2o.init()

Starting H 2O cluster
- The H2O cluster can be accessed using cluster ip and port information. The current H2O cluster is running on localhost at port 54321, as shown in the following screenshot:

H2O cluster running in the browser
Models in H2O can be developed interactively using a browser or scripting from R. H2O modeling is like creating a Jupyter Notebook but you create a flow with different operations such as importing data, splitting data, setting up a model, and scoring.
推薦閱讀
- Data Visualization with D3 4.x Cookbook(Second Edition)
- JavaScript前端開發模塊化教程
- DBA攻堅指南:左手Oracle,右手MySQL
- JavaScript Unlocked
- 算法大爆炸:面試通關步步為營
- Learning Python Design Patterns(Second Edition)
- Interactive Applications Using Matplotlib
- Learning JavaScript Data Structures and Algorithms
- Extending Puppet(Second Edition)
- OpenCV 4計算機視覺項目實戰(原書第2版)
- Python極簡講義:一本書入門數據分析與機器學習
- JavaScript腳本特效編程給力起飛
- OpenCV with Python By Example
- Buildbox 2.x Game Development
- Python數據可視化之美:專業圖表繪制指南(全彩)