[GitHub] cclauss opened a new pull request #11671: Some Python 3 fixes in ./example

2018-07-12 Thread GitBox
cclauss opened a new pull request #11671: Some Python 3 fixes in ./example URL: https://github.com/apache/incubator-mxnet/pull/11671 ## Description ## Fix undefined names found be flake8 F821 that are mostly (but not exclusively) related to Python 3. Each undefined name has the

[GitHub] ThomasDelteil commented on issue #11669: Fix TabError for Python 3

2018-07-12 Thread GitBox
ThomasDelteil commented on issue #11669: Fix TabError for Python 3 URL: https://github.com/apache/incubator-mxnet/pull/11669#issuecomment-404597784 @marcoabreu can't really speak on behalf of @simoncorstonoliver but I think we have already planed out Q3 in terms of resource allocation so

[GitHub] KellenSunderland commented on a change in pull request #11325: Added TensorRT runtime integration

2018-07-12 Thread GitBox
KellenSunderland commented on a change in pull request #11325: Added TensorRT runtime integration URL: https://github.com/apache/incubator-mxnet/pull/11325#discussion_r202143481 ## File path: Makefile ## @@ -94,6 +94,14 @@ else endif CFLAGS += -I$(TPARTYDIR)/mshadow/

[GitHub] haojin2 commented on a change in pull request #11664: Fall back when sparse arrays are passed to MKLDNN-enabled operators

2018-07-12 Thread GitBox
haojin2 commented on a change in pull request #11664: Fall back when sparse arrays are passed to MKLDNN-enabled operators URL: https://github.com/apache/incubator-mxnet/pull/11664#discussion_r202168071 ## File path: tests/python/mkl/test_mkldnn.py ## @@ -240,5 +240,135 @@

[GitHub] zheng-da opened a new pull request #11675: fix a bug in CachedOp.

2018-07-12 Thread GitBox
zheng-da opened a new pull request #11675: fix a bug in CachedOp. URL: https://github.com/apache/incubator-mxnet/pull/11675 ## Description ## After adding kSubgraphExec, some logic in CachedOp is no longer valid. For example, an op executor that requires async execution may not contain

[GitHub] KellenSunderland opened a new pull request #11679: Update benchmark_score.py to fix MXNet capitalization

2018-07-12 Thread GitBox
KellenSunderland opened a new pull request #11679: Update benchmark_score.py to fix MXNet capitalization URL: https://github.com/apache/incubator-mxnet/pull/11679 ## Description ## Update benchmark_score.py to fix MXNet capitalization.

[GitHub] zhreshold commented on a change in pull request #11676: MXNet ONNX export - Dot op support

2018-07-12 Thread GitBox
zhreshold commented on a change in pull request #11676: MXNet ONNX export - Dot op support URL: https://github.com/apache/incubator-mxnet/pull/11676#discussion_r202188187 ## File path: python/mxnet/contrib/onnx/mx2onnx/_op_translations.py ## @@ -435,6 +435,101 @@ def

[GitHub] haojin2 commented on a change in pull request #11656: Fix batchnorm problem with sparse matrices when fix_gamma=True

2018-07-12 Thread GitBox
haojin2 commented on a change in pull request #11656: Fix batchnorm problem with sparse matrices when fix_gamma=True URL: https://github.com/apache/incubator-mxnet/pull/11656#discussion_r202128834 ## File path: tests/python/mkl/test_mkldnn.py ## @@ -233,7 +233,7 @@ def

[GitHub] cclauss opened a new pull request #11673: xrange(10) --> range(10) for Python 3

2018-07-12 Thread GitBox
cclauss opened a new pull request #11673: xrange(10) --> range(10) for Python 3 URL: https://github.com/apache/incubator-mxnet/pull/11673 __xrange()__ was removed in Python 3 in favor of __range()__. For such a small number as 10 there is no difference between __xrange()__ and __range()__

[GitHub] larroy commented on issue #11670: Docs build improvements

2018-07-12 Thread GitBox
larroy commented on issue #11670: Docs build improvements URL: https://github.com/apache/incubator-mxnet/pull/11670#issuecomment-404649406 Yes, we have decided to switch to Cmake and there's people working on that (@lebeg) but it will take a while. If possible is better to start new things

[GitHub] thomelane commented on issue #8606: How to quick share weight like the tensorflow using reused_params !!!

2018-07-12 Thread GitBox
thomelane commented on issue #8606: How to quick share weight like the tensorflow using reused_params !!! URL: https://github.com/apache/incubator-mxnet/issues/8606#issuecomment-404596265 With Gluon you can just call the same `Block` multiple times on different inputs. And `autograd`

[GitHub] haojin2 commented on issue #10755: 'Take' operator should support non-zero axis values

