假设我在Tensorflow中有一个张量,它的值如下:
A = [[0.7, 0.2, 0.1],[0.1, 0.4, 0.5]]
如何将此张量更改为以下内容:
B = [[1, 0, 0],[0, 0, 1]]
换句话说,我想保持最大值并将其替换为1.
任何帮助将不胜感激。
答案 0 :(得分:2)
我认为你可以用单行解决它:
import tensorflow as tf
import numpy as np
x_data = [[0.7, 0.2, 0.1],[0.1, 0.4, 0.5]]
# I am using hard-coded dimensions for simplicity
x = tf.placeholder(dtype=tf.float32, name="x", shape=(2,3))
session = tf.InteractiveSession()
session.run(tf.one_hot(tf.argmax(x, 1), 3), {x: x_data})
结果是你期望的结果:
Out[6]:
array([[ 1., 0., 0.],
[ 0., 0., 1.]], dtype=float32)