Re: disposing all ndarray in a given context

2017-10-18 Thread Joern Kottmann
Have a look at this code: https://github.com/apache/incubator-mxnet/blob/master/scala-package/core/src/main/scala/ml/dmlc/mxnet/optimizer/AdaDelta.scala There they have the same problem and use disposeDepsExcept to release resources. Jörn On Tue, Oct 17, 2017 at 4:18 PM, TongKe Xue

Re: What's everyone working on?

2017-09-25 Thread Joern Kottmann
Hello all, I am working on the Java API and frequently update my jvm-package branch here: https://github.com/kottmann/mxnet/commits/jvm-package Currently I focus on NDArray and Symbol/Executor, my short term goal is to get the MNIST sample running. Anyone interested to help out? There are many

Re: MXNet: Run PR builds on Apache Jenkins only after the commit is reviewed

2017-09-12 Thread Joern Kottmann
Not sure how it works with jenkins, but other CI serves can look at the commit message and skip the CI run based on certain commands in it. Might make sense for small changes such as documentation updates, half done PRs, etc. Jörn On Tue, Sep 12, 2017 at 11:17 AM, Larroy, Pedro

Re: [VOTE] Release MXNet version 0.11.0.rc2

2017-08-17 Thread Joern Kottmann
]. - The distribution contains a .DS_Store file - The distribution contains the .git folder Jörn [1] http://www.apache.org/dev/licensing-howto.html#assembling-license-and-notice On Thu, Aug 17, 2017 at 10:11 AM, Joern Kottmann <kottm...@gmail.com> wrote: > The release tag can be found here (a

Re: Java API for MXNet

2017-08-16 Thread Joern Kottmann
YiZhi Liu <javeli...@gmail.com> wrote: >> > >> >> What Nan and I worried about is the re-implementation of something >> >> like https://github.com/apache/incubator-mxnet/blob/master/ >> >> scala-package/core/src/main/scala/ml/dmlc/mxnet/Model.scala#L24

Re: Java API for MXNet

2017-08-16 Thread Joern Kottmann
uggest to build Java API as a wrapper of Scala API, re-use most of > the procedures. Referring to the Java API in Apache Spark. > > 2017-08-16 18:21 GMT+08:00 Joern Kottmann <jo...@apache.org>: >> Hello all, >> >> I would like to propose the addition of a Java API t

Java API for MXNet

2017-08-16 Thread Joern Kottmann
Hello all, I would like to propose the addition of a Java API to MXNet. There has been some previous work done for the Scala API, and it makes sense to at least share the JNI layer between the two. The Java API probably should be aligned with the Python API (and others which exist already)