You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ha...@apache.org on 2018/06/28 03:17:32 UTC

[incubator-mxnet] branch master updated: Fix symbolic example (#11428)

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 8fde4b7  Fix symbolic example (#11428)
8fde4b7 is described below

commit 8fde4b7526acbbe242fd5a5f41fac9e477f927f3
Author: Rahul Huilgol <ra...@gmail.com>
AuthorDate: Wed Jun 27 20:17:26 2018 -0700

    Fix symbolic example (#11428)
    
    * Fix symbolic example
    
    * trigger ci
---
 example/image-classification/common/fit.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/example/image-classification/common/fit.py b/example/image-classification/common/fit.py
index d5ca87f..ca1c09a 100755
--- a/example/image-classification/common/fit.py
+++ b/example/image-classification/common/fit.py
@@ -202,8 +202,6 @@ def fit(args, network, data_loader, **kwargs):
     # learning rate
     lr, lr_scheduler = _get_lr_scheduler(args, kv)
 
-    network = mx.symbol.load('%s-symbol.json')
-
     # create model
     model = mx.mod.Module(
         context=devs,