From cd792b182dc2f641b9eb79c54db76da98b69c59a Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Sat, 13 Oct 2018 09:50:32 +0200 Subject: scatter-nd-add --- tensorflow/scatter-nd-add.py | 57 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 tensorflow/scatter-nd-add.py (limited to 'tensorflow') diff --git a/tensorflow/scatter-nd-add.py b/tensorflow/scatter-nd-add.py new file mode 100644 index 0000000..7194d8b --- /dev/null +++ b/tensorflow/scatter-nd-add.py @@ -0,0 +1,57 @@ +import numpy as np +import tensorflow as tf + +sess = tf.Session() + +#idx = tf.constant([[0,2],[1,2]]) + +# 4 x 2 | 40K x 256 +m = tf.Variable([[1,2], + [0,0], + [0,0], + [0,0]], dtype=tf.float32) +# -> 2 x 4 | 256 x 40K +m_transposed = tf.transpose(m) +# -> AttributeError: 'Tensor' object has no attribute '_lazy_read' +m_new = tf.Variable([[1., 0., 0., 0.], + [2., 0., 0., 0.]], dtype=tf.float32) + +# 1 x 3 | 1 x Y +idx = tf.constant([1,2,3], dtype=tf.int32) +idx = sess.run(idx) +_idx = [] +for j in idx: + for i in range(0,m_new.shape[0]): + _idx.append([i,j]) +#idx_new = tf.constant(_idx, dtype=tf.int32) +idx_new = np.full(fill_value=_idx, shape=[6,2], dtype=np.int32) + +# 2 x 2 +up = tf.constant([[1,1],[1,1],[1,1]], dtype=tf.float32) +# 1 x 4 +up_new = tf.reshape(up, [tf.size(up)]) + +sess.run(tf.global_variables_initializer()) + +print("m") +print(sess.run(m)) +print("m_new") +print(sess.run(m_new)) +print("m_transposed") +print(sess.run(m_transposed)) +print("idx") +print(idx) +print("idx_new") +#print(sess.run(idx_new)) +print(idx_new) +print("up") +print(sess.run(up)) +print("up_new") +print(sess.run(up_new)) + +print() +print("scatter_nd_add") +print(sess.run(tf.scatter_nd_add(m_new, indices=idx_new, updates=up_new))) + +print() + -- cgit v1.2.3