[GitHub] [incubator-mxnet] wkcn commented on issue #14316: Why mxnet not supporting conda installation (mxnet为什么不支持使用conda安装?)

2019-03-06 Thread GitBox
wkcn commented on issue #14316: Why mxnet not supporting conda installation (mxnet为什么不支持使用conda安装?) URL: https://github.com/apache/incubator-mxnet/issues/14316#issuecomment-470423763 @BigBigWolf-AI 不需要自己编译。可用pip装mxnet-cu100或mxnet-cu100mkl --

[GitHub] [incubator-mxnet] BigBigWolf-AI commented on issue #14316: Why mxnet not supporting conda installation (mxnet为什么不支持使用conda安装?)

2019-03-06 Thread GitBox
BigBigWolf-AI commented on issue #14316: Why mxnet not supporting conda installation (mxnet为什么不支持使用conda安装?) URL: https://github.com/apache/incubator-mxnet/issues/14316#issuecomment-470420865 最新消息是mxnet需要按照cuda。意味着我的系统如果装了cuda 9,那么我就没有办法尝试使用cuda 10版的mxnet。更没办法安装其它支持cuda 10版本的框架。因为系统只装了一个c

[incubator-mxnet-site] branch asf-site updated: Bump the publish timestamp.

2019-03-06 Thread zhasheng
This is an automated email from the ASF dual-hosted git repository. zhasheng pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/incubator-mxnet-site.git The following commit(s) were added to refs/heads/asf-site by this push: new e5891b1 Bump the publish ti

[GitHub] [incubator-mxnet] eureka7mt commented on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss

2019-03-06 Thread GitBox
eureka7mt commented on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss URL: https://github.com/apache/incubator-mxnet/pull/13612#issuecomment-470414059 @wkcn It could be a scalar for classifying a single class.But for multi-class and multi-label classifying,it should be a te

[GitHub] [incubator-mxnet] wkcn edited a comment on issue #14354: [WIP] Ndarray cumsum

2019-03-06 Thread GitBox
wkcn edited a comment on issue #14354: [WIP] Ndarray cumsum URL: https://github.com/apache/incubator-mxnet/pull/14354#issuecomment-470411236 Thanks for your contribution: ) I think the gradient of cumsum exists. The in_grad is equal to cumsum(out_grad[::-1])[::-1]

[GitHub] [incubator-mxnet] wkcn edited a comment on issue #14354: [WIP] Ndarray cumsum

2019-03-06 Thread GitBox
wkcn edited a comment on issue #14354: [WIP] Ndarray cumsum URL: https://github.com/apache/incubator-mxnet/pull/14354#issuecomment-470411236 Thanks for your contribution: ) I thick the gradient of cumsum exists. The in_grad is equal to cumsum(out_grad[::-1])[::-1]

[GitHub] [incubator-mxnet] wkcn commented on issue #14354: [WIP] Ndarray cumsum

2019-03-06 Thread GitBox
wkcn commented on issue #14354: [WIP] Ndarray cumsum URL: https://github.com/apache/incubator-mxnet/pull/14354#issuecomment-470411236 The in_grad is equal to cumsum(out_grad[::-1]) This is an automated message from the Apache

[GitHub] [incubator-mxnet] wkcn edited a comment on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss

2019-03-06 Thread GitBox
wkcn edited a comment on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss URL: https://github.com/apache/incubator-mxnet/pull/13612#issuecomment-470407334 @eureka7mt I see. Since pos_weight is a tensor, it is better to default pos_weight=None as you wrote before. I will

[GitHub] [incubator-mxnet] wkcn edited a comment on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss

2019-03-06 Thread GitBox
wkcn edited a comment on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss URL: https://github.com/apache/incubator-mxnet/pull/13612#issuecomment-470407334 @eureka7mt I see. Since pos_weight is a tensor, it is better to default pos_weight=None as you wrote before. I will

[GitHub] [incubator-mxnet] wkcn commented on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss

2019-03-06 Thread GitBox
wkcn commented on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss URL: https://github.com/apache/incubator-mxnet/pull/13612#issuecomment-470407334 @eureka7mt I see. Since pos_weight is a tensor, it is better to default pos_weight=None as you wrote before. I will update i

[GitHub] [incubator-mxnet] eureka7mt edited a comment on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss

2019-03-06 Thread GitBox
eureka7mt edited a comment on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss URL: https://github.com/apache/incubator-mxnet/pull/13612#issuecomment-470401972 Adding the if-else statement make an error.Though the default value of pos_weight is set to be 1,the pos_weight is u

[GitHub] [incubator-mxnet] ChaiBapchya edited a comment on issue #14354: [WIP] Ndarray cumsum

2019-03-06 Thread GitBox
ChaiBapchya edited a comment on issue #14354: [WIP] Ndarray cumsum URL: https://github.com/apache/incubator-mxnet/pull/14354#issuecomment-470405050 @mxnet-label-bot add [pr-work-in-progress, Feature request, Operator] This is

[GitHub] [incubator-mxnet] ChaiBapchya commented on issue #14354: [WIP] Ndarray cumsum

2019-03-06 Thread GitBox
ChaiBapchya commented on issue #14354: [WIP] Ndarray cumsum URL: https://github.com/apache/incubator-mxnet/pull/14354#issuecomment-470405050 @mxnet-label-bot add [pr-work-in-progress, Feature request] This is an automated mess

