- R Deep Learning Cookbook
- Dr. PKS Prakash Achyutuni Sri Krishna Rao
- 68字
- 2021-07-02 20:49:14
Getting ready
We first load all the required packages with the following code:
# Load the required packages
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:
# Initialize H2O instance (single node)
localH2O = h2o.init(ip = "localhost", port = 54321, startH2O = TRUE,min_mem_size = "20G",nthreads = 8)
推薦閱讀
- Mastering ServiceStack
- R語言經典實例(原書第2版)
- Visual C++實例精通
- HTML5+CSS3基礎開發教程(第2版)
- Apache Spark 2 for Beginners
- Python 3網絡爬蟲實戰
- Python高效開發實戰:Django、Tornado、Flask、Twisted(第3版)
- Python數據挖掘與機器學習實戰
- Python算法從菜鳥到達人
- 第一行代碼 C語言(視頻講解版)
- Machine Learning in Java
- Machine Learning for Developers
- OpenCV Android Programming By Example
- 玩轉.NET Micro Framework移植:基于STM32F10x處理器
- Java從入門到精通(視頻實戰版)