ValueError: Failed to find data adapter that can handle input: (<class 'list'> containing values of types {"<class 'str'>"}), <class 'numpy.ndarray'>怎么解决
时间: 2023-12-25 16:06:41 浏览: 119
ValueError: Could not find a format to read the specified file in mode ‘i’
这个错误通常是由于数据类型不匹配导致的。可以尝试将输入数据转换为可接受的类型。
例如,如果您正在使用Keras模型,并且输入数据是一个包含字符串的列表,您可以尝试使用以下代码将其转换为Numpy数组:
``` python
import numpy as np
data = ['hello', 'world']
data_np = np.array(data)
```
如果您仍然遇到问题,请检查您的模型和输入数据的类型是否匹配。您可以尝试将模型的输入层类型更改为与您的数据类型匹配。
阅读全文