[GitHub] [incubator-mxnet] ChaiBapchya opened a new pull request #14354: [WIP] Ndarray cumsum

2019-03-06 Thread GitBox
ChaiBapchya opened a new pull request #14354: [WIP] Ndarray cumsum URL: https://github.com/apache/incubator-mxnet/pull/14354 ## Description ## Fixes #13001 Numpy has cumsum - takes sum cumulatively. This PR is its NDArray API equivalent. ### Changes ### ## Comments ##

[GitHub] [incubator-mxnet] eureka7mt edited a comment on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss

2019-03-06 Thread GitBox
eureka7mt edited a comment on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss URL: https://github.com/apache/incubator-mxnet/pull/13612#issuecomment-470401972 Add the if-else statement make an error.Though the default value of pos_weight is set to be 1,the pos_weight is usua

[GitHub] [incubator-mxnet] eureka7mt edited a comment on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss

2019-03-06 Thread GitBox
eureka7mt edited a comment on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss URL: https://github.com/apache/incubator-mxnet/pull/13612#issuecomment-470401972 Add the if-else statement make an error.Though the default value of pos_weight is set to be 1,the pos_weight is usua

[GitHub] [incubator-mxnet] eureka7mt commented on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss

2019-03-06 Thread GitBox
eureka7mt commented on issue #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss URL: https://github.com/apache/incubator-mxnet/pull/13612#issuecomment-470401972 Add the if-else statement make an error.Though the default value of pos_weight is set to be 1,the pos_weight is an (1,N) ND

[GitHub] [incubator-mxnet] arcadiaphy commented on a change in pull request #14352: Optimize NMS part 2

2019-03-06 Thread GitBox
arcadiaphy commented on a change in pull request #14352: Optimize NMS part 2 URL: https://github.com/apache/incubator-mxnet/pull/14352#discussion_r263249161 ## File path: src/operator/contrib/bounding_box-inl.cuh ## @@ -280,6 +280,45 @@ void NMSApply(mshadow::Stream *s,

[GitHub] [incubator-mxnet] arcadiaphy commented on a change in pull request #14352: Optimize NMS part 2

2019-03-06 Thread GitBox
arcadiaphy commented on a change in pull request #14352: Optimize NMS part 2 URL: https://github.com/apache/incubator-mxnet/pull/14352#discussion_r263249161 ## File path: src/operator/contrib/bounding_box-inl.cuh ## @@ -280,6 +280,45 @@ void NMSApply(mshadow::Stream *s,

[GitHub] [incubator-mxnet] arcadiaphy commented on a change in pull request #14352: Optimize NMS part 2

2019-03-06 Thread GitBox
arcadiaphy commented on a change in pull request #14352: Optimize NMS part 2 URL: https://github.com/apache/incubator-mxnet/pull/14352#discussion_r263249161 ## File path: src/operator/contrib/bounding_box-inl.cuh ## @@ -280,6 +280,45 @@ void NMSApply(mshadow::Stream *s,

[GitHub] [incubator-mxnet] arcadiaphy commented on a change in pull request #14352: Optimize NMS part 2

2019-03-06 Thread GitBox
arcadiaphy commented on a change in pull request #14352: Optimize NMS part 2 URL: https://github.com/apache/incubator-mxnet/pull/14352#discussion_r263249161 ## File path: src/operator/contrib/bounding_box-inl.cuh ## @@ -280,6 +280,45 @@ void NMSApply(mshadow::Stream *s,

[GitHub] [incubator-mxnet] arcadiaphy commented on a change in pull request #14352: Optimize NMS part 2

2019-03-06 Thread GitBox
arcadiaphy commented on a change in pull request #14352: Optimize NMS part 2 URL: https://github.com/apache/incubator-mxnet/pull/14352#discussion_r263249161 ## File path: src/operator/contrib/bounding_box-inl.cuh ## @@ -280,6 +280,45 @@ void NMSApply(mshadow::Stream *s,

