multi-class-text-classification-cnn icon indicating copy to clipboard operation
multi-class-text-classification-cnn copied to clipboard

A bug: num_batches_per_epoch = int(data_size / batch_size) + 1

Open lemo2012 opened this issue 7 years ago • 0 comments

should be: num_batches_per_epoch = int(math.ceil(float(data_size) / batch_size))

lemo2012 avatar Mar 06 '18 06:03 lemo2012