Skip to content

Commit

Permalink
Fix Scala Symbolic API some/Some typo (apache#15687)
Browse files Browse the repository at this point in the history
  • Loading branch information
ceedubs authored and Ubuntu committed Aug 20, 2019
1 parent 31e63b2 commit 05a5f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/api/scala/symbol.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The following example configures a two-layer neural network.
val data = Symbol.Variable("data")
val fc1 = Symbol.api.FullyConnected(Some(data), num_hidden = 128, name = "fc1")
val act1 = Symbol.api.Activation(Some(fc1), "relu", "relu1")
val fc2 = Symbol.api.FullyConnected(some(act1), num_hidden = 64, name = "fc2")
val fc2 = Symbol.api.FullyConnected(Some(act1), num_hidden = 64, name = "fc2")
val net = Symbol.api.SoftmaxOutput(Some(fc2), name = "out")
:type net
// org.apache.mxnet.Symbol
Expand Down

0 comments on commit 05a5f3f

Please sign in to comment.