I am creating a network using mxnetR and want to create a customized operator. I look at the mx.symbol.Custom function in the package and the description says that I should use a front end language like Python to define my operation.
I found a sample code here: https://github.com/dmlc/mxnet/issues/4205 where the programmer use the @mx.operator.register decorator followed by the definition of the operation. I wonder if I can do the same thing in R.