我尝试使用pd.to_numeric(df.col,errors ='coerce')将dtype从对象转换为数值,它运行良好,但是在我执行df.col的下一个单元格中,dtype显示的是object.what问题出在这里。
pd.to_numeric(df.col,errors ='coerce')
答案 0 :(得分:1)
我认为您需要重新分配列Activation
:
from keras.layers import Activation
predictions = Add()([x,y])
predictions = Activation("softmax")(predictions)
model = Model(inputs = model.input, outputs = predictions)