piiswrong commented on a change in pull request #9460: Data-iterator tutorial 
made python3 compatible.
URL: https://github.com/apache/incubator-mxnet/pull/9460#discussion_r161949534
 
 

 ##########
 File path: docs/tutorials/basic/data.md
 ##########
 @@ -122,17 +126,17 @@ class SimpleIter(mx.io.DataIter):
 
     @property
     def provide_data(self):
-        return self._provide_data
+        return zip(self._data_names, self._data_shapes)
 
     @property
     def provide_label(self):
-        return self._provide_label
+        return zip(self._label_names, self._label_shapes)
 
 Review comment:
   ?

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


With regards,
Apache Git Services

Reply via email to