Azure/ImageSimilarityUsingCntk

downloadTopNImages isn't used to limit the number of images to download

vapaunic opened this issue · 0 comments

downloadTopNImages = sys.maxsize #set to e.g. 50 to only download the first 50 of the 428 images

Hi Patrick, this variable doesn't actually get used anywhere in the download data script. Maybe your intention was to add this in the for loop:

if counter == downloadTopNImages:
    break

Thanks, Vanja