logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

ufunc ‘isnan‘ not supported for the input types, and the inputs could not be safely

解决方案:有可能是np.ndarray数组元素是object类型导致不能进行np.isnan()的判断,可以进行数组元素的转换:array = array.astype(np.float64)array = array.astype(np.int32)

#python
到底了