[incubator-mxnet] branch master updated: Bulked op segments to allow Variable nodes (#14200)

2019-03-06 Thread haibin
This is an automated email from the ASF dual-hosted git repository. haibin 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 8beea18 Bulked op segments to allow Va

[GitHub] [incubator-mxnet] Ian8888 commented on issue #14333: Predict of mx.mod.Module api problem

2019-03-06 Thread GitBox
Ian commented on issue #14333: Predict of mx.mod.Module api problem URL: https://github.com/apache/incubator-mxnet/issues/14333#issuecomment-470396433 > @Ian Can you shed some light on the model you are using ? > Specifically, what's the last layer of your model ? Is it Sigmoid o

[GitHub] [incubator-mxnet] Ian8888 edited a comment on issue #14333: Predict of mx.mod.Module api problem

2019-03-06 Thread GitBox
Ian edited a comment on issue #14333: Predict of mx.mod.Module api problem URL: https://github.com/apache/incubator-mxnet/issues/14333#issuecomment-470396433 > @Ian Can you shed some light on the model you are using ? > Specifically, what's the last layer of your model ? Is it Si

[GitHub] [incubator-mxnet] eric-haibin-lin merged pull request #14200: Bulked op segments to allow Variable nodes

2019-03-06 Thread GitBox
eric-haibin-lin merged pull request #14200: Bulked op segments to allow Variable nodes URL: https://github.com/apache/incubator-mxnet/pull/14200 This is an automated message from the Apache Git Service. To respond to the mes

[GitHub] [incubator-mxnet] wkcn commented on issue #13559: fix for opencv4

2019-03-06 Thread GitBox
wkcn commented on issue #13559: fix for opencv4 URL: https://github.com/apache/incubator-mxnet/pull/13559#issuecomment-470386643 Sorry that I submited another PR, which supports multiple versions of OpenCV. https://github.com/apache/incubator-mxnet/pull/14313 Thanks for your contri

[GitHub] [incubator-mxnet] wkcn closed pull request #13559: fix for opencv4

2019-03-06 Thread GitBox
wkcn closed pull request #13559: fix for opencv4 URL: https://github.com/apache/incubator-mxnet/pull/13559 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use t

[GitHub] [incubator-mxnet] eureka7mt commented on a change in pull request #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss

2019-03-06 Thread GitBox
eureka7mt commented on a change in pull request #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss URL: https://github.com/apache/incubator-mxnet/pull/13612#discussion_r263238545 ## File path: CONTRIBUTORS.md ## @@ -20,52 +20,6 @@ Contributors of Apache MXNet (incuba

[incubator-mxnet] branch master updated: print error message for mxnet::cpp::Operator::Invoke when failed (#14318)

2019-03-06 Thread zhasheng
This is an automated email from the ASF dual-hosted git repository. zhasheng 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 6caaa38 print error message for mxne

[GitHub] [incubator-mxnet] szha merged pull request #14318: print error message for mxnet::cpp::Operator::Invoke when failed

2019-03-06 Thread GitBox
szha merged pull request #14318: print error message for mxnet::cpp::Operator::Invoke when failed URL: https://github.com/apache/incubator-mxnet/pull/14318 This is an automated message from the Apache Git Service. To respond

[GitHub] [incubator-mxnet] ChaiBapchya commented on issue #14353: Will MXNet supports federated learning, like TensorFlow-Federated?

2019-03-06 Thread GitBox
ChaiBapchya commented on issue #14353: Will MXNet supports federated learning, like TensorFlow-Federated? URL: https://github.com/apache/incubator-mxnet/issues/14353#issuecomment-470382956 @mxnet-label-bot add [Feature request] -

[GitHub] [incubator-mxnet] ChaiBapchya edited a comment on issue #14353: Will MXNet supports federated learning, like TensorFlow-Federated?

2019-03-06 Thread GitBox
ChaiBapchya edited a comment on issue #14353: Will MXNet supports federated learning, like TensorFlow-Federated? URL: https://github.com/apache/incubator-mxnet/issues/14353#issuecomment-470382956 @mxnet-label-bot add [Feature request, Question]

[GitHub] [incubator-mxnet] wkcn commented on a change in pull request #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss

2019-03-06 Thread GitBox
wkcn commented on a change in pull request #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss URL: https://github.com/apache/incubator-mxnet/pull/13612#discussion_r262892534 ## File path: python/mxnet/gluon/loss.py ## @@ -227,13 +234,14 @@ def __init__(self, from_sig

[GitHub] [incubator-mxnet] wkcn commented on a change in pull request #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss

2019-03-06 Thread GitBox
wkcn commented on a change in pull request #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss URL: https://github.com/apache/incubator-mxnet/pull/13612#discussion_r263211839 ## File path: CONTRIBUTORS.md ## @@ -20,52 +20,6 @@ Contributors of Apache MXNet (incubating)

[GitHub] [incubator-mxnet] wkcn commented on a change in pull request #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss

2019-03-06 Thread GitBox
wkcn commented on a change in pull request #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss URL: https://github.com/apache/incubator-mxnet/pull/13612#discussion_r262814285 ## File path: python/mxnet/gluon/loss.py ## @@ -227,13 +234,14 @@ def __init__(self, from_sig

[GitHub] [incubator-mxnet] wkcn commented on a change in pull request #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss

2019-03-06 Thread GitBox
wkcn commented on a change in pull request #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss URL: https://github.com/apache/incubator-mxnet/pull/13612#discussion_r263201634 ## File path: CONTRIBUTORS.md ## @@ -20,52 +20,6 @@ Contributors of Apache MXNet (incubating)

[GitHub] [incubator-mxnet] sleepwalker2017 edited a comment on issue #14341: Is the mxnet-tensorrt integration available in C++?

2019-03-06 Thread GitBox
sleepwalker2017 edited a comment on issue #14341: Is the mxnet-tensorrt integration available in C++? URL: https://github.com/apache/incubator-mxnet/issues/14341#issuecomment-470368779 @KellenSunderland Could you come and help ? thank you ! I also put this question on the forum:

[GitHub] [incubator-mxnet] sleepwalker2017 removed a comment on issue #14341: Is the mxnet-tensorrt integration available in C++?

2019-03-06 Thread GitBox
sleepwalker2017 removed a comment on issue #14341: Is the mxnet-tensorrt integration available in C++? URL: https://github.com/apache/incubator-mxnet/issues/14341#issuecomment-470368828 @Kellen Sunderland Could you come and help ? thank you ! --

[GitHub] [incubator-mxnet] sleepwalker2017 commented on issue #14341: Is the mxnet-tensorrt integration available in C++?

2019-03-06 Thread GitBox
sleepwalker2017 commented on issue #14341: Is the mxnet-tensorrt integration available in C++? URL: https://github.com/apache/incubator-mxnet/issues/14341#issuecomment-470368828 @Kellen Sunderland Could you come and help ? thank you ! --

[GitHub] [incubator-mxnet] sleepwalker2017 commented on issue #14341: Is the mxnet-tensorrt integration available in C++?

2019-03-06 Thread GitBox
sleepwalker2017 commented on issue #14341: Is the mxnet-tensorrt integration available in C++? URL: https://github.com/apache/incubator-mxnet/issues/14341#issuecomment-470368779 @Kellen Sunderland Could you come and help ? thank you ! I also put this question on the forum:

[GitHub] [incubator-mxnet] wkcn commented on issue #14212: #14199: catch subprocess.CalledProcessError in get_gpus()

2019-03-06 Thread GitBox
wkcn commented on issue #14212: #14199: catch subprocess.CalledProcessError in get_gpus() URL: https://github.com/apache/incubator-mxnet/pull/14212#issuecomment-470368343 The PR has been merged. Thanks for your contribution! --

[incubator-mxnet] branch master updated: #14199: catch subprocess.CalledProcessError in get_gpus() (#14212)

2019-03-06 Thread wkcn
This is an automated email from the ASF dual-hosted git repository. wkcn 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 49932fa #14199: catch subprocess.CalledP

[GitHub] [incubator-mxnet] wkcn closed issue #14199: example/image-classification/common/util.py get_gpus() exception

2019-03-06 Thread GitBox
wkcn closed issue #14199: example/image-classification/common/util.py get_gpus() exception URL: https://github.com/apache/incubator-mxnet/issues/14199 This is an automated message from the Apache Git Service. To respond to t

[GitHub] [incubator-mxnet] wkcn merged pull request #14212: #14199: catch subprocess.CalledProcessError in get_gpus()

2019-03-06 Thread GitBox
wkcn merged pull request #14212: #14199: catch subprocess.CalledProcessError in get_gpus() URL: https://github.com/apache/incubator-mxnet/pull/14212 This is an automated message from the Apache Git Service. To respond to the

[GitHub] [incubator-mxnet] wkcn commented on issue #13848: [MXNET-1291] solve pylint errors in examples with issue no.12205

2019-03-06 Thread GitBox
wkcn commented on issue #13848: [MXNET-1291] solve pylint errors in examples with issue no.12205 URL: https://github.com/apache/incubator-mxnet/pull/13848#issuecomment-470367761 @cchung100m The PR has been merged. Thanks for your contribution! --

[incubator-mxnet] branch master updated: [MXNET-1291] solve pylint errors in examples with issue no.12205 (#13848)

2019-03-06 Thread wkcn
This is an automated email from the ASF dual-hosted git repository. wkcn 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 f4ab2d7 [MXNET-1291] solve pylint errors

[GitHub] [incubator-mxnet] wkcn merged pull request #13848: [MXNET-1291] solve pylint errors in examples with issue no.12205

2019-03-06 Thread GitBox
wkcn merged pull request #13848: [MXNET-1291] solve pylint errors in examples with issue no.12205 URL: https://github.com/apache/incubator-mxnet/pull/13848 This is an automated message from the Apache Git Service. To respond

[GitHub] [incubator-mxnet] ciyongch commented on issue #14128: MKLDNN based Quantized FullyConnected Operator and its fusion

2019-03-06 Thread GitBox
ciyongch commented on issue #14128: MKLDNN based Quantized FullyConnected Operator and its fusion URL: https://github.com/apache/incubator-mxnet/pull/14128#issuecomment-470364229 @TaoLv no problem. This is an automated messag

[GitHub] [incubator-mxnet] TaoLv commented on issue #14128: MKLDNN based Quantized FullyConnected Operator and its fusion

2019-03-06 Thread GitBox
TaoLv commented on issue #14128: MKLDNN based Quantized FullyConnected Operator and its fusion URL: https://github.com/apache/incubator-mxnet/pull/14128#issuecomment-470363119 @ciyongch please take a look at the conflicts. I would like to have this PR merged in 24 hours if there is no othe

[GitHub] [incubator-mxnet] zhreshold commented on issue #14058: add backgroud class in box_nms

2019-03-06 Thread GitBox
zhreshold commented on issue #14058: add backgroud class in box_nms URL: https://github.com/apache/incubator-mxnet/pull/14058#issuecomment-47036 @arcadiaphy Please also take a look at two improvements contributed by @ptrendx https://github.com/apache/incubator-mxnet/pull/14352 #1429

[GitHub] [incubator-mxnet] anirudhacharya commented on issue #14262: Fix NaN value comparisons in relu, max and min ops

2019-03-06 Thread GitBox
anirudhacharya commented on issue #14262: Fix NaN value comparisons in relu, max and min ops URL: https://github.com/apache/incubator-mxnet/pull/14262#issuecomment-470359489 > Could we add a new operator to check whether there are nan? It is used when debug. > When nan appears in the mo

[GitHub] [incubator-mxnet] anirudhacharya commented on issue #14262: Fix NaN value comparisons in relu, max and min ops

2019-03-06 Thread GitBox
anirudhacharya commented on issue #14262: Fix NaN value comparisons in relu, max and min ops URL: https://github.com/apache/incubator-mxnet/pull/14262#issuecomment-470358848 @szha What you say makes sense, nan is not a number and hence not in the realm of comparison. So any occurrence eith

[incubator-mxnet] branch master updated: compatibility with opencv4 (#14313)

2019-03-06 Thread zhasheng
This is an automated email from the ASF dual-hosted git repository. zhasheng 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 7b8e3a9 compatibility with opencv4 (

[GitHub] [incubator-mxnet] szha merged pull request #14313: compatibility with opencv4

2019-03-06 Thread GitBox
szha merged pull request #14313: compatibility with opencv4 URL: https://github.com/apache/incubator-mxnet/pull/14313 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHu

[GitHub] [incubator-mxnet] szha merged pull request #14339: Add MKLDNN headers to pip package

2019-03-06 Thread GitBox
szha merged pull request #14339: Add MKLDNN headers to pip package URL: https://github.com/apache/incubator-mxnet/pull/14339 This is an automated message from the Apache Git Service. To respond to the message, please log on t

[incubator-mxnet] branch master updated: Add MKLDNN headers to pip package (#14339)

2019-03-06 Thread zhasheng
This is an automated email from the ASF dual-hosted git repository. zhasheng 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 efb8823 Add MKLDNN headers to pip pa

[GitHub] [incubator-mxnet] szha commented on issue #14262: Fix NaN value comparisons in relu, max and min ops

2019-03-06 Thread GitBox
szha commented on issue #14262: Fix NaN value comparisons in relu, max and min ops URL: https://github.com/apache/incubator-mxnet/pull/14262#issuecomment-470352823 @anirudhacharya it's not about comparison. nan is not in the domain of the function.

[GitHub] [incubator-mxnet] eureka7mt commented on a change in pull request #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss

2019-03-06 Thread GitBox
eureka7mt commented on a change in pull request #13612: add pos_weight for SigmoidBinaryCrossEntropyLoss URL: https://github.com/apache/incubator-mxnet/pull/13612#discussion_r263210552 ## File path: CONTRIBUTORS.md ## @@ -20,52 +20,6 @@ Contributors of Apache MXNet (incuba

[GitHub] [incubator-mxnet] cchung100m commented on issue #13848: [MXNET-1291] solve pylint errors in examples with issue no.12205

2019-03-06 Thread GitBox
cchung100m commented on issue #13848: [MXNET-1291] solve pylint errors in examples with issue no.12205 URL: https://github.com/apache/incubator-mxnet/pull/13848#issuecomment-470350544 Hi @Roshrini I reviewed the conflicting file and passed the CI, please help to merge this PR again

[GitHub] [incubator-mxnet] mxnet-label-bot commented on issue #14353: Will MXNet supports federated learning, like TensorFlow-Federated?

2019-03-06 Thread GitBox
mxnet-label-bot commented on issue #14353: Will MXNet supports federated learning, like TensorFlow-Federated? URL: https://github.com/apache/incubator-mxnet/issues/14353#issuecomment-470350065 Hey, this is the MXNet Label Bot. Thank you for submitting the issue! I will try and suggest

[GitHub] [incubator-mxnet] Lizonghang opened a new issue #14353: Will MXNet supports federated learning, like TensorFlow-Federated?

2019-03-06 Thread GitBox
Lizonghang opened a new issue #14353: Will MXNet supports federated learning, like TensorFlow-Federated? URL: https://github.com/apache/incubator-mxnet/issues/14353 This is an automated message from the Apache Git Service. T

[GitHub] [incubator-mxnet] anirudhacharya commented on issue #14262: Fix NaN value comparisons in relu, max and min ops

2019-03-06 Thread GitBox
anirudhacharya commented on issue #14262: Fix NaN value comparisons in relu, max and min ops URL: https://github.com/apache/incubator-mxnet/pull/14262#issuecomment-470349303 > @anirudhacharya I'm not sure if relu grad should act like that. As a sanity check, consider if nan is larger than

[GitHub] [incubator-mxnet] wkcn commented on issue #14262: Fix NaN value comparisons in relu, max and min ops

2019-03-06 Thread GitBox
wkcn commented on issue #14262: Fix NaN value comparisons in relu, max and min ops URL: https://github.com/apache/incubator-mxnet/pull/14262#issuecomment-470346639 Could we add a new operator to check whether there are nan? It is used when debug. When nan appears in the model, it always

[GitHub] [incubator-mxnet] szha commented on issue #14262: Fix NaN value comparisons in relu, max and min ops

2019-03-06 Thread GitBox
szha commented on issue #14262: Fix NaN value comparisons in relu, max and min ops URL: https://github.com/apache/incubator-mxnet/pull/14262#issuecomment-470343849 @anirudhacharya I'm not sure if relu grad should act like that. As a sanity check, consider if nan is larger than or smaller t

[incubator-mxnet-site] branch asf-site updated: Bump the publish timestamp.

2019-03-06 Thread zhasheng
This is an automated email from the ASF dual-hosted git repository. zhasheng pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/incubator-mxnet-site.git The following commit(s) were added to refs/heads/asf-site by this push: new 4c76f1e Bump the publish ti

[GitHub] [incubator-mxnet] stereomatchingkiss edited a comment on issue #14343: Cannot generate op.h when build with mkl

2019-03-06 Thread GitBox
stereomatchingkiss edited a comment on issue #14343: Cannot generate op.h when build with mkl URL: https://github.com/apache/incubator-mxnet/issues/14343#issuecomment-470340152 > @xinyu-intel is looking for the issue and will reply to you soon. Thanks, by the way, I build mxnet 1.3.

[GitHub] [incubator-mxnet] stereomatchingkiss commented on issue #14343: Cannot generate op.h when build with mkl

2019-03-06 Thread GitBox
stereomatchingkiss commented on issue #14343: Cannot generate op.h when build with mkl URL: https://github.com/apache/incubator-mxnet/issues/14343#issuecomment-470340152 > @xinyu-intel is looking for the issue and will reply to you soon. Thanks, by the way, I build mxnet 1.3.1 with

[GitHub] [incubator-mxnet] vandanavk commented on issue #14351: [MXNet-1348][WIP][Fit API]Adding CNN examples for fit() API

2019-03-06 Thread GitBox
vandanavk commented on issue #14351: [MXNet-1348][WIP][Fit API]Adding CNN examples for fit() API URL: https://github.com/apache/incubator-mxnet/pull/14351#issuecomment-470338500 @mxnet-label-bot add [Gluon, pr-work-in-progress] --

[GitHub] [incubator-mxnet] vandanavk commented on issue #14352: Optimize NMS part 2

2019-03-06 Thread GitBox
vandanavk commented on issue #14352: Optimize NMS part 2 URL: https://github.com/apache/incubator-mxnet/pull/14352#issuecomment-470338358 @mxnet-label-bot add [Operator, pr-awaiting-review] This is an automated message from th

[GitHub] [incubator-mxnet] vandanavk commented on issue #14350: [MXNET-1335][WIP][fit api]Text Sentiment Classification examples using Gluon fit() API

2019-03-06 Thread GitBox
vandanavk commented on issue #14350: [MXNET-1335][WIP][fit api]Text Sentiment Classification examples using Gluon fit() API URL: https://github.com/apache/incubator-mxnet/pull/14350#issuecomment-470338213 @mxnet-label-bot add [Gluon, pr-work-in-progress] ---

[GitHub] [incubator-mxnet] roywei commented on a change in pull request #14346: [MXNet-1334][WIP][Fit API]base class for estimator and eventhandler

2019-03-06 Thread GitBox
roywei commented on a change in pull request #14346: [MXNet-1334][WIP][Fit API]base class for estimator and eventhandler URL: https://github.com/apache/incubator-mxnet/pull/14346#discussion_r263195602 ## File path: python/mxnet/gluon/estimator/estimator.py ## @@ -0,0 +1,20

[GitHub] [incubator-mxnet] ifeherva commented on issue #14321: moveaxis operator now accepts negative indices and sequence of ints as well.

2019-03-06 Thread GitBox
ifeherva commented on issue #14321: moveaxis operator now accepts negative indices and sequence of ints as well. URL: https://github.com/apache/incubator-mxnet/pull/14321#issuecomment-470330498 Tests are very flaky, none of them related to this PR. -

[GitHub] [incubator-mxnet] drivanov edited a comment on issue #14154: Improving the run time of the tests which use assert_almost_equal OR check_numeric_gradient functions

2019-03-06 Thread GitBox
drivanov edited a comment on issue #14154: Improving the run time of the tests which use assert_almost_equal OR check_numeric_gradient functions URL: https://github.com/apache/incubator-mxnet/pull/14154#issuecomment-470215265 > Why are there so much changed files in this PR? 1. I add

[GitHub] [incubator-mxnet] ptrendx commented on a change in pull request #14346: [MXNet-1334][WIP][Fit API]base class for estimator and eventhandler

2019-03-06 Thread GitBox
ptrendx commented on a change in pull request #14346: [MXNet-1334][WIP][Fit API]base class for estimator and eventhandler URL: https://github.com/apache/incubator-mxnet/pull/14346#discussion_r263186042 ## File path: python/mxnet/gluon/estimator/estimator.py ## @@ -0,0 +1,2

[GitHub] [incubator-mxnet] ptrendx opened a new pull request #14352: Optimize NMS part 2

2019-03-06 Thread GitBox
ptrendx opened a new pull request #14352: Optimize NMS part 2 URL: https://github.com/apache/incubator-mxnet/pull/14352 ## Description ## This PR changes the `batch_start` calculation in the BoxNMSForward op to the custom kernel, much faster than the mshadow generated one. In MaskRCNN mo

[GitHub] [incubator-mxnet] wkcn commented on issue #14340: [bug] Bug in Gradient flow with backward(retain_graph=True) and split()

2019-03-06 Thread GitBox
wkcn commented on issue #14340: [bug] Bug in Gradient flow with backward(retain_graph=True) and split() URL: https://github.com/apache/incubator-mxnet/issues/14340#issuecomment-470318368 split has a bug, and it always concatenates the in_grad by dim 1. However, it still has problem when

[GitHub] [incubator-mxnet] ThomasDelteil edited a comment on issue #14340: [bug] Bug in Gradient flow with backward(retain_graph=True) and split()

2019-03-06 Thread GitBox
ThomasDelteil edited a comment on issue #14340: [bug] Bug in Gradient flow with backward(retain_graph=True) and split() URL: https://github.com/apache/incubator-mxnet/issues/14340#issuecomment-470298114 @apeforest The test does not seem enough to actual test that backward is workin

[GitHub] [incubator-mxnet] ThomasDelteil edited a comment on issue #14340: [bug] Bug in Gradient flow with backward(retain_graph=True) and split()

2019-03-06 Thread GitBox
ThomasDelteil edited a comment on issue #14340: [bug] Bug in Gradient flow with backward(retain_graph=True) and split() URL: https://github.com/apache/incubator-mxnet/issues/14340#issuecomment-470298114 @apeforest The test does not seem enough to actual test that backward is workin

[GitHub] [incubator-mxnet] ThomasDelteil commented on issue #14340: [bug] Bug in Gradient flow with backward(retain_graph=True) and split()

2019-03-06 Thread GitBox
ThomasDelteil commented on issue #14340: [bug] Bug in Gradient flow with backward(retain_graph=True) and split() URL: https://github.com/apache/incubator-mxnet/issues/14340#issuecomment-470298114 @apeforest The test does not seem enough to actual test that backward is working, I w

[GitHub] [incubator-mxnet] abhinavs95 opened a new pull request #14351: [MXNet-1348][WIP][Fit API]Adding CNN examples for fit() API

2019-03-06 Thread GitBox
abhinavs95 opened a new pull request #14351: [MXNet-1348][WIP][Fit API]Adding CNN examples for fit() API URL: https://github.com/apache/incubator-mxnet/pull/14351 ## Description ## Adding AlexNet, ResNet and FCN examples for the Gluon fit() API. This PR depends on its parent PR #14346

[GitHub] [incubator-mxnet] szha merged pull request #14347: Updates build_lib.sh to copy the cub library license

2019-03-06 Thread GitBox
szha merged pull request #14347: Updates build_lib.sh to copy the cub library license URL: https://github.com/apache/incubator-mxnet/pull/14347 This is an automated message from the Apache Git Service. To respond to the mess

[incubator-mxnet] branch master updated: Updates build_lib.sh to copy the cub library license (#14347)

2019-03-06 Thread zhasheng
This is an automated email from the ASF dual-hosted git repository. zhasheng 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 8ab7998 Updates build_lib.sh to copy

[GitHub] [incubator-mxnet] karan6181 opened a new pull request #14350: [MXNET-1335][WIP][fit api]Text Sentiment Classification examples using Gluon fit() API

2019-03-06 Thread GitBox
karan6181 opened a new pull request #14350: [MXNET-1335][WIP][fit api]Text Sentiment Classification examples using Gluon fit() API URL: https://github.com/apache/incubator-mxnet/pull/14350 ## Description ## This PR adds Text Sentiment Classification examples using Gluon fit() API. This

[GitHub] [incubator-mxnet] aChatterjee13 commented on issue #14349: installed mxnet using pip install mxnet==1.3.1. Using numpy 1.14.3. But the import mxnet fails

2019-03-06 Thread GitBox
aChatterjee13 commented on issue #14349: installed mxnet using pip install mxnet==1.3.1. Using numpy 1.14.3. But the import mxnet fails URL: https://github.com/apache/incubator-mxnet/issues/14349#issuecomment-470293087 v1.3.1 was already in the application. I even tried with the latest ver

[GitHub] [incubator-mxnet] piyushghai commented on issue #14349: installed mxnet using pip install mxnet==1.3.1. Using numpy 1.14.3. But the import mxnet fails

2019-03-06 Thread GitBox
piyushghai commented on issue #14349: installed mxnet using pip install mxnet==1.3.1. Using numpy 1.14.3. But the import mxnet fails URL: https://github.com/apache/incubator-mxnet/issues/14349#issuecomment-470290634 @aChatterjee13 , we now have MXNet v1.4 as well on PyPi. Is there any

[GitHub] [incubator-mxnet] mxnet-label-bot commented on issue #14349: installed mxnet using pip install mxnet==1.3.1. Using numpy 1.14.3. But the import mxnet fails

2019-03-06 Thread GitBox
mxnet-label-bot commented on issue #14349: installed mxnet using pip install mxnet==1.3.1. Using numpy 1.14.3. But the import mxnet fails URL: https://github.com/apache/incubator-mxnet/issues/14349#issuecomment-470288105 Hey, this is the MXNet Label Bot. Thank you for submitting the i

[GitHub] [incubator-mxnet] aChatterjee13 opened a new issue #14349: installed mxnet using pip install mxnet==1.3.1. Using numpy 1.14.3. But the import mxnet fails

2019-03-06 Thread GitBox
aChatterjee13 opened a new issue #14349: installed mxnet using pip install mxnet==1.3.1. Using numpy 1.14.3. But the import mxnet fails URL: https://github.com/apache/incubator-mxnet/issues/14349 Note: Providing complete information in the most concise form is the best way to get help. Thi

[GitHub] [incubator-mxnet] apeforest commented on issue #14340: [bug] Bug in Gradient flow with backward(retain_graph=True) and split()

2019-03-06 Thread GitBox
apeforest commented on issue #14340: [bug] Bug in Gradient flow with backward(retain_graph=True) and split() URL: https://github.com/apache/incubator-mxnet/issues/14340#issuecomment-470286826 @ThomasDelteil I ran it on CPU and didn't get core dump. Here is my output: ``` [[1.

[GitHub] [incubator-mxnet] apeforest commented on issue #9166: Segfault on ndarray with negative dimension i.e. mxnet.nx.zeros((-1, ))

2019-03-06 Thread GitBox
apeforest commented on issue #9166: Segfault on ndarray with negative dimension i.e. mxnet.nx.zeros((-1,)) URL: https://github.com/apache/incubator-mxnet/issues/9166#issuecomment-470284370 @anirudhacharya Thanks for checking this. Could you please help to update the exception with more me

[GitHub] [incubator-mxnet] anirudhacharya edited a comment on issue #9166: Segfault on ndarray with negative dimension i.e. mxnet.nx.zeros((-1, ))

2019-03-06 Thread GitBox
anirudhacharya edited a comment on issue #9166: Segfault on ndarray with negative dimension i.e. mxnet.nx.zeros((-1,)) URL: https://github.com/apache/incubator-mxnet/issues/9166#issuecomment-470283142 with the latest version of mxnet, the above command neither causes core dump or Segmenta

[GitHub] [incubator-mxnet] anirudhacharya commented on issue #9166: Segfault on ndarray with negative dimension i.e. mxnet.nx.zeros((-1, ))

2019-03-06 Thread GitBox
anirudhacharya commented on issue #9166: Segfault on ndarray with negative dimension i.e. mxnet.nx.zeros((-1,)) URL: https://github.com/apache/incubator-mxnet/issues/9166#issuecomment-470283142 with the latest version of mxnet, the above command neither causes core dump or Segmentation fa

[GitHub] [incubator-mxnet] aaronmarkham commented on issue #14243: Fix commands to make doc consistent

2019-03-06 Thread GitBox
aaronmarkham commented on issue #14243: Fix commands to make doc consistent URL: https://github.com/apache/incubator-mxnet/pull/14243#issuecomment-470280768 Let's take the `concat` operator example. Assume we leave in the pseudo-code as is. Then we still have something that doesn't exec

[GitHub] [incubator-mxnet] apeforest commented on issue #9166: Segfault on ndarray with negative dimension i.e. mxnet.nx.zeros((-1, ))

2019-03-06 Thread GitBox
apeforest commented on issue #9166: Segfault on ndarray with negative dimension i.e. mxnet.nx.zeros((-1,)) URL: https://github.com/apache/incubator-mxnet/issues/9166#issuecomment-470280743 @anirudhacharya This is causing a core dump. I think it's a bug that needs to be fixed. ---

[GitHub] [incubator-mxnet] anirudhacharya commented on issue #9166: Segfault on ndarray with negative dimension i.e. mxnet.nx.zeros((-1, ))

2019-03-06 Thread GitBox
anirudhacharya commented on issue #9166: Segfault on ndarray with negative dimension i.e. mxnet.nx.zeros((-1,)) URL: https://github.com/apache/incubator-mxnet/issues/9166#issuecomment-470279860 @apeforest this is not a bug but a case of improper exception handling. Please update the label

[incubator-mxnet-site] branch asf-site updated: Bump the publish timestamp.

2019-03-06 Thread zhasheng
This is an automated email from the ASF dual-hosted git repository. zhasheng pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/incubator-mxnet-site.git The following commit(s) were added to refs/heads/asf-site by this push: new 51fcad9 Bump the publish ti

[GitHub] [incubator-mxnet] anirudhacharya commented on issue #10393: ImageRecordIOParser2 Assertion failed

2019-03-06 Thread GitBox
anirudhacharya commented on issue #10393: ImageRecordIOParser2 Assertion failed URL: https://github.com/apache/incubator-mxnet/issues/10393#issuecomment-470266413 can you share the .rec file that is throwing this error? It would be ideal if you could share a minimal .rec file that can repr

[GitHub] [incubator-mxnet] gordon1992 commented on issue #14348: [MXNET-1302, MXNET-1331] Backport fix to v1.3.x branch

2019-03-06 Thread GitBox
gordon1992 commented on issue #14348: [MXNET-1302,MXNET-1331] Backport fix to v1.3.x branch URL: https://github.com/apache/incubator-mxnet/pull/14348#issuecomment-470265129 @mxnet-label-bot [maven, scala, pr-work-in-progress]

[GitHub] [incubator-mxnet] gordon1992 edited a comment on issue #14348: [MXNET-1302, MXNET-1331] Backport fix to v1.3.x branch

2019-03-06 Thread GitBox
gordon1992 edited a comment on issue #14348: [MXNET-1302,MXNET-1331] Backport fix to v1.3.x branch URL: https://github.com/apache/incubator-mxnet/pull/14348#issuecomment-470265129 @mxnet-label-bot update [maven, scala, pr-work-in-progress] --

[GitHub] [incubator-mxnet] gordon1992 opened a new pull request #14348: [MXNET-1302, MXNET-1331] Backport fix to v1.3.x branch

2019-03-06 Thread GitBox
gordon1992 opened a new pull request #14348: [MXNET-1302,MXNET-1331] Backport fix to v1.3.x branch URL: https://github.com/apache/incubator-mxnet/pull/14348 Consumers of MXNet are exposed to the commons-codec and commons-io library versions MXNet uses internally. This change excludes those

  1   2   >