AttributeError: 'DataFrame' object has no attribute 'memory_useage'.
时间: 2023-11-15 21:06:20 浏览: 165
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误信息表明在访问文件或目录时出现了权限问题,可能是由于当前用户没有足够的权限来访问该文件或目录。而第二个错误信息表明在TensorFlow中,您正在尝试将一个形状为(1,)的张量馈送到一个形状为(1,1)的张量中,这会导致形状不匹配的错误。
至于您提到的错误信息"AttributeError: 'DataFrame' object has no attribute 'memory_useage'",这是因为您在DataFrame对象上使用了错误的属性名称。正确的属性名称是"memory_usage",而不是"memory_useage"。这个属性可以用来获取DataFrame对象占用的内存量。
阅读全文