为什么要把输出格式也转换呢
来源:7-5 实战(二)
进击的蜂蜜
2021-03-10
#format the output(labels)
from keras.utils import to_categorical
y_train_format = to_categorical(y_train)
y_test_format = to_categorical(y_test)
print(y_train[2])
为什么要把y转换成[0. 0. 0. 0. 1. 0. 0. 0. 0. 0.]这种形式
写回答
1回答
-
flare_zhao
2021-03-11
多类别输出 需要转换成one hot格式,这和激活函数有关系,课程理论部分有介绍
00
相似问题