mxnet slack channel

2017-11-18 Thread TongKe Xue
Requesting an invitation to slack. Thanks, --TongKe

Re: Join slack channel

2017-11-07 Thread TongKe Xue
Hi, I would also like to join the slack channel. I'm trying to use mxnet in production. (Java API seems most production ready among all DL libraries.) --TongKe On Tue, Nov 7, 2017 at 1:11 AM, leonardo espinosa wrote: > Hi there, > > I'm using MXNet for teaching and

Re: mxnet ndarray inference in js

2017-11-06 Thread TongKe Xue
question may help us help you ( > > Hagay > > On 11/2/17, 12:10, "TongKe Xue" <tk...@tkxue.org> wrote: > > Hi, > > I'm looking for a js library compatible with mxnet/ndarray. > > 1. I am aware of https://github.com/dmlc/mxnet.js/ >

implementing numpy.cumsum in mxnet scala ?

2017-11-04 Thread TongKe Xue
Hi, ** 1. Here is the documentation of numpy.cumsum : https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.cumsum.html ** 2. The key example is as follows: >>> np.cumsum(a,axis=0) # sum over rows for each of the 3 columns array([[1, 2, 3], [5, 7, 9]]) >>>

Re: mxnet ndarray inference in js

2017-11-02 Thread TongKe Xue
If I'm understanding mxnet.js correctly, any mxnet model can be converted to mxnet.js via: https://github.com/dmlc/mxnet.js/blob/master/tools/model2json.py and then executed on mxnet.js Questions: is this 'mxnet json model' format documented anywhere? On Thu, Nov 2, 2017 at 12:10 PM, TongKe

mxnet java prebuilt

2017-10-29 Thread TongKe Xue
Hi, Looking at https://mvnrepository.com/artifact/ml.dmlc.mxnet?sort=newest it appears there are no new maven packages since Jun 3 2017. For using the mxnet scala api, is the standard solution to: 1. always build from github / source via

Does mxnet NDArray have autodiff ?

2017-10-20 Thread TongKe Xue
Hi! [I'm referring to the Scala API] 1. mxnet symbol has auto diff: https://mxnet.incubator.apache.org/tutorials/r/symbol.html 2. from Googling around, I can't find NDArray auto diff anywhere 3. however, NDArray tracks dependencies -- which, in theory, should be enough for doing

Re: mxnet Scala Convolution

2017-10-18 Thread TongKe Xue
t; mxnet.symbol.quadratic or mx.sym.quadratic for short." > > I'd think the Scala package works similarly. > > Regards, > Rahul > > > > > On Wed, Oct 18, 2017 at 5:06 PM, TongKe Xue <tk...@tkxue.org> wrote: > >> My earlier question was a bit messy. &g

Re: mxnet Scala Convolution

2017-10-18 Thread TongKe Xue
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 <tk...@tkxue.org> wrote: > Hi, >

mxnet Scala Convolution

2017-10-18 Thread TongKe Xue
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

disposing all ndarray in a given context

2017-10-16 Thread TongKe Xue
Quoting: https://github.com/apache/incubator-mxnet/blob/master/scala-package/core/src/main/scala/ml/dmlc/mxnet/NDArray.scala#L545-L546 * WARNING: it is your responsibility to clear this object through dispose(). * NEVER rely on the GC strategy Is there a way to say "dispose all ndarrays of this