keras 是否有可能直接以浮点值而非指数值获得预测?[duplicate]

o75abkj4  于 2022-11-13  发布在  其他
关注(0)|答案(1)|浏览(104)

此问题在此处已有答案

Pretty-print a NumPy array without scientific notation and with given precision(共14个答案)
两个月前关门了。
我正在使用“sigmoid”激活函数进行多标签分类和“binary_crossentropy”

enter code here

img2 = img1/255
img3 = np.expand_dims(img2, axis=0)
ys_ = model.predict(img3)[0]
print('prediction',ys_)

相关问题