My earlier question was a bit messy. To rephrase my question:
1. Scala AlexNet sample code calls Symbol.Convolution: https://github.com/apache/incubator-mxnet/blob/master/scala-package/examples/src/main/scala/ml/dmlc/mxnetexamples/visualization/AlexNet.scala#L30 2. Symbol.scala does not contain the string "Convolution" https://github.com/apache/incubator-mxnet/blob/master/scala-package/core/src/main/scala/ml/dmlc/mxnet/Symbol.scala#L982 Question: where/how is Symbol.Convolution defined? On Wed, Oct 18, 2017 at 4:10 PM, TongKe Xue <[email protected]> wrote: > Hi, > > I am reading: https://mxnet.incubator.apache.org/api/scala/symbol.html > > I see Symbol.Variable, Symbol.Convolution > > When I look at Symbol.scala, I see Symbol.Variable at: > https://github.com/apache/incubator-mxnet/blob/master/scala-package/core/src/main/scala/ml/dmlc/mxnet/Symbol.scala#L982 > > However, I can't find where Convolution, SoftMax, FullyConnected, ... > are defined. > > Where are these Symbols defined? > > (I have also tried: grep "Convolution" . -R | grep scala | grep def -- > but found nothing). > > Thanks, > --TongKe
