Skip to content

Instantly share code, notes, and snippets.

@HackerEarthBlog
Last active January 31, 2017 08:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HackerEarthBlog/05b9338e090924927aad30f481a1f531 to your computer and use it in GitHub Desktop.
Save HackerEarthBlog/05b9338e090924927aad30f481a1f531 to your computer and use it in GitHub Desktop.
#create NN structure
data <- mx.symbol.Variable("data")
fc1 <- mx.symbol.FullyConnected(data, num_hidden=3) #3 neuron in one layer
lrm <- mx.symbol.SoftmaxOutput(fc1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment