- 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.
推薦閱讀
- Extending Jenkins
- Docker進階與實戰
- JavaScript+Vue+React全程實例
- 可解釋機器學習:模型、方法與實踐
- Flutter跨平臺開發入門與實戰
- Java EE 8 Application Development
- Python Data Analysis Cookbook
- 響應式Web設計:HTML5和CSS3實戰(第2版)
- Vue.js 3應用開發與核心源碼解析
- Mastering Elixir
- Android Studio開發實戰:從零基礎到App上線 (移動開發叢書)
- 青少年學Python(第2冊)
- Visual C++程序設計與項目實踐
- 零基礎學Java(第5版)
- Google Maps JavaScript API Cookbook