接着报错
inputs = pd.get_dummies(inputs, dummy_na=True)
print(inputs)
输出
NumRooms Alley_Pave Alley_nan
0 3.0 True False
1 2.0 False True
2 4.0 False True
3 3.0 False True
并不是教程中的0和1,而是布尔值。
这会引起后续转成张量的报错
TypeError: can't convert np.ndarray of type numpy.object_. The only supported types are: float64, float32, float16, complex64, complex128, int64, int32, int16, int8, uint8, and bool.
原因
get_dummies函数在pandas1.6.0版本之前返回numpy.uint8,无符号八位整数。
在1.6.0版本开始更改为返回numpy.bool_,numpy布尔值。
解决方案
添加dtype,完成输出0和1,且后续不报错
inputs = pd.get_dummies(inputs, dummy_na=True, dtype = 'uint8')
print(inputs)
|