You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run the code that you have provided in dnnweaver2-tutorial.ipynb file. I get the below error:
AttributeError: 'collections.OrderedDict' object has no attribute 'iteritems'
I have changed the iteritems() to items() in your code as below:
for tname, t in graph.tensor_registry.iteritems(): ----> for tname, t in graph.tensor_registry.items():
Is this correct?
The text was updated successfully, but these errors were encountered:
Hi,
When I run the code that you have provided in dnnweaver2-tutorial.ipynb file. I get the below error:
AttributeError: 'collections.OrderedDict' object has no attribute 'iteritems'
I have changed the iteritems() to items() in your code as below:
for tname, t in graph.tensor_registry.iteritems(): ----> for tname, t in graph.tensor_registry.items():
Is this correct?
The text was updated successfully, but these errors were encountered: