- R Deep Learning Cookbook
- Dr. PKS Prakash Achyutuni Sri Krishna Rao
- 98字
- 2021-07-02 20:49:11
Getting ready
The previous chapter provided the details for the installation of H2O in R along with a working example using its web interface. To start modeling, load the h20 package in the R environment:
require(h2o)
Then, initialize a single-node H2O instance using the h2o.init() function on eight cores and instantiate the corresponding client module on the IP address localhost and port number 54321:
localH2O = h2o.init(ip = "localhost", port = 54321, startH2O = TRUE,min_mem_size = "20G",nthreads = 8)
The H2O package has dependency on the Java JRE. Thus, it should be pre-installed before executing the initialization command.
推薦閱讀
- Mastering JavaScript Functional Programming
- Oracle Exadata性能優化
- Angular UI Development with PrimeNG
- 移動UI設計(微課版)
- Learn to Create WordPress Themes by Building 5 Projects
- Python漫游數學王國:高等數學、線性代數、數理統計及運籌學
- Hadoop 2.X HDFS源碼剖析
- Machine Learning for Developers
- Learning Jakarta Struts 1.2: a concise and practical tutorial
- MonoTouch應用開發實踐指南:使用C#和.NET開發iOS應用
- Learning Puppet Security
- Mastering PostCSS for Web Design
- Java并發編程實戰
- Game Audio Development with Unity 5.X
- Developing Windows Store Apps with HTML5 and JavaScript