matroid / dlwithtf

TensorFlow for Deep Learning Book
http://shop.oreilly.com/product/0636920065869.do
321 stars 160 forks source link

Python3 incompabilities #23

Open alex-mashin opened 3 years ago

alex-mashin commented 3 years ago

In ch5/hidden_grid_search.py and possibly elsewhere:

File "hidden_grid_search.py", line 25, in <module>
    for params, param_scores in scores.iteritems():
AttributeError: 'dict' object has no attribute 'iteritems'

Cure for python3: find . -type f -exec sed -i 's/iteritems()/items()/' {} +.