if epoch ==200: ^ IndentationError: unexpected indent
时间: 2024-05-27 21:07:11 浏览: 143
cnocr-v2.3-densenet-lite-136-gru-epoch=004-ft-model.onnx
这是一个 Python 的语法错误,意思是在 if 语句的行末多了一个缩进,导致代码出现了意外的缩进。正确的写法是在 if 语句下一行缩进,例如:
if epoch == 200:
# do something
这样就能避免出现 IndentationError 错误。如果您还有其他关于 Python 的问题,请继续问我吧。
阅读全文