Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Anirudh Acharya committed Aug 10, 2018
1 parent a972885 commit b3b1025
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions docs/tutorials/r/fiveMinutesNeuralNetwork.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
Develop a Neural Network with MXNet in Five Minutes
=============================================

This tutorial is designed for new users of the `mxnet` package for R. It shows how to construct a neural network to do regression in 5 minutes. It shows how to perform classification and regression tasks, respectively. The data we use is in the `mlbench` package.
This tutorial is designed for new users of the `mxnet` package for R. It shows how to construct a neural network to do regression in 5 minutes. It shows how to perform classification and regression tasks, respectively. The data we use is in the `mlbench` package. Instructions to install R and MXNet's R package in different environments can be found [here](http://mxnet.incubator.apache.org/install/index.html?platform=Linux&language=R&processor=CPU).

## Classification



```
## Loading required package: mlbench
```
```r
require(mlbench)
if (!require(mlbench)) {
install.packages('mlbench')
}
```

```
## Loading required package: mlbench
## Loading required package: mxnet
```

```r
require(mxnet)
if (!require(mxnet)) {
install.packages('mlbench')
}
```

```
## Loading required package: mxnet
## Loading required package: methods
## Loading required datasets
```

```r
Expand Down

0 comments on commit b3b1025

Please sign in to comment.