[GitHub] Mendel1 opened a new issue #9696: warpctc: module object has no at tribute 'WarpCTC'

2018-02-04 Thread GitBox
Mendel1 opened a new issue #9696: warpctc: module object has no at tribute 'WarpCTC' URL: https://github.com/apache/incubator-mxnet/issues/9696 I build the mxnet from source and follows the step in [#7002](https://github.com/apache/incubator-mxnet/issues/7002).But I found it works well if

[GitHub] tonnywang opened a new issue #9695: distribute training failure about van error

2018-02-04 Thread GitBox
tonnywang opened a new issue #9695: distribute training failure about van error URL: https://github.com/apache/incubator-mxnet/issues/9695 Hi, all, I met an issue about van error when I tried to run distribute training, 2 machines, 3 gpus per node. The error message is as the below.

[GitHub] solin319 opened a new pull request #9694: Remove '+=' in inception-resnet-v2

2018-02-04 Thread GitBox
solin319 opened a new pull request #9694: Remove '+=' in inception-resnet-v2 URL: https://github.com/apache/incubator-mxnet/pull/9694 Symbol does not support '+='. ``` def __iadd__(self, other): raise NotImplementedForSymbol(self.__iadd__, '+=', other, 1) ``` ---

[GitHub] FCInter opened a new issue #9693: mx.nd.array.reshape report error when reshape with special value -2

2018-02-04 Thread GitBox
FCInter opened a new issue #9693: mx.nd.array.reshape report error when reshape with special value -2 URL: https://github.com/apache/incubator-mxnet/issues/9693 ## Description I'm trying to reshape an ndarray from shape (2,3) to (1,2,3). I tried the command `a.reshape((-4,1,2,-2))`

[GitHub] dwSun commented on a change in pull request #9614: MobileNetV2

2018-02-04 Thread GitBox
dwSun commented on a change in pull request #9614: MobileNetV2 URL: https://github.com/apache/incubator-mxnet/pull/9614#discussion_r165874238 ## File path: python/mxnet/gluon/model_zoo/vision/mobilenet.py ## @@ -147,57 +143,21 @@ def __init__(self, multiplier=1.0, classes=1

[GitHub] Godricly commented on issue #7319: [RoadMap] Legacy issue resolution before 1.0 release

2018-02-04 Thread GitBox
Godricly commented on issue #7319: [RoadMap] Legacy issue resolution before 1.0 release URL: https://github.com/apache/incubator-mxnet/issues/7319#issuecomment-362966294 @szha I met same issue as @taliesinb did using conv1d in mxnet(mxnet-cu80 (1.0.0.post2) ). The document is not match

[GitHub] anirudh2290 commented on a change in pull request #9681: Better Exception Handling for Operators

2018-02-04 Thread GitBox
anirudh2290 commented on a change in pull request #9681: Better Exception Handling for Operators URL: https://github.com/apache/incubator-mxnet/pull/9681#discussion_r165864917 ## File path: src/engine/threaded_engine.h ## @@ -338,33 +346,46 @@ class ThreadedEngine : public

[GitHub] chinakook commented on issue #9492: fix print_summary bug and add groups of convolution

2018-02-04 Thread GitBox
chinakook commented on issue #9492: fix print_summary bug and add groups of convolution URL: https://github.com/apache/incubator-mxnet/pull/9492#issuecomment-362961313 It' done. This is an automated message from the Apache Gi

[GitHub] pengzhao-intel commented on issue #9692: cifar10 training on P100 seems not converging

2018-02-04 Thread GitBox
pengzhao-intel commented on issue #9692: cifar10 training on P100 seems not converging URL: https://github.com/apache/incubator-mxnet/issues/9692#issuecomment-362955476 Maybe you don't train enough epochs. The CPU backend can reach 0.81 val-accuracy at 10 epoch as below. ```

[GitHub] pengzhao-intel commented on issue #9692: cifar10 training on P100 seems not converging

2018-02-04 Thread GitBox
pengzhao-intel commented on issue #9692: cifar10 training on P100 seems not converging URL: https://github.com/apache/incubator-mxnet/issues/9692#issuecomment-362955476 Does this work on CPU? This is an automated message fro

[GitHub] anirudh2290 commented on a change in pull request #9681: Better Exception Handling for Operators

2018-02-04 Thread GitBox
anirudh2290 commented on a change in pull request #9681: Better Exception Handling for Operators URL: https://github.com/apache/incubator-mxnet/pull/9681#discussion_r165864917 ## File path: src/engine/threaded_engine.h ## @@ -338,33 +346,46 @@ class ThreadedEngine : public

[GitHub] szha commented on issue #8531: How to get the correlation result of two feature maps?

2018-02-04 Thread GitBox
szha commented on issue #8531: How to get the correlation result of two feature maps? URL: https://github.com/apache/incubator-mxnet/issues/8531#issuecomment-362953433 @apache/mxnet-committers: This issue has been inactive for the past 90 days. It has no label and needs triage. For

[GitHub] dimon777 opened a new issue #9692: cifar10 training on P100 seems not converging

