DeepLearningExamples
DeepLearningExamples copied to clipboard
change batch_and_drop_remainder to batch(batch_size, drop_remainder)
According to the Tensorflow documentation, batch_and_drop_remainder is deprecated. Instead should use batch(batch_size, drop_remainder=True).