Closed vatai closed 4 years ago
batch_idx is multiplied by len(data) (which results in the number of samples processed). This doesn't match the next value after '/', is len(self.x_train) which is the total number of batches (and not total number of samples).
batch_idx
len(data)
len(self.x_train)
This closes #66
batch_idx
is multiplied bylen(data)
(which results in the number of samples processed). This doesn't match the next value after '/', islen(self.x_train)
which is the total number of batches (and not total number of samples).This closes #66