2018-07-12 Thread GitBox
haojin2 commented on issue #10755: 'Take' operator should support non-zero axis values URL: https://github.com/apache/incubator-mxnet/issues/10755#issuecomment-404609321 @nswamy Could you please change the labels to "Feature Request"? I feel like that's a better description of this

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

2018-07-12 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 17d7d62 Bump the publish

[GitHub] cclauss commented on a change in pull request #11671: Some Python 3 fixes in ./example

2018-07-12 Thread GitBox
cclauss commented on a change in pull request #11671: Some Python 3 fixes in ./example URL: https://github.com/apache/incubator-mxnet/pull/11671#discussion_r202177271 ## File path: example/ssd/dataset/pycocotools/coco.py ## @@ -55,12 +55,12 @@ # from . import mask as

[GitHub] KellenSunderland opened a new pull request #11677: Update README.md to fix MXNet capitalization

2018-07-12 Thread GitBox
KellenSunderland opened a new pull request #11677: Update README.md to fix MXNet capitalization URL: https://github.com/apache/incubator-mxnet/pull/11677 ## Description ## Update README.md to fix MXNet capitalization.

[GitHub] apeforest commented on issue #11466: [MXNET-560] Add temperature parameter in Softmax operator

2018-07-12 Thread GitBox
apeforest commented on issue #11466: [MXNET-560] Add temperature parameter in Softmax operator URL: https://github.com/apache/incubator-mxnet/pull/11466#issuecomment-404663996 @haojin2 Changed parameter temperature to optional as we discussed. Added unittest

[GitHub] apeforest edited a comment on issue #11466: [MXNET-560] Add temperature parameter in Softmax operator

2018-07-12 Thread GitBox
apeforest edited a comment on issue #11466: [MXNET-560] Add temperature parameter in Softmax operator URL: https://github.com/apache/incubator-mxnet/pull/11466#issuecomment-404663996 @haojin2 Changed parameter **temperature** to optional as we discussed. Added unittest

[GitHub] piyushghai commented on issue #11626: [MXNET-651] MXNet Model Backwards Compatibility Checker

2018-07-12 Thread GitBox
piyushghai commented on issue #11626: [MXNET-651] MXNet Model Backwards Compatibility Checker URL: https://github.com/apache/incubator-mxnet/pull/11626#issuecomment-404623349 @marcoabreu I have removed real world datasets, and instead I am now using randomly generated datasets. I have

[GitHub] ijkguo commented on issue #11671: Some Python 3 fixes in ./example

2018-07-12 Thread GitBox
ijkguo commented on issue #11671: Some Python 3 fixes in ./example URL: https://github.com/apache/incubator-mxnet/pull/11671#issuecomment-404648034 I see 2 pycocotools files changed. I would suggest removing copied version of pycocotools from both ssd and rcnn examples. The pip version

[GitHub] zhreshold commented on a change in pull request #11676: MXNet ONNX export - Dot op support

2018-07-12 Thread GitBox
zhreshold commented on a change in pull request #11676: MXNet ONNX export - Dot op support URL: https://github.com/apache/incubator-mxnet/pull/11676#discussion_r202187675 ## File path: python/mxnet/contrib/onnx/mx2onnx/_op_translations.py ## @@ -435,6 +435,101 @@ def

[GitHub] thomelane commented on issue #4960: Variable batch size

2018-07-12 Thread GitBox
thomelane commented on issue #4960: Variable batch size URL: https://github.com/apache/incubator-mxnet/issues/4960#issuecomment-404607974 Some related discussions can be found in https://github.com/apache/incubator-mxnet/issues/2294. And a good example can be found in the [Faster

[GitHub] junrushao1994 commented on a change in pull request #11566: [MXNET-626] Add while_loop

2018-07-12 Thread GitBox
junrushao1994 commented on a change in pull request #11566: [MXNET-626] Add while_loop URL: https://github.com/apache/incubator-mxnet/pull/11566#discussion_r202155437 ## File path: python/mxnet/ndarray/contrib.py ## @@ -191,3 +191,128 @@ def check_input(inputs, in_type,

[GitHub] szha commented on issue #11671: Some Python 3 fixes in ./example

2018-07-12 Thread GitBox
szha commented on issue #11671: Some Python 3 fixes in ./example URL: https://github.com/apache/incubator-mxnet/pull/11671#issuecomment-404644569 Pinging @antinucleon @precedenceguo @WellyZhang @zhreshold, respective example contributors, in case there are concerns.

[GitHub] azai91 opened a new pull request #11678: [MXNET-653] MKLDNN Fallback LRN

2018-07-12 Thread GitBox
azai91 opened a new pull request #11678: [MXNET-653] MKLDNN Fallback LRN URL: https://github.com/apache/incubator-mxnet/pull/11678 ## Description ## Fallback dispatch mode when using MKLDNN LRN ## Checklist ## ### Essentials ### Please feel free to remove inapplicable items

