UserWarning: Method on_batch_end() is slow compared to the batch update. Check your callbacks.

Posted bluebluesea

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UserWarning: Method on_batch_end() is slow compared to the batch update. Check your callbacks.相关的知识,希望对你有一定的参考价值。

https://github.com/keras-team/keras/issues/2603

history=model.fit(X_train,y_train,epochs=30,batch_size=32,validation_split=0.2,verbose=2)

出现的原因是一开始berbose=1(默认),在一个epoch中训练一个batch就会打印进度条和结果,但是打印到控制台所需时间比训练模型时间更长,所以有了警告。

将verbose=0,使得一点训练过程信息也不打印;verbose=2,每一个epoch打印一次。

 

以上是关于UserWarning: Method on_batch_end() is slow compared to the batch update. Check your callbacks.的主要内容,如果未能解决你的问题,请参考以下文章

带有 OR 运算符的 DataFrame UserWarning [重复]

kde plot : UserWarning: Dataset has 0 variance;跳跃密度估计

matplotlib显示中文(解决UserWarning: findfont: Font family)

如何在屏蔽数据后避免由 python 使用 UserWarning 完成的隐式修复

UserWarning: Label not :NUMBER: is present in all training examples

Python 运行时出现 UserWarning: semaphore_tracker 问题解决(实际上是忽略方法)