tensorflow2训练报数据输入错误Failed to find data adapter
tensorflow2训练报数据输入错误Failed to find data adapter
打赏
一、总结
一句话总结:
问题原因:是没有将数据(y_train、y_test)转为numpy
二、tensorflow2.0训练报数据输入错误Failed to find data adapter
转自或参考:tensorflow2.0训练报数据输入错误Failed to find data adapter
https://blog.csdn.net/try2find/article/details/104044456
1 问题描述:
运行如下训练代码:
import numpy as np
history = classifier.fit(x_train, y_train,
batch_size=10,
epochs=100,
validation_data=(x_test, y_test))
报错:
ValueError: Failed to find data adapter that can handle input: <class 'numpy.ndarray'>, <class 'pandas.core.series.Series'>
2 分析问题:
Beein搜索:
其中提到很可能是没有将数据转为numpy。
于是我们检查数据类型:
发现y_test的数据类型确实不是numpy。
3 解决问题:
将y_test转为numpy类型的数据:
4 扩展
model.fit()参数:
https://keras-cn.readthedocs.io/en/latest/models/model/
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步