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

Commit

Permalink
Fix Scala Symbolic API some/Some typo (#15687)
Browse files Browse the repository at this point in the history
  • Loading branch information
ceedubs authored and wkcn committed Jul 31, 2019
1 parent 776d9c4 commit 9d7fc7c
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 9d7fc7c

Please sign in to comment.