bag-of-words icon indicating copy to clipboard operation
bag-of-words copied to clipboard

'xrange' not not defined

Open shrestharikesh opened this issue 6 years ago • 1 comments

Error appears while training:

Traceback (most recent call last): File "findFeatures.py", line 56, in for i in xrange(len(image_paths)): NameError: name 'xrange' is not defined

shrestharikesh avatar Apr 09 '18 14:04 shrestharikesh

Try import from this library worked for me :) from scipy._lib.six import xrange

xplodig avatar May 27 '18 11:05 xplodig