2018-02-04 Thread GitBox
dimon777 opened a new issue #9692: cifar10 training on P100 seems not converging URL: https://github.com/apache/incubator-mxnet/issues/9692 ## Description Training cifar10 on two GPU P100 with defaults doesn't seem to converge ## Environment info (Required) ``` # python diagn

[GitHub] mbaijal commented on issue #9616: Removing a broken tutorial from the nightly tests

2018-02-04 Thread GitBox
mbaijal commented on issue #9616: Removing a broken tutorial from the nightly tests URL: https://github.com/apache/incubator-mxnet/pull/9616#issuecomment-362944552 Sure, I can work on this later this week or the next. Is this critical? --

[GitHub] cjolivier01 commented on a change in pull request #9625: sparse regression operators

2018-02-04 Thread GitBox
cjolivier01 commented on a change in pull request #9625: sparse regression operators URL: https://github.com/apache/incubator-mxnet/pull/9625#discussion_r165851301 ## File path: src/operator/regression_output-inl.h ## @@ -121,6 +175,67 @@ void RegressionBackward(const nnvm

[GitHub] cjolivier01 commented on issue #9625: sparse regression operators

2018-02-04 Thread GitBox
cjolivier01 commented on issue #9625: sparse regression operators URL: https://github.com/apache/incubator-mxnet/pull/9625#issuecomment-362923703 oh yeah i remember now how i fixed it. what cc or cu file is compiling when it occurs? it was happening with elemwise_unary_op.cc or something so

[GitHub] cjolivier01 commented on issue #9625: sparse regression operators

2018-02-04 Thread GitBox
cjolivier01 commented on issue #9625: sparse regression operators URL: https://github.com/apache/incubator-mxnet/pull/9625#issuecomment-362923451 it wasn?t the 32 bit compiler thing ? i also saw that ?solution?. i verified we were using 64 bit compiler.

[GitHub] cjolivier01 commented on issue #9625: sparse regression operators

2018-02-04 Thread GitBox
cjolivier01 commented on issue #9625: sparse regression operators URL: https://github.com/apache/incubator-mxnet/pull/9625#issuecomment-362923346 i?ve seen the error before. something to do with templates. i don?t recall exactly how i fixed it ? i tried lots of things until it finally stopp

[GitHub] ZiyueHuang commented on issue #9625: sparse regression operators

2018-02-04 Thread GitBox
ZiyueHuang commented on issue #9625: sparse regression operators URL: https://github.com/apache/incubator-mxnet/pull/9625#issuecomment-362921573 Hi @cjolivier01 , did you see this error before? Do you have any idea on how to fix it? Thanks very much. ---

[incubator-mxnet] branch master updated: Enable dp4a for the CI (#9684)

2018-02-04 Thread marcoabreu
This is an automated email from the ASF dual-hosted git repository. marcoabreu 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 4c55d06 Enable dp4a for the CI (#9

[GitHub] marcoabreu closed pull request #9684: Enable dp4a for the CI

2018-02-04 Thread GitBox
marcoabreu closed pull request #9684: Enable dp4a for the CI URL: https://github.com/apache/incubator-mxnet/pull/9684 This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull reque

[GitHub] KellenSunderland commented on issue #9671: Exp backoff for downloads.

2018-02-04 Thread GitBox
KellenSunderland commented on issue #9671: Exp backoff for downloads. URL: https://github.com/apache/incubator-mxnet/pull/9671#issuecomment-362913647 @eric-haibin-lin Yes I was thinking of just pointing everything to the gluon download function for now.

[GitHub] KellenSunderland commented on a change in pull request #9684: Enable dp4a for the CI

2018-02-04 Thread GitBox
KellenSunderland commented on a change in pull request #9684: Enable dp4a for the CI URL: https://github.com/apache/incubator-mxnet/pull/9684#discussion_r165847185 ## File path: tests/ci_build/ci_build.sh ## @@ -176,7 +180,7 @@ ${DOCKER_BINARY} run --rm --pid=host \ -

[GitHub] leezu commented on a change in pull request #9165: add embedding learning example

2018-02-04 Thread GitBox
leezu commented on a change in pull request #9165: add embedding learning example URL: https://github.com/apache/incubator-mxnet/pull/9165#discussion_r165843253 ## File path: example/gluon/embedding_learning/model.py ## @@ -0,0 +1,224 @@ +# Licensed to the Apache Software

[GitHub] leezu commented on a change in pull request #9165: add embedding learning example

2018-02-04 Thread GitBox
leezu commented on a change in pull request #9165: add embedding learning example URL: https://github.com/apache/incubator-mxnet/pull/9165#discussion_r165843253 ## File path: example/gluon/embedding_learning/model.py ## @@ -0,0 +1,224 @@ +# Licensed to the Apache Software

[GitHub] ZiyueHuang commented on issue #9625: sparse regression operators

2018-02-04 Thread GitBox
ZiyueHuang commented on issue #9625: sparse regression operators URL: https://github.com/apache/incubator-mxnet/pull/9625#issuecomment-362889035 Build fails on windows machine with `fatal error C1002: compiler is out of heap space in pass 2`. I don't know how to fix it. Do you have