[GitHub] KellenSunderland commented on a change in pull request #11325: Added TensorRT runtime integration

2018-07-12 Thread GitBox
KellenSunderland commented on a change in pull request #11325: Added TensorRT runtime integration URL: https://github.com/apache/incubator-mxnet/pull/11325#discussion_r202185903 ## File path: src/executor/graph_executor.cc ## @@ -940,6 +968,91 @@ void

[GitHub] aaronmarkham commented on issue #11670: Docs build improvements

2018-07-12 Thread GitBox
aaronmarkham commented on issue #11670: Docs build improvements URL: https://github.com/apache/incubator-mxnet/pull/11670#issuecomment-404598252 I updated the README and it uses this script:

[GitHub] ankkhedia commented on issue #8648: How can I install the newest mxnet R package?

2018-07-12 Thread GitBox
ankkhedia commented on issue #8648: How can I install the newest mxnet R package? URL: https://github.com/apache/incubator-mxnet/issues/8648#issuecomment-404601221 Hi @markusdumke The binaries on the official repo(for Windows) has been updated. Could you please follow the instructions

[GitHub] cclauss opened a new pull request #11672: Some Python 3 fixes in ./tools

2018-07-12 Thread GitBox
cclauss opened a new pull request #11672: Some Python 3 fixes in ./tools URL: https://github.com/apache/incubator-mxnet/pull/11672 ## Description ## Fix undefined names found be flake8 F821 that are mostly (but not exclusively) related to Python 3. Each undefined name has the potential

[GitHub] thomelane commented on issue #4960: Variable batch size

2018-07-12 Thread GitBox
thomelane commented on issue #4960: Variable batch size URL: https://github.com/apache/incubator-mxnet/issues/4960#issuecomment-404608370 Also with the Gluon API, `Block`s support variable batch sizes out of the box. This

[GitHub] larroy commented on issue #11670: Docs build improvements

2018-07-12 Thread GitBox
larroy commented on issue #11670: Docs build improvements URL: https://github.com/apache/incubator-mxnet/pull/11670#issuecomment-404617109 Thanks @aaronmarkham I personally would prefer to have this streamlined in a docker, but I guess this makes it closer to that. I wonder why we have to

[GitHub] thomelane commented on issue #8474: How to train variable input shape CNN?

2018-07-12 Thread GitBox
thomelane commented on issue #8474: How to train variable input shape CNN? URL: https://github.com/apache/incubator-mxnet/issues/8474#issuecomment-404618938 Assuming you're asking about variable batch sizes for the input, you should take a look at

[GitHub] rondogency commented on issue #11443: [WIP] Add broadcast_like backend tensor operator

2018-07-12 Thread GitBox
rondogency commented on issue #11443: [WIP] Add broadcast_like backend tensor operator URL: https://github.com/apache/incubator-mxnet/pull/11443#issuecomment-404636220 @jmacglashan sorry for the late response. Currently I just tried to match all axes. I will work on it this weekend and

[GitHub] haojin2 commented on a change in pull request #11656: Fix batchnorm problem with sparse matrices when fix_gamma=True

2018-07-12 Thread GitBox
haojin2 commented on a change in pull request #11656: Fix batchnorm problem with sparse matrices when fix_gamma=True URL: https://github.com/apache/incubator-mxnet/pull/11656#discussion_r202165629 ## File path: tests/python/mkl/test_mkldnn.py ## @@ -233,7 +233,7 @@ def

[GitHub] aaronmarkham commented on issue #11670: Docs build improvements

2018-07-12 Thread GitBox
aaronmarkham commented on issue #11670: Docs build improvements URL: https://github.com/apache/incubator-mxnet/pull/11670#issuecomment-404641268 @larroy - It does seem to skip building the full project if no change is detected, but ya, as soon as some op changes it triggers a full rebuild.

[GitHub] zhreshold commented on a change in pull request #11671: Some Python 3 fixes in ./example

2018-07-12 Thread GitBox
zhreshold commented on a change in pull request #11671: Some Python 3 fixes in ./example URL: https://github.com/apache/incubator-mxnet/pull/11671#discussion_r202173983 ## File path: example/ssd/dataset/pycocotools/coco.py ## @@ -55,12 +55,12 @@ # from . import mask as

[GitHub] Roshrini opened a new pull request #11676: MXNet ONNX export - Dot op support

2018-07-12 Thread GitBox
Roshrini opened a new pull request #11676: MXNet ONNX export - Dot op support URL: https://github.com/apache/incubator-mxnet/pull/11676 ## Description ## Adding support for Dot operator for onnx export functionality. ## Checklist ## ### Essentials ### - [ ] Changes are

[GitHub] zheng-da commented on issue #11664: Fall back when sparse arrays are passed to MKLDNN-enabled operators

