- 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.
- 數(shù)據(jù)存儲(chǔ)架構(gòu)與技術(shù)
- Unity 5.x Game AI Programming Cookbook
- Hands-On Machine Learning with Microsoft Excel 2019
- 達(dá)夢(mèng)數(shù)據(jù)庫性能優(yōu)化
- Remote Usability Testing
- 數(shù)據(jù)庫技術(shù)及應(yīng)用教程
- SQL Server 2012數(shù)據(jù)庫管理教程
- TextMate How-to
- 標(biāo)簽類目體系:面向業(yè)務(wù)的數(shù)據(jù)資產(chǎn)設(shè)計(jì)方法論
- 數(shù)據(jù)庫技術(shù)與應(yīng)用:SQL Server 2008
- Kafka權(quán)威指南(第2版)
- Hive性能調(diào)優(yōu)實(shí)戰(zhàn)
- 算法設(shè)計(jì)與問題求解(第2版):計(jì)算思維培養(yǎng)
- SQL必知必會(huì)(第四版)
- Access數(shù)據(jù)庫教程(2010版)