ValueError: Failed to find data adapter that can handle input: <class 'numpy.ndarray'>, (<class 'list'> containing values of types {"<class 'int'>"})
时间: 2023-07-30 20:08:05 浏览: 134
ValueError: Could not find a format to read the specified file in mode ‘i’
这个错误通常出现在使用 Keras 模型训练时,它可能会提示你需要将输入转换为正确的数据类型。在这种情况下,你使用了一个 numpy 数组作为模型的输入,而模型期望的输入是一个列表。
你可以尝试将 numpy 数组转换为一个列表,或者使用 `tf.keras.utils.Sequence` 来处理训练数据。如果你使用的是 `fit_generator` 函数来训练模型,那么你需要定义一个自己的数据生成器来生成符合模型输入要求的数据。
阅读全文