标签: python mnist tflearn
我使用tflearn的 mnist 数据集来预测手写数字。
tflearn
一切正常,但我的标签为 one_hot 。 tflearn中是否有一个函数,它与Tensorflow中的argmax()相同?
argmax()
答案 0 :(得分:0)
你可以这样做:
pred = model.predict(test_data) print([ np.where(r==1)[0][0] for r in np.round(pred) ])
最佳。