- R Deep Learning Essentials
- Mark Hodnett Joshua F. Wiley
- 256字
- 2021-08-13 15:34:32
Back to deep learning
Many of the concepts in the previous section apply to deep learning because deep learning is simply neural networks with two or more hidden layers. To demonstrate this, let's look at the following code in R that loads the mxnet deep learning library and calls the help command on the function in that library that trains a deep learning model. Even though we have not trained any models using this library yet, we have already seen many of the parameters in this function:
library(mxnet)
?mx.model.FeedForward.create
This brings up the help page for the FeedForward function in the mxnet library, which is the forward-propagation/model train function. mxnet and most deep learning libraries do not have a specific backward-propagation function, they handle this implicitly:
mx.model.FeedForward.create(symbol, X, y = NULL, ctx = NULL,
begin.round = 1, num.round = 10, optimizer = "sgd",
initializer = mx.init.uniform(0.01), eval.data = NULL,
eval.metric = NULL, epoch.end.callback = NULL,
batch.end.callback = NULL, array.batch.size = 128
...)
We will see more of this function in subsequent chapters; for now we will just look at the parameters.
- Windows phone 7.5 application development with F#
- 顯卡維修知識精解
- 計算機應用與維護基礎教程
- 數字邏輯(第3版)
- Learning Stencyl 3.x Game Development Beginner's Guide
- 嵌入式系統中的模擬電路設計
- 分布式微服務架構:原理與實戰
- 計算機組裝與維修技術
- R Deep Learning Essentials
- Spring Cloud微服務架構實戰
- 電腦高級維修及故障排除實戰
- 計算機組裝維修與外設配置(高等職業院校教改示范教材·計算機系列)
- Managing Data and Media in Microsoft Silverlight 4:A mashup of chapters from Packt's bestselling Silverlight books
- Building Machine Learning Systems with Python
- 微控制器的應用