forked from rz1988/deeplearning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDESCRIPTION
29 lines (29 loc) · 1.17 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Package: deeplearning
Type: Package
Title: An Implementation of Deep Neural Network for Regression and Classification
Description: An implementation of deep neural network with rectifier linear units trained
with stochastic gradient descent method and batch normalization. A combination of these methods have
achieved state-of-the-art performance in ImageNet classification by overcoming the gradient saturation
problem experienced by many deep architecture neural network models in the past. In addition,
batch normalization and dropout are implemented as a means of regularization. The deeplearning package is
inspired by the darch package and uses its class DArch.
Version: 0.1.0
Date: 2016-04-10
Authors@R: c(
person(given = "Zhi", family = "Ruan", email = "[email protected]", role = c("aut", "cre")),
person("Martin", "Drees", email = "[email protected]", role = c("cph"))
)
LazyData: TRUE
URL: https://github.com/rz1988/deeplearning
BugReports: https://github.com/rz1988/deeplearning/issues
Depends:
R (>= 3.2.4),
methods,
darch (>= 0.10.0),
Imports:
plotly,
futile.logger,
graphics,
stats
License: GPL (>= 2)
RoxygenNote: 5.0.1