AttributeError: 'TextImageGenerator' object has no attribute 'cur_train_index'
时间: 2023-10-05 17:04:47 浏览: 91
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误通常发生在你试图访问一个对象上不存在的属性。在这个错误信息中,'TextImageGenerator' object has no attribute 'cur_train_index',表示你正在尝试访问 TextImageGenerator 对象的 cur_train_index 属性,但是这个属性并不存在于对象中。这可能是因为你在代码中错误地引用了这个属性,或者在实例化对象时出现了错误。建议你检查一下代码,确保你正确地引用了对象的属性,或者确认你实例化对象时是否正确地传递了参数。
阅读全文