TypeError: 'float' object cannot be interpreted as an integer
saikosis opened this issue · 1 comments
saikosis commented
Sravani-Kalangi commented
Here on division you are getting a float, so to convert it into int just make it as:
for j in range(int(COUNT/(len(TRAIN_PATCH[i])))):
You will get multiple such errors just do so subsequently.