__init__() got an unexpected keyword argument 'eight'
时间: 2023-07-21 14:35:04 浏览: 96
升级keras解决load_weights()中的未定义skip_mismatch关键字问题
这个错误通常是因为在类的构造函数中,有一个参数名称被错误地拼写成了 'eight' 而不是 'height',导致 Python 解释器无法识别这个参数。
请检查你的代码,确认是否存在这样的错误拼写。如果是这个问题,只需要将参数名称更正为 'height' 即可。
例如,如果你的代码中有以下类定义:
```python
class MyPlot:
def __init__(self, width, eight):
self.width = width
self.height = eight
```
你需要将 'eight' 改为 'height',如下所示:
```python
class MyPlot:
def __init__(self, width, height):
self.width = width
self.height = height
```
这样就可以避免这个错误了。
阅读全文