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

Commit

Permalink
[R] update docs (close #5683) (#5856)
Browse files Browse the repository at this point in the history
  • Loading branch information
thirdwing authored Apr 16, 2017
1 parent 59d0670 commit 1722b08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/tutorials/r/fiveMinutesNeuralNetwork.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Note that `mx.set.seed` controls the random process in `mxnet`. You can see the
To get an idea of what is happening, view the computation graph from R:
```{r}
graph.viz(model$symbol$as.json())
graph.viz(model$symbol)
```
[<img src="https://raw.githubusercontent.com/dmlc/web-data/master/mxnet/knitr/graph.computation.png">](https://github.com/dmlc/mxnet)
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/api/r/fiveMinutesNeuralNetwork.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ model <- mx.mlp(train.x, train.y, hidden_node=10, out_node=2, out_activation="so
想要知道具体发生了什么,我们可以在R中轻松看到计算图:

```{r}
graph.viz(model$symbol$as.json())
graph.viz(model$symbol)
```

[![](https://raw.githubusercontent.com/dmlc/web-data/master/mxnet/knitr/graph.computation.png)](https://github.com/dmlc/mxnet)
Expand Down

0 comments on commit 1722b08

Please sign in to comment.