- Deep Learning with R for Beginners
- Mark Hodnett Joshua F. Wiley Yuxi (Hayden) Liu Pablo Maldonado
- 256字
- 2021-06-24 14:30:41
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.
- Greenplum:從大數據戰略到實現
- 數據分析實戰:基于EXCEL和SPSS系列工具的實踐
- Visual Studio 2015 Cookbook(Second Edition)
- 醫療大數據挖掘與可視化
- 數據架構與商業智能
- SQL優化最佳實踐:構建高效率Oracle數據庫的方法與技巧
- Apache Kylin權威指南
- 大數據分析:R基礎及應用
- 從Lucene到Elasticsearch:全文檢索實戰
- 領域驅動設計精粹
- 數據迷霧:洞察數據的價值與內涵
- ORACLE 11g權威指南
- Creating Mobile Apps with Appcelerator Titanium
- 機器視覺原理與案例詳解
- Access數據庫教程(2010版)