heuritech / convnets-keras

MIT License
594 stars 185 forks source link

replacing xrange with range for compatibility #8

Closed cdicle closed 8 years ago

cdicle commented 8 years ago

referencing issue #8 xrange() function is not present in python 3 thus leads to an error. it is replaced with range() for python 2 and 3 compatibility.

leonardblier commented 8 years ago

Thank you !