[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-08-15 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r314185191 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -210,6 +217,168 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-08-15 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r314184675 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -210,6 +217,168 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-08-07 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r311760576 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -210,6 +217,168 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-08-07 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r311760456 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -210,6 +217,168 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-08-07 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r311760034 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -210,6 +217,168 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-08-07 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r311758931 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -210,6 +217,168 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-08-07 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r311757428 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -210,6 +217,168 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-08-07 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r311757281 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -173,6 +182,87 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-08-07 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r311756950 ## File path: src/operator/nn/fully_connected.cc ## @@ -210,11 +222,11 @@ inline static bool

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-08-07 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r311756546 ## File path: src/operator/nn/fully_connected.cc ## @@ -176,11 +176,23 @@ struct FullyConnectedGrad {

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-07-25 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r307593777 ## File path: tests/python/unittest/test_gluon.py ## @@ -21,7 +21,7 @@ import mxnet as mx from

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-07-25 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r307593378 ## File path: src/operator/nn/fully_connected-inl.h ## @@ -249,6 +285,114 @@ void

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-07-25 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r307592893 ## File path: src/operator/nn/fully_connected-inl.h ## @@ -47,7 +48,24 @@ namespace fullc { enum

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-07-25 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r307592850 ## File path: src/operator/nn/fully_connected-inl.h ## @@ -47,7 +48,24 @@ namespace fullc { enum

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-06-28 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r298748450 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -129,6 +131,44 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-06-28 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r298748009 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -129,6 +135,83 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-06-28 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r298747764 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -129,6 +135,83 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-06-28 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r298747388 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -18,8 +18,14 @@ import math

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-06-28 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r298747266 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -18,8 +18,14 @@ import math

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-06-26 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r297877572 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -129,6 +131,44 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-06-26 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r297778687 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -129,6 +131,44 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-06-26 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r297778313 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -129,6 +131,44 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-06-26 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r297776313 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -129,6 +131,44 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-06-26 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r297776313 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -129,6 +131,44 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #14779: Fully connected, higher order grad

2019-06-26 Thread GitBox
apeforest commented on a change in pull request #14779: Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r297775674 ## File path: tests/python/unittest/test_higher_order_grad.py ## @@ -129,6 +131,44 @@ def