将tensorflow.Variable中的某些元素取出组成一个新的矩阵示例

作者:耳东鹿其 时间:2022-01-17 23:49:50 

在神经网络计算过程中,经常会遇到需要将矩阵中的某些元素取出并且单独进行计算的步骤(例如MLE,Attention等操作)。那么在 tensorflow 的 Variable 类型中如何做到这一点呢?

首先假设 Variable 是一个一维数组 A:


import numpy as np

import tensorflow as tf

a = np.array([1, 2, 3, 4, 5, 6, 7, 8])

A = tf.Variable(a)

我们把我们想取出的元素的索引存到 B 中,如果我们只想取出数组 A 中的某一个元素,则 B 的设定为:


b = np.array([3])

B = tf.placeholder(dtype=tf.int32, shape=[1])

由于我们的索引坐标只有一维,所以 shape=1。

取出元素然后组合成tensor C 的操作如下:


C = tf.gather_nd(A, B)

运行:


init = tf.global_variables_initializer()

with tf.Session() as sess:
 init.run()
 feed_dict = {B: b}
 result = sess.run([C], feed_dict=feed_dict)
 print result

得到:


[4]

如果我们想取出一维数组中的多个元素,则需要把每一个想取出的元素索引都单独放一行:


b = np.array([[3], [2], [5], [0]])

B = tf.placeholder(dtype=tf.int32, shape=[4, 1])

此时由于我们想要从一维数组中索引 4 个数,所以 shape=[4, 1]

再次运行得到:


[4 3 6 1]

////////////////////////////////////////////////////////////////////////////////////华丽丽的分割线

假设 Variable 是一个二维矩阵 A:


a = np.array([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]])

A = tf.Variable(a)

首先我们先取出 A 中的一个元素,需要给定该元素的行列坐标,存到 B 中:


b = np.array([2,3])

B = tf.placeholder(dtype=tf.int32, shape=[2])

注意由于我们输入的索引坐标变成了二维,所以shape也变为2。

取出元素然后组合成tensor C:


C = tf.gather_nd(A, B)

运行:


init = tf.global_variables_initializer()

with tf.Session() as sess:
 init.run()
 feed_dict = {B: b}
 result = sess.run([C], feed_dict=feed_dict)
 print result

得到:


[12]

同样的,如果我们想取出二维矩阵中的多个元素,则需要把每一个想取出的元素的索引都单独放一行:


b = np.array([[2, 3], [1, 0], [2, 2], [0, 1]])

B = tf.placeholder(dtype=tf.int32, shape=[4, 2])

此时由于我们想要从二维矩阵中索引出 4 个数,所以 shape=[4, 2]

再次运行得到:


[12 5 11 2]

////////////////////////////////////////////////////////////////////////////////////华丽丽的分割线

推广到 n 维矩阵中:

假设 A 是 Variable 类型的 n 维矩阵,我们想取出矩阵中的 m 个元素,那么首先每个元素的索引坐标要表示成列表的形式:


index = [x1, x2, x3, ..., xn]

其中 xj 代表该元素在 n 维矩阵中第 j 维的位置。

其次每个坐标要单独占索引矩阵的一行:


index_matrix = [[x11, x12, x13, ..., x1n],

[x21, x22, x23, ..., x2n],

[x31, x32, x33, ..., x3n],

.......................................,

[xm1, xm2, xm3, ..., xmn]]

最后用 tf.gather_nd() 函数替换即可:


result = tf.gather_nd(A, index_matrix)

////////////////////////////////////////////////////////////////////////////////////华丽丽的分割线

[注] 问题出自:https://stackoverflow.com/questions/44793286/slicing-tensorflow-tensor-with-tensor

来源:https://blog.csdn.net/qq_32492561/article/details/78316742

标签:tensorflow,Variable,矩阵
0
投稿

猜你喜欢

  • Python遍历numpy数组的实例

    2021-08-30 08:49:37
  • Go语言计算两个经度和纬度之间距离的方法

    2024-04-29 13:06:04
  • Python打印“菱形”星号代码方法

    2023-02-05 17:34:42
  • hadoop二次排序的原理和实现方法

    2023-01-16 22:42:31
  • python logging日志模块原理及操作解析

    2022-10-30 02:44:31
  • vue指令之表单控件绑定v-model v-model与v-bind结合使用

    2023-07-02 16:28:15
  • Pycharm远程连接服务器跑代码的实现

    2021-06-19 21:13:54
  • Python OpenGL绘制一场烟花盛会

    2021-02-08 06:12:44
  • CODEPAGE=936是什么意思?

    2009-07-05 18:37:00
  • python os.stat()如何获取相关文件的系统状态信息

    2022-06-18 09:28:23
  • SQL Server数据库入门学习总结

    2024-01-21 18:23:25
  • python数据类型相关知识扩展

    2021-12-21 10:20:07
  • 解决pycharm导入本地py文件时,模块下方出现红色波浪线的问题

    2023-11-11 10:38:14
  • python如何发布自已pip项目的方法步骤

    2023-01-22 01:17:36
  • MySQL内建复制功能来优化可用性

    2010-10-25 20:20:00
  • Python字典遍历的陷阱

    2022-11-16 21:59:11
  • IE6实现min-width

    2008-06-12 12:40:00
  • perl的cgi高级编程介绍

    2022-10-04 23:41:28
  • python matplotlib画图时坐标轴重叠显示不全和图片保存时不完整的问题解决

    2023-12-11 03:42:42
  • Git的简单理解及基础操作命令详解

    2023-01-17 11:03:35
  • asp之家 网络编程 m.aspxhome.com