Roshrini opened a new issue #9315: Refactor mxnet-scala code/tests/examples/docs to use "org.apache.mxnet" instead of "ml.dmlc.mxnet". URL: https://github.com/apache/incubator-mxnet/issues/9315 ## Description Currently, MXNet-Scala library uses "ml.dmlc.mxnet" packages. As mxnet is under apache now, mxnet-scala code/tests/example and docs should use "org.apache.mxnet" instead of "ml.dmlc.mxnet". This work will change the way to import modules when using mxnet-scala package. Old way: ``` scala> import ml.dmlc.mxnet._ import ml.dmlc.mxnet._ scala> val arr = NDArray.ones(2, 3) arr: ml.dmlc.mxnet.NDArray = ml.dmlc.mxnet.NDArray@f5e74790 ``` New way: ``` scala> import org.apache.mxnet._ import org.apache.mxnet._ scala> val arr = NDArray.ones(2, 3) arr: org.apache.mxnet.NDArray = org.apache.mxnet.NDArray@f5e74790 ``` I will be creating PR soon to address this.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
