haojin2 commented on a change in pull request #16537: Fix numpy bugs
URL: https://github.com/apache/incubator-mxnet/pull/16537#discussion_r336763849
 
 

 ##########
 File path: tests/python/unittest/test_symbol.py
 ##########
 @@ -414,6 +416,47 @@ def test_gen_atomic_symbol_multiple_outputs():
                    bidirectional=True, state_outputs=True, mode='lstm')
     atomic_sym = s._gen_atomic_symbol()
 
+
+def test_load_save_symbol():
+    batch_size = 10
+    num_hdidden = 128
+    num_features = 784
+
+    def get_net():
+        data = mx.sym.var('data')
+        weight = mx.sym.var('weight', shape=(num_hdidden, 0))
+        return mx.sym.FullyConnected(data, weight, num_hidden=num_hdidden)
+
+    for flag1 in [False, True]:
 
 Review comment:
   Okay, I'll resolve this one for now.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to