[GitHub] CodingCat commented on issue #7411: [scala-package][spark] fix example script

2017-08-13 Thread git
CodingCat commented on issue #7411: [scala-package][spark] fix example script URL: https://github.com/apache/incubator-mxnet/pull/7411#issuecomment-322097900 @javelinjs @terrytangyuan any comments on this? This is an

[GitHub] KeyKy opened a new issue #7448: out of memory when training imagenet with .rec file.

2017-08-13 Thread git
KeyKy opened a new issue #7448: out of memory when training imagenet with .rec file. URL: https://github.com/apache/incubator-mxnet/issues/7448 ## Environment info Operating System: ubuntu 16.04 Compiler: gcc (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 Package used

[GitHub] ysh329 commented on issue #7424: train_mnist.py failed: TypeError: __init__() got an unexpected keyword argument 'multi_precision'

2017-08-13 Thread git
ysh329 commented on issue #7424: train_mnist.py failed: TypeError: __init__() got an unexpected keyword argument 'multi_precision' URL: https://github.com/apache/incubator-mxnet/issues/7424#issuecomment-322086687 @ptrendx So stupid I am, I forgot `make` and `pip install -e .`. It's okay

[GitHub] ysh329 closed issue #7424: train_mnist.py failed: TypeError: __init__() got an unexpected keyword argument 'multi_precision'

2017-08-13 Thread git
ysh329 closed issue #7424: train_mnist.py failed: TypeError: __init__() got an unexpected keyword argument 'multi_precision' URL: https://github.com/apache/incubator-mxnet/issues/7424 This is an automated message from the

[GitHub] ysh329 commented on a change in pull request #7363: Add tensorboard configure into ./common/fit.py and ./train_mnist.py

2017-08-13 Thread git
ysh329 commented on a change in pull request #7363: Add tensorboard configure into ./common/fit.py and ./train_mnist.py URL: https://github.com/apache/incubator-mxnet/pull/7363#discussion_r132864621 ## File path: example/image-classification/train_mnist.py ## @@ -75,5

[GitHub] DickJC123 opened a new pull request #7447: Tensorcore fullyconnected support2

2017-08-13 Thread git
DickJC123 opened a new pull request #7447: Tensorcore fullyconnected support2 URL: https://github.com/apache/incubator-mxnet/pull/7447 Consider this an alternative approach to getting TensorCore working with FullyConnected. It is far simpler than my first PR for this new functionality.

[GitHub] piiswrong closed pull request #7304: gluon bce loss

2017-08-13 Thread git
piiswrong closed pull request #7304: gluon bce loss URL: https://github.com/apache/incubator-mxnet/pull/7304 This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use

[GitHub] ArturIndio opened a new issue #7446: format input data using mx.rnn

2017-08-13 Thread git
ArturIndio opened a new issue #7446: format input data using mx.rnn URL: https://github.com/apache/incubator-mxnet/issues/7446 [data_ex_git.zip](https://github.com/apache/incubator-mxnet/files/1220978/data_ex_git.zip) I've trying to forecast time-series using mx.rnn model but I

[incubator-mxnet] branch master updated: [R] vignette update (#7437)

2017-08-13 Thread qkou
This is an automated email from the ASF dual-hosted git repository. qkou pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git The following commit(s) were added to refs/heads/master by this push: new 0142ea0 [R] vignette update (#7437)

[GitHub] thirdwing closed pull request #7437: [R] vignette update

2017-08-13 Thread git
thirdwing closed pull request #7437: [R] vignette update URL: https://github.com/apache/incubator-mxnet/pull/7437 This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and

[GitHub] szha commented on issue #7445: Using cuDNN for CTC Loss

2017-08-13 Thread git
szha commented on issue #7445: Using cuDNN for CTC Loss URL: https://github.com/apache/incubator-mxnet/issues/7445#issuecomment-322064100 Thanks for raising this, @sbodenstein. I'm working on using the cudnn7 implementation of CTC for GPU.

[GitHub] sbodenstein opened a new issue #7445: Using cuDNN for CTC Loss

2017-08-13 Thread git
sbodenstein opened a new issue #7445: Using cuDNN for CTC Loss URL: https://github.com/apache/incubator-mxnet/issues/7445 @piiswrong, @szha: Now that cuDNN 7 supports CTC loss, perhaps we should discard the current GPU implementation in contrib.ctc_loss (adapted from the WarpCTC

[GitHub] ZhaoxiaZhang commented on issue #7398: inconsistent results when infering

2017-08-13 Thread git
ZhaoxiaZhang commented on issue #7398: inconsistent results when infering URL: https://github.com/apache/incubator-mxnet/issues/7398#issuecomment-322030662 HI, I have met the similar problems. Have you figured this out?

[GitHub] ZhaoxiaZhang commented on issue #7406: inconsistent accuracy: ImageRecordIter vs ImageIter

2017-08-13 Thread git
ZhaoxiaZhang commented on issue #7406: inconsistent accuracy: ImageRecordIter vs ImageIter URL: https://github.com/apache/incubator-mxnet/issues/7406#issuecomment-322030133 HI, I met something maybe similar with you. I trained ImageRecordIter and get a very good accuracy. However when I

[GitHub] xzqjack commented on issue #7426: mx random seed doesn't work for random_uniform/random_normal on gpu

2017-08-13 Thread git
xzqjack commented on issue #7426: mx random seed doesn't work for random_uniform/random_normal on gpu URL: https://github.com/apache/incubator-mxnet/issues/7426#issuecomment-322027770 The same error happened in my service (ubuntu16.04, gpu, mxnet-version:0.10.1)

[GitHub] xzqjack commented on issue #7427: how to set dataiter with multi data?

2017-08-13 Thread git
xzqjack commented on issue #7427: how to set dataiter with multi data? URL: https://github.com/apache/incubator-mxnet/issues/7427#issuecomment-322027400 You can look up the definition of class module (python/mxnet/module/module.py), and init module by `mod = mx.mod.Module(...,

[GitHub] xzqjack opened a new issue #7444: define a new Parametrized symbol layer and how to use (bind, init, set learning rate ) it?

2017-08-13 Thread git
xzqjack opened a new issue #7444: define a new Parametrized symbol layer and how to use (bind, init, set learning rate ) it? URL: https://github.com/apache/incubator-mxnet/issues/7444 I have been learning to define Parametrized layer, of which parameters will be leared during training

[GitHub] piiswrong commented on a change in pull request #7082: Sparse Tensor: request for reviews

2017-08-13 Thread git
piiswrong commented on a change in pull request #7082: Sparse Tensor: request for reviews URL: https://github.com/apache/incubator-mxnet/pull/7082#discussion_r132833058 ## File path: python/mxnet/ndarray/sparse_ndarray.py ## @@ -0,0 +1,906 @@ +# Licensed to the Apache

[GitHub] piiswrong commented on a change in pull request #7082: Sparse Tensor: request for reviews

2017-08-13 Thread git
piiswrong commented on a change in pull request #7082: Sparse Tensor: request for reviews URL: https://github.com/apache/incubator-mxnet/pull/7082#discussion_r132833058 ## File path: python/mxnet/ndarray/sparse_ndarray.py ## @@ -0,0 +1,906 @@ +# Licensed to the Apache