2018-07-12 Thread GitBox
zheng-da commented on issue #11664: Fall back when sparse arrays are passed to MKLDNN-enabled operators URL: https://github.com/apache/incubator-mxnet/pull/11664#issuecomment-404652395 I have the same comment. Why not call `MKLDNNStorageType`?

[GitHub] zheng-da edited a comment on issue #11664: Fall back when sparse arrays are passed to MKLDNN-enabled operators

2018-07-12 Thread GitBox
zheng-da edited a comment on issue #11664: Fall back when sparse arrays are passed to MKLDNN-enabled operators URL: https://github.com/apache/incubator-mxnet/pull/11664#issuecomment-404652395 Why not call `MKLDNNStorageType` for most of the operators?

[GitHub] KellenSunderland commented on a change in pull request #11325: Added TensorRT runtime integration

2018-07-12 Thread GitBox
KellenSunderland commented on a change in pull request #11325: Added TensorRT runtime integration URL: https://github.com/apache/incubator-mxnet/pull/11325#discussion_r202182189 ## File path: src/executor/exec_pass.h ## @@ -198,6 +198,27 @@ Graph InferStorageType(Graph&&

[GitHub] thomelane commented on issue #8458: Synchronized Batch normalization in multi GPUs training

2018-07-12 Thread GitBox
thomelane commented on issue #8458: Synchronized Batch normalization in multi GPUs training URL: https://github.com/apache/incubator-mxnet/issues/8458#issuecomment-404600330 @sandeep-krishnamurthy this issue can be closed now, thanks. further discussions should be on the PR

[GitHub] marcoabreu commented on a change in pull request #11656: Fix batchnorm problem with sparse matrices when fix_gamma=True

2018-07-12 Thread GitBox
marcoabreu commented on a change in pull request #11656: Fix batchnorm problem with sparse matrices when fix_gamma=True URL: https://github.com/apache/incubator-mxnet/pull/11656#discussion_r202128246 ## File path: tests/python/mkl/test_mkldnn.py ## @@ -233,7 +233,7 @@ def

[GitHub] ankkhedia commented on issue #7428: Linking error while compiling for R-package in windows

2018-07-12 Thread GitBox
ankkhedia commented on issue #7428: Linking error while compiling for R-package in windows URL: https://github.com/apache/incubator-mxnet/issues/7428#issuecomment-404602608 Hi @kimtang The R binaries for Windows has been updated and you could follow instructions on the official website

[GitHub] ankkhedia edited a comment on issue #7428: Linking error while compiling for R-package in windows

2018-07-12 Thread GitBox
ankkhedia edited a comment on issue #7428: Linking error while compiling for R-package in windows URL: https://github.com/apache/incubator-mxnet/issues/7428#issuecomment-404602608 Hi @kimtang The R binaries for Windows has been updated and you could follow instructions on the official

[GitHub] szha commented on issue #11549: Pip package can be much faster (OpenCV version?)

2018-07-12 Thread GitBox
szha commented on issue #11549: Pip package can be much faster (OpenCV version?) URL: https://github.com/apache/incubator-mxnet/issues/11549#issuecomment-404604281 The speed matches what was reported for building from source.

[GitHub] szha closed issue #11549: Pip package can be much faster (OpenCV version?)

2018-07-12 Thread GitBox
szha closed issue #11549: Pip package can be much faster (OpenCV version?) URL: https://github.com/apache/incubator-mxnet/issues/11549 This is an automated message from the Apache Git Service. To respond to the message,

[GitHub] KellenSunderland opened a new pull request #11674: Tensor integration 5 - WIP

2018-07-12 Thread GitBox
KellenSunderland opened a new pull request #11674: Tensor integration 5 - WIP URL: https://github.com/apache/incubator-mxnet/pull/11674 WIP This is an automated message from the Apache Git Service. To respond to the message,

[incubator-mxnet] branch master updated: New style exception for Python 3 (#11668)

2018-07-12 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 e912314 New style exception for

[GitHub] szha closed pull request #11668: New style exception for Python 3

2018-07-12 Thread GitBox
szha closed pull request #11668: New style exception for Python 3 URL: https://github.com/apache/incubator-mxnet/pull/11668 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

[GitHub] haojin2 commented on a change in pull request #11656: Fix batchnorm problem with sparse matrices when fix_gamma=True

2018-07-12 Thread GitBox
haojin2 commented on a change in pull request #11656: Fix batchnorm problem with sparse matrices when fix_gamma=True URL: https://github.com/apache/incubator-mxnet/pull/11656#discussion_r202167429 ## File path: src/operator/batch_norm_v1.cc ## @@ -89,6 +89,9 @@ the

[GitHub] lebeg commented on issue #11670: Docs build improvements

2018-07-12 Thread GitBox
lebeg commented on issue #11670: Docs build improvements URL: https://github.com/apache/incubator-mxnet/pull/11670#issuecomment-404650183 Yes, cmake would be the preferable way This is an automated message from the Apache Git

[GitHub] haojin2 commented on issue #11411: nd.softmax() doesn't support grad_req='add'

2018-07-12 Thread GitBox
haojin2 commented on issue #11411: nd.softmax() doesn't support grad_req='add' URL: https://github.com/apache/incubator-mxnet/issues/11411#issuecomment-404657319 @safrooze Taking a look at this now. This is an automated

[GitHub] ifeherva commented on a change in pull request #11651: Add logistic regression tutorial

2018-07-12 Thread GitBox
ifeherva commented on a change in pull request #11651: Add logistic regression tutorial URL: https://github.com/apache/incubator-mxnet/pull/11651#discussion_r202189850 ## File path: docs/tutorials/gluon/logistic_regression_explained.md ## @@ -0,0 +1,215 @@ + +# Logistic

[GitHub] Ishitori closed issue #10038: MxNet with R on Windows : DiagrammeR dependency isn't resolved properly

2018-07-12 Thread GitBox
Ishitori closed issue #10038: MxNet with R on Windows : DiagrammeR dependency isn't resolved properly URL: https://github.com/apache/incubator-mxnet/issues/10038 This is an automated message from the Apache Git Service. To

[GitHub] Ishitori commented on issue #10038: MxNet with R on Windows : DiagrammeR dependency isn't resolved properly

2018-07-12 Thread GitBox
Ishitori commented on issue #10038: MxNet with R on Windows : DiagrammeR dependency isn't resolved properly URL: https://github.com/apache/incubator-mxnet/issues/10038#issuecomment-404598952 Yes, I followed the official instructions, and now it works fine. Thanks all.

[GitHub] marcoabreu commented on a change in pull request #11664: Fall back when sparse arrays are passed to MKLDNN-enabled operators

2018-07-12 Thread GitBox
marcoabreu commented on a change in pull request #11664: Fall back when sparse arrays are passed to MKLDNN-enabled operators URL: https://github.com/apache/incubator-mxnet/pull/11664#discussion_r201960564 ## File path: tests/python/mkl/test_mkldnn.py ## @@ -240,5 +240,135

[GitHub] junrushao1994 commented on a change in pull request #11566: [MXNET-626] Add while_loop

2018-07-12 Thread GitBox
junrushao1994 commented on a change in pull request #11566: [MXNET-626] Add while_loop URL: https://github.com/apache/incubator-mxnet/pull/11566#discussion_r202156433 ## File path: python/mxnet/ndarray/contrib.py ## @@ -191,3 +191,128 @@ def check_input(inputs, in_type,

[GitHub] szha closed pull request #11657: documentation enhancement for optimizers

2018-07-12 Thread GitBox
szha closed pull request #11657: documentation enhancement for optimizers URL: https://github.com/apache/incubator-mxnet/pull/11657 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

[incubator-mxnet] branch master updated: documentation enhancement for optimizers (#11657)

2018-07-12 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 2fd7085 documentation enhancement

[GitHub] thomelane commented on issue #11508: 【Question】Are there any examples for gradients clipping in gluon?

2018-07-12 Thread GitBox
thomelane commented on issue #11508: 【Question】Are there any examples for gradients clipping in gluon? URL: https://github.com/apache/incubator-mxnet/issues/11508#issuecomment-404675656 @yukang2017 would you be able to open a separate issue for the performance issue? that way we can keep

[GitHub] thomelane commented on issue #11417: libomp.so dependency (need REAL fix)

2018-07-12 Thread GitBox
thomelane commented on issue #11417: libomp.so dependency (need REAL fix) URL: https://github.com/apache/incubator-mxnet/issues/11417#issuecomment-404677142 @sandeep-krishnamurthy can we get a tag of 'build' on this please

[GitHub] marcoabreu commented on a change in pull request #11675: fix a bug in CachedOp.

2018-07-12 Thread GitBox
marcoabreu commented on a change in pull request #11675: fix a bug in CachedOp. URL: https://github.com/apache/incubator-mxnet/pull/11675#discussion_r202207030 ## File path: tests/python/unittest/test_gluon_rnn.py ## @@ -64,25 +64,31 @@ def check_contrib_rnn(cell_type,

[GitHub] thomelane commented on issue #11165: ImageIter much slower than ImageRecordIter

2018-07-12 Thread GitBox
thomelane commented on issue #11165: ImageIter much slower than ImageRecordIter URL: https://github.com/apache/incubator-mxnet/issues/11165#issuecomment-404680101 @solin319 Most augmenters call OpenCV functions written in C++ anyway, so I wouldn't expect much of a difference by moving

[GitHub] eric-haibin-lin commented on issue #11633: Fix dist kvstore for trainer and flaky dist kvstore test

2018-07-12 Thread GitBox
eric-haibin-lin commented on issue #11633: Fix dist kvstore for trainer and flaky dist kvstore test URL: https://github.com/apache/incubator-mxnet/pull/11633#issuecomment-404684754 nobody except CI :) This is an automated

[GitHub] marcoabreu commented on issue #11633: Fix dist kvstore for trainer and flaky dist kvstore test

2018-07-12 Thread GitBox
marcoabreu commented on issue #11633: Fix dist kvstore for trainer and flaky dist kvstore test URL: https://github.com/apache/incubator-mxnet/pull/11633#issuecomment-404684959 Okay excellent This is an automated message from

[GitHub] yukang2017 commented on issue #11508: 【Question】Are there any examples for gradients clipping in gluon?

2018-07-12 Thread GitBox
yukang2017 commented on issue #11508: 【Question】Are there any examples for gradients clipping in gluon? URL: https://github.com/apache/incubator-mxnet/issues/11508#issuecomment-404702227 @thomelane I will open a new issue. Thank you! I tested 'clip_gradient' in _mxnet.gluon.Trainer_

[GitHub] sergeykolychev commented on issue #11680: Flaky Perl test: test_loss.test_dynamic

2018-07-12 Thread GitBox
sergeykolychev commented on issue #11680: Flaky Perl test: test_loss.test_dynamic URL: https://github.com/apache/incubator-mxnet/issues/11680#issuecomment-404704376 @haojin2 I'll take a look ad will fix. This is an

[GitHub] Feywell commented on issue #9186: How to train model with multi machines

2018-07-12 Thread GitBox
Feywell commented on issue #9186: How to train model with multi machines URL: https://github.com/apache/incubator-mxnet/issues/9186#issuecomment-404700463 @thomelane Thank you! I will read it carefully. This is an automated

[GitHub] yukang2017 opened a new issue #11683: time cost in grad clipping

2018-07-12 Thread GitBox
yukang2017 opened a new issue #11683: time cost in grad clipping URL: https://github.com/apache/incubator-mxnet/issues/11683 I compare the speed of grad clipping between pytorch(0.3.1) and mxnet-gluon(1.2.0) on a Titan X. Pytorch gets nearly 10 times faster than mxnet-gluon. (The

[GitHub] sergeykolychev commented on issue #11680: Flaky Perl test: test_loss.test_dynamic

2018-07-12 Thread GitBox
sergeykolychev commented on issue #11680: Flaky Perl test: test_loss.test_dynamic URL: https://github.com/apache/incubator-mxnet/issues/11680#issuecomment-404706340 @haojin2 Should be fixed by

[incubator-mxnet] branch master updated: Update README.md (#11677)

2018-07-12 Thread anirudh2290
This is an automated email from the ASF dual-hosted git repository. anirudh2290 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 92366a9 Update README.md

[GitHub] anirudh2290 closed pull request #11677: Update README.md to fix MXNet capitalization

2018-07-12 Thread GitBox
anirudh2290 closed pull request #11677: Update README.md to fix MXNet capitalization URL: https://github.com/apache/incubator-mxnet/pull/11677 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

[GitHub] zhanghang1989 edited a comment on issue #8458: Synchronized Batch normalization in multi GPUs training

2018-07-12 Thread GitBox
zhanghang1989 edited a comment on issue #8458: Synchronized Batch normalization in multi GPUs training URL: https://github.com/apache/incubator-mxnet/issues/8458#issuecomment-377430577 Implemented in PR https://github.com/apache/incubator-mxnet/pull/11502

[GitHub] eric-haibin-lin commented on issue #9384: Flaky row_sparse_pull test

2018-07-12 Thread GitBox
eric-haibin-lin commented on issue #9384: Flaky row_sparse_pull test URL: https://github.com/apache/incubator-mxnet/issues/9384#issuecomment-404673207 fixed via #11519 This is an automated message from the Apache Git

[GitHub] eric-haibin-lin closed issue #9384: Flaky row_sparse_pull test

2018-07-12 Thread GitBox
eric-haibin-lin closed issue #9384: Flaky row_sparse_pull test URL: https://github.com/apache/incubator-mxnet/issues/9384 This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] marcoabreu commented on a change in pull request #11664: Fall back when sparse arrays are passed to MKLDNN-enabled operators

2018-07-12 Thread GitBox
marcoabreu commented on a change in pull request #11664: Fall back when sparse arrays are passed to MKLDNN-enabled operators URL: https://github.com/apache/incubator-mxnet/pull/11664#discussion_r202208647 ## File path: tests/python/mkl/test_mkldnn.py ## @@ -240,5 +240,135

[GitHub] haojin2 commented on issue #11587: [MXNET-378] Adding depth_to_space and space_to_depth operator(Updated)

2018-07-12 Thread GitBox
haojin2 commented on issue #11587: [MXNET-378] Adding depth_to_space and space_to_depth operator(Updated) URL: https://github.com/apache/incubator-mxnet/pull/11587#issuecomment-404682106 @piiswrong @reminisce @anirudh2290 @eric-haibin-lin @rahul003 Please help with review when you have

[GitHub] thomelane commented on issue #11137: memory cost problem for different label width when using ssd example

2018-07-12 Thread GitBox
thomelane commented on issue #11137: memory cost problem for different label width when using ssd example URL: https://github.com/apache/incubator-mxnet/issues/11137#issuecomment-404681799 Hi @lynneChan, thanks for the question. Could you clarify which part of this is strange though?

[GitHub] apeforest commented on issue #10738: python build (with cython) seems broken in linux (python3)

2018-07-12 Thread GitBox
apeforest commented on issue #10738: python build (with cython) seems broken in linux (python3) URL: https://github.com/apache/incubator-mxnet/issues/10738#issuecomment-404682071 It seems this issue has been fixed by Open [MXNET-545] Fix broken cython build #10951 .@sl1pkn07 Could you

[GitHub] anirudh2290 closed pull request #11470: Fix build issue with USE_CUDNN=0

2018-07-12 Thread GitBox
anirudh2290 closed pull request #11470: Fix build issue with USE_CUDNN=0 URL: https://github.com/apache/incubator-mxnet/pull/11470 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

[GitHub] marcoabreu commented on a change in pull request #11664: Fall back when sparse arrays are passed to MKLDNN-enabled operators

2018-07-12 Thread GitBox
marcoabreu commented on a change in pull request #11664: Fall back when sparse arrays are passed to MKLDNN-enabled operators URL: https://github.com/apache/incubator-mxnet/pull/11664#discussion_r202210010 ## File path: tests/python/mkl/test_mkldnn.py ## @@ -240,5 +240,135

[GitHub] haojin2 commented on issue #11680: Flaky Perl test: test_loss.test_dynamic

2018-07-12 Thread GitBox
haojin2 commented on issue #11680: Flaky Perl test: test_loss.test_dynamic URL: https://github.com/apache/incubator-mxnet/issues/11680#issuecomment-404683463 suggested labels: Perl, Flaky, Test This is an automated message

[GitHub] haojin2 opened a new issue #11680: Flaky Perl test: test_loss.test_dynamic

2018-07-12 Thread GitBox
haojin2 opened a new issue #11680: Flaky Perl test: test_loss.test_dynamic URL: https://github.com/apache/incubator-mxnet/issues/11680 http://jenkins.mxnet-ci.amazon-ml.com/blue/organizations/jenkins/incubator-mxnet/detail/PR-11326/13/pipeline ``` t/test_loss.t (Wstat:

[GitHub] xcgoner commented on a change in pull request #11591: [MXNET-331] Single machine All Reduce Topology-aware Communication (Updated)

2018-07-12 Thread GitBox
xcgoner commented on a change in pull request #11591: [MXNET-331] Single machine All Reduce Topology-aware Communication (Updated) URL: https://github.com/apache/incubator-mxnet/pull/11591#discussion_r202216201 ## File path: src/kvstore/comm_tree.h ## @@ -0,0 +1,500 @@

[GitHub] azai91 closed pull request #11678: [MXNET-653] MKLDNN Fallback LRN

2018-07-12 Thread GitBox
azai91 closed pull request #11678: [MXNET-653] MKLDNN Fallback LRN URL: https://github.com/apache/incubator-mxnet/pull/11678 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

[GitHub] apeforest commented on issue #11224: ‘make lint’ is broken under python2

2018-07-12 Thread GitBox
apeforest commented on issue #11224: ‘make lint’ is broken under python2 URL: https://github.com/apache/incubator-mxnet/issues/11224#issuecomment-404676018 @TaoLv This issue has been fixed by https://github.com/dmlc/mshadow/pull/340. Please help to verify. Thanks.

[GitHub] haojin2 commented on a change in pull request #11656: Fix batchnorm problem with sparse matrices when fix_gamma=True

2018-07-12 Thread GitBox
haojin2 commented on a change in pull request #11656: Fix batchnorm problem with sparse matrices when fix_gamma=True URL: https://github.com/apache/incubator-mxnet/pull/11656#discussion_r202203112 ## File path: src/operator/nn/batch_norm.cc ## @@ -444,27 +445,39 @@ void

[GitHub] haojin2 commented on a change in pull request #11587: [MXNET-378] Adding depth_to_space and space_to_depth operator(Updated)

2018-07-12 Thread GitBox
haojin2 commented on a change in pull request #11587: [MXNET-378] Adding depth_to_space and space_to_depth operator(Updated) URL: https://github.com/apache/incubator-mxnet/pull/11587#discussion_r202207592 ## File path: src/operator/tensor/matrix_op-inl.h ## @@ -2158,6

[GitHub] thomelane commented on issue #11137: memory cost problem for different label width when using ssd example

2018-07-12 Thread GitBox
thomelane commented on issue #11137: memory cost problem for different label width when using ssd example URL: https://github.com/apache/incubator-mxnet/issues/11137#issuecomment-404682592 Your `batch_size` is set to 12, so even if the total number of images in your dataset is smaller

[GitHub] marcoabreu commented on issue #11633: Fix dist kvstore for trainer and flaky dist kvstore test

2018-07-12 Thread GitBox
marcoabreu commented on issue #11633: Fix dist kvstore for trainer and flaky dist kvstore test URL: https://github.com/apache/incubator-mxnet/pull/11633#issuecomment-404682600 Awesome! Am I right in assuming that nobody would run this locally?

[GitHub] rahul003 commented on a change in pull request #11633: Fix dist kvstore for trainer and flaky dist kvstore test

2018-07-12 Thread GitBox
rahul003 commented on a change in pull request #11633: Fix dist kvstore for trainer and flaky dist kvstore test URL: https://github.com/apache/incubator-mxnet/pull/11633#discussion_r202218610 ## File path: tests/nightly/dist_sync_kvstore.py ## @@ -398,18 +432,25 @@ def

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

2018-07-12 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 afac8e1 Bump the publish

[GitHub] rahul003 commented on a change in pull request #11633: Fix dist kvstore for trainer and flaky dist kvstore test

2018-07-12 Thread GitBox
rahul003 commented on a change in pull request #11633: Fix dist kvstore for trainer and flaky dist kvstore test URL: https://github.com/apache/incubator-mxnet/pull/11633#discussion_r202218610 ## File path: tests/nightly/dist_sync_kvstore.py ## @@ -398,18 +432,25 @@ def

[GitHub] ijkguo commented on issue #11240: rcnn example throws CUDNN_STATUS_BAD_PARAM when running under cudnn 6.0

2018-07-12 Thread GitBox
ijkguo commented on issue #11240: rcnn example throws CUDNN_STATUS_BAD_PARAM when running under cudnn 6.0 URL: https://github.com/apache/incubator-mxnet/issues/11240#issuecomment-404695463 It was probably related to old SoftmaxActivation layer. Now changed to `mx.sym.softmax` in

[GitHub] apeforest commented on issue #11662: make docs - lein not found

2018-07-12 Thread GitBox
apeforest commented on issue #11662: make docs - lein not found URL: https://github.com/apache/incubator-mxnet/issues/11662#issuecomment-404676600 @sandeep-krishnamurthy Please label this _Build_, _Documentation_ This is an

[GitHub] marcoabreu commented on a change in pull request #11325: Added TensorRT runtime integration

2018-07-12 Thread GitBox
marcoabreu commented on a change in pull request #11325: Added TensorRT runtime integration URL: https://github.com/apache/incubator-mxnet/pull/11325#discussion_r202208971 ## File path: src/executor/exec_pass.h ## @@ -198,6 +198,27 @@ Graph InferStorageType(Graph&& graph,

[GitHub] zhreshold closed issue #10291: some code in example/rcnn/demo.py is wrong.

2018-07-12 Thread GitBox
zhreshold closed issue #10291: some code in example/rcnn/demo.py is wrong. URL: https://github.com/apache/incubator-mxnet/issues/10291 This is an automated message from the Apache Git Service. To respond to the message,

[GitHub] zhreshold commented on issue #10291: some code in example/rcnn/demo.py is wrong.

2018-07-12 Thread GitBox
zhreshold commented on issue #10291: some code in example/rcnn/demo.py is wrong. URL: https://github.com/apache/incubator-mxnet/issues/10291#issuecomment-404693102 Closing this after #11373 is merged This is an automated

[GitHub] zhreshold commented on issue #10019: ModuleNotFoundError

2018-07-12 Thread GitBox
zhreshold commented on issue #10019: ModuleNotFoundError URL: https://github.com/apache/incubator-mxnet/issues/10019#issuecomment-404693143 Closing this after merging #11373 This is an automated message from the Apache Git

[GitHub] zhreshold commented on issue #8694: Error when running "/rcnn/script/additional_deps.sh"

2018-07-12 Thread GitBox
zhreshold commented on issue #8694: Error when running "/rcnn/script/additional_deps.sh" URL: https://github.com/apache/incubator-mxnet/issues/8694#issuecomment-404693156 Closing this after merging #11373 This is an

[GitHub] zhreshold closed issue #8694: Error when running "/rcnn/script/additional_deps.sh"

2018-07-12 Thread GitBox
zhreshold closed issue #8694: Error when running "/rcnn/script/additional_deps.sh" URL: https://github.com/apache/incubator-mxnet/issues/8694 This is an automated message from the Apache Git Service. To respond to the

  1   2   3   4   >