当前位置: 首页 > news >正文

呼伦贝尔寰宇网站建设注册企业邮箱163

呼伦贝尔寰宇网站建设,注册企业邮箱163,广州百度网站建设公司,做个网站的价格关于tf.gather函数batch_dims参数用法的理解0 前言1. 不考虑batch_dims2. 批处理(考虑batch_dims)2.1 batch_dims12.2 batch_dims02.3 batch_dims22.4 batch_dims再降为12.5 再将axis降为12.6 batch_dims02.7 batch_dims总结3. 补充4. 参数和返回值5. 其他相关论述6. 附… 关于tf.gather函数batch_dims参数用法的理解0 前言1. 不考虑batch_dims2. 批处理(考虑batch_dims)2.1 batch_dims12.2 batch_dims02.3 batch_dims22.4 batch_dims再降为12.5 再将axis降为12.6 batch_dims02.7 batch_dims总结3. 补充4. 参数和返回值5. 其他相关论述6. 附件截至发稿2023年3月2日之前全网对这个问题的解释都不是很清楚包括官网和英文互联网尤其是对batch_dims本质物理含义的解释以下内容根据tf.gather官网进行翻译并补充。 0 前言 根据索引indices从参数 axis 轴收集切片。 弃用的参数应该指下文的validate_indices tf.gather(params, indices, validate_indicesNone, axisNone, batch_dims0, nameNone )已弃用一些参数已弃用(validate_indices)。 它们将在未来的版本中被删除。 更新说明 validate_indices参数无效。 索引indices总是在 CPU 上验证从不在 GPU 上验证。 1. 不考虑batch_dims 根据索引indices从轴参数axis收集切片。indices必须是任意维度通常是1-D的整数张量。 Tensor.getitem适用于标量、tf.newaxis 和 python切片 tf.gather 扩展索引功能以处理索引indices张量。 在最简单的情况下它与标量索引功能相同 params tf.constant([p0, p1, p2, p3, p4, p5])params[3].numpy() bp3tf.gather(params, 3).numpy() bp3最常见的情况是传递索引的单轴张量这不能表示为python切片因为索引不是连续的 indices [2, 0, 2, 5]tf.gather(params, indices).numpy() array([bp2, bp0, bp2, bp5], dtypeobject)过程如下图所示 索引可以有任何形状shape。 当参数params有 1 个轴axis时输出形状等于输入形状 tf.gather(params, [[2, 0], [2, 5]]).numpy() array([[bp2, bp0], [bp2, bp5]], dtypeobject)参数params也可以有任何形状。 gather 可以根据参数axis默认为 0在任何轴axis上选择切片。 它下面例程用于收集gather矩阵中的第一行然后是列 params tf.constant([[0, 1.0, 2.0], ... [10.0, 11.0, 12.0], ... [20.0, 21.0, 22.0], ... [30.0, 31.0, 32.0]])tf.gather(params, indices[3,1]).numpy() array([[30., 31., 32.],[10., 11., 12.]], dtypefloat32)tf.gather(params, indices[2,1], axis1).numpy() array([[ 2., 1.],[12., 11.],[22., 21.],[32., 31.]], dtypefloat32)更一般地说输出形状与输入形状相同索引轴indexed-axis由索引indices的形状代替。 def result_shape(p_shape, i_shape, axis0): ... return p_shape[:axis] i_shape p_shape[axis1:]result_shape([1, 2, 3], [], axis1) [1, 3]result_shape([1, 2, 3], [7], axis1) [1, 7, 3]result_shape([1, 2, 3], [7, 5], axis1) [1, 7, 5, 3]例如下面的例程 params.shape.as_list() [4, 3]indices tf.constant([[0, 2]])tf.gather(params, indicesindices, axis0).shape.as_list() [1, 2, 3]tf.gather(params, indicesindices, axis1).shape.as_list() [4, 1, 2]params tf.random.normal(shape(5, 6, 7, 8))indices tf.random.uniform(shape(10, 11), maxval7, dtypetf.int32)result tf.gather(params, indices, axis2)result.shape.as_list() [5, 6, 10, 11, 8]这是因为每个索引都从params中获取一个切片并将其放置在输出中的相应位置。 对于上面的例子 # For any location in indicesa, b 0, 1tf.reduce_all( ... # the corresponding slice of the result ... result[:, :, a, b, :] ... # is equal to the slice of params along axis at the index. ... params[:, :, indices[a, b], :] ... ).numpy() True除此之外我们再给indices增加一个元素当进行gather的时候是沿着params的axis1的上一个维度的元素进行循环的。即params的axis0的元素分别为[0, 1.0, 2.0]、[10.0, 11.0, 12.0]、[20.0, 21.0, 22.0]、[30.0, 31.0, 32.0]然后逐次对这四个元素里面的params的axis1的元素进行取indices对应的元素四次循环完成整个gather tf.gather(params, indices[[2,1], [1,0]], axis1).numpy() array([[[ 2., 1.],[ 1., 0.]],[[12., 11.],[11., 10.]],[[22., 21.],[21., 20.]],[[32., 31.],[31., 30.]]], dtypefloat32)2. 批处理(考虑batch_dims) batch_dims参数可以让您从批次的每个元素中收集不同的项目。 ps 可以先直接跳到到2.7 batch_dims总结前后对照阅读。 2.1 batch_dims1 使用batch_dims1相当于在params和indices的第一个轴是指axis0轴上有一个外循环在axis0轴上的元素上进行循环 params tf.constant([ ... [0, 0, 1, 0, 2], ... [3, 0, 0, 0, 4], ... [0, 5, 0, 6, 0]])indices tf.constant([ ... [2, 4], ... [0, 4], ... [1, 3]])tf.gather(params, indices, axis1, batch_dims1).numpy() array([[1, 2], [3, 4], [5, 6]], dtypeint32)等价于 def manually_batched_gather(params, indices, axis): ... batch_dims1 ... result [] ... for p,i in zip(params, indices): # 这就是上文所说的外循环 ... r tf.gather(p, i, axisaxis-batch_dims) ... result.append(r) ... return tf.stack(result)manually_batched_gather(params, indices, axis1).numpy() array([[1, 2],[3, 4],[5, 6]], dtypeint32)接下来将循环里zip的结果打印如下说明外循环将params和indices在第一个轴上先zip成三个元组 pprint(list(zip(params.numpy().tolist(), indices.numpy().tolist()))) # [([0, 0, 1, 0, 2], [2, 4]), # ([3, 0, 0, 0, 4], [0, 4]), # ([0, 5, 0, 6, 0], [1, 3])]然后分别对[0, 0, 1, 0, 2]与[2, 4]、[3, 0, 0, 0, 4]与 [0, 4]、[0, 5, 0, 6, 0]与[1, 3]沿着重组之后的axis 0即重组之前的axis 1这就是为什么后面所说的必须axisbatch_dims进行gather。 2.2 batch_dims0 所以可以总结batch_dims是指最终对哪一个维度的张量进行对照gather所以当batch_dims0时实际上就是将两个整个张量组包也就是上面第一阶段的省略batch_dims的状态。 此时相当于将两个张量在外面添加一个维度之后再zip相当于没zip直接gather。所以以下两条指令等价因为batch_dims默认值为0。 params tf.constant([[ # 相对于上文该张量增加了一个维度[0, 0, 1, 0, 2],[3, 0, 0, 0, 4],[0, 5, 0, 6, 0]]]) indices tf.constant([[ # 相对于上文该张量增加了一个维度[2, 4],[0, 4],[1, 3]]]) pprint(list(zip(params.numpy().tolist(), indices.numpy().tolist()))) # [([[0, 0, 1, 0, 2], [3, 0, 0, 0, 4], [0, 5, 0, 6, 0]], # [[2, 4], [0, 4], [1, 3]])]tf.gather(params, indices, axis1, batch_dims0).numpy() # 等价于 tf.gather(params, indices, axis1).numpy() # 输出结果为 # array([[[1, 2], # [0, 2], # [0, 0]], # # [[0, 4], # [3, 4], # [0, 0]], # # [[0, 0], # [0, 0], # [5, 6]]], dtypeint32)2.3 batch_dims2 较高的batch_dims值相当于在params和indices的外轴上进行多个嵌套循环。 所以整体形状函数是 def batched_result_shape(p_shape, i_shape, axis0, batch_dims0): ... return p_shape[:axis] i_shape[batch_dims:] p_shape[axis1:] batched_result_shape( ... p_shapeparams.shape.as_list(), ... i_shapeindices.shape.as_list(), ... axis1, ... batch_dims1) [3, 2]tf.gather(params, indices, axis1, batch_dims1).shape.as_list() [3, 2]举例来说params和indices升高一个维度即batch_dims2这时按照约束条件只能axis2 params tf.constant([ # 升高一个维度[[0, 0, 1, 0, 2],[3, 0, 0, 0, 4],[0, 5, 0, 6, 0]],[[1, 8, 4, 2, 2],[9, 6, 2, 3, 0],[7, 2, 8, 6, 3]]]) indices tf.constant([ # 升高一个维度[[2, 4],[0, 4],[1, 3]],[[1, 3],[2, 1],[4, 2]]]) # 进行batch_dims高值gather计算 tf.gather(params, indices, axis2, batch_dims2).numpy() # 则上面的运算等价于 def manually_batched_gather_3d(params, indices, axis):batch_dims2result []for p,i in zip(params, indices): # 这里面进行了batch_dims层也就是2层嵌套for循环result_2 []for p_2, i_2 in zip(p,i):r tf.gather(p_2, i_2, axisaxis-batch_dims) # 这里告诉我们为什么axis必须batch_dimsresult_2.append(r)result.append(result_2)return tf.stack(result) manually_batched_gather_3d(params, indices, axis2).numpy() # array([[[1, 2], # [3, 4], # [5, 6]], # # [[8, 2], # [2, 6], # [3, 8]]], dtypeint32)下面来解释一下上面程序的运行过程在上面的manually_batched_gather_3d运行过程中第一层zip的作用如下 pprint(list(zip(params.numpy().tolist(), indices.numpy().tolist()))) # 打印得到如下list该list有两个元组组成都是将两个参数的axis0轴上的两个二维张量分别进行了组包 # [([[0, 0, 1, 0, 2], # [3, 0, 0, 0, 4], # [0, 5, 0, 6, 0]], # 到这儿为params的axis0轴上的[0]二维张量 # [[2, 4], # [0, 4], # [1, 3]]), # 到这儿为indices的axis0轴上的[0]二维张量 # # ([[1, 8, 4, 2, 2], # [9, 6, 2, 3, 0], # [7, 2, 8, 6, 3]], # 到这儿为params的axis0轴上的[1]二维张量 # [[1, 3], # [2, 1], # [4, 2]])] # 到这儿为indices的axis0轴上的[1]二维张量然后进入第一层for循环的第一次循环将zip之后的两个元组中的第一个元组拿过来分别赋给p、i ptf.Tensor( [[0 0 1 0 2][3 0 0 0 4][0 5 0 6 0]], shape(3, 5), dtypeint32) itf.Tensor( [[2 4][0 4][1 3]], shape(3, 2), dtypeint32)在第二层for之前插入得到第二层的zip结果 print(list(zip(p.numpy().tolist(), i.numpy().tolist()))) # [([0, 0, 1, 0, 2], [2, 4]), # ([3, 0, 0, 0, 4], [0, 4]), # ([0, 5, 0, 6, 0], [1, 3])]则开始第二层for的第一次循环则 # p_2 tf.Tensor([0 0 1 0 2], shape(5,), dtypeint32) # i_2 tf.Tensor([2 4], shape(2,), dtypeint32) # r tf.Tensor([1 2], shape(2,), dtypeint32)这之后第二层for循环再进行2次循环退回到第一层大循环第一层大循环再进行一次上述循环即完成了整个循环。 2.4 batch_dims再降为1 你会发现下面两条指令等价即batch_dims1只有一层循环只zip一次 tf.gather(params, indices, axis2, batch_dims1).numpy() # 等价于 manually_batched_gather(params, indices, axis2).numpy() # [[[[1 2] # [0 2] # [0 0]] # # [[0 4] # [3 4] # [0 0]] # # [[0 0] # [0 0] # [5 6]]] # # # [[[8 2] # [4 8] # [2 4]] # # [[6 3] # [2 6] # [0 2]] # # [[2 6] # [8 2] # [3 8]]]]2.5 再将axis降为1 还需修改一下indices因为下文有对indices的约束——必须在 [0, params.shape[axis]] 范围内此时params.shape为(2, 3, 5)则params.shape[1]3所以indices只能等于0或1或2如果3索引的时候就会溢出。此时还是batch_dims1只有一层循环只zip一次只是改变了索引轴。 indices tf.constant([[[1, 0],[2, 1],[2, 0]],[[2, 0],[0, 1],[1, 2]]]) tf.gather(params, indices, axis1, batch_dims1).numpy() # 等价于 manually_batched_gather(params, indices, axis1).numpy() # array([[[[3, 0, 0, 0, 4], # [0, 0, 1, 0, 2]], # # [[0, 5, 0, 6, 0], # [3, 0, 0, 0, 4]], # # [[0, 5, 0, 6, 0], # [0, 0, 1, 0, 2]]], # # # [[[7, 2, 8, 6, 3], # [1, 8, 4, 2, 2]], # # [[1, 8, 4, 2, 2], # [9, 6, 2, 3, 0]], # # [[9, 6, 2, 3, 0], # [7, 2, 8, 6, 3]]]], dtypeint32)2.6 batch_dims0 因为params和indices一共由3各维度——0、1、2其对应的负维度就是-3、-2、-1所以下面两条指令等价 a tf.gather(params, indices, axis2, batch_dims1).numpy() pprint(a) # 等价于 a tf.gather(params, indices, axis2, batch_dims-2).numpy() pprint(a)2.7 batch_dims总结 故个人认为batch_dims是由batch和dimensions两个单词缩写而成因为dimensions为复数所以可以翻译为“批量维度数”自己翻译没有查到文献可以指批处理batch_dims个维度如果是正数可以理解成嵌套几层循环或者进行几次zip如果是负数需要转化为对应的正维度再进行上述理解也可以是指组包到哪一个维度上如果是负数也同样适用于这种解释。 batch_dims极大的扩展了gather的功能使你可以将params和indices在对应的某个维度上分别进行gather然后再stack。 ps关于batch_dims的这个解释同样也适用于tf.gather_nd。 3. 补充 如果您需要使用诸如 tf.argsort 或 tf.math.top_k 之类的操作的索引其中索引的最后一个维度在相应位置索引到输入的最后一个维度这自然会出现。 在这种情况下您可以使用 tf.gather(values, indices, batch_dims-1)。 4. 参数和返回值 参数params从中收集值的Tensor张量。其秩rank必须至少为axis 1。indices索引张量。 必须是以下类型之一int32、int64。 这些值必须在 [0, params.shape[axis]] 范围内。validate_indices已弃用没有任何作用。 索引总是在 CPU 上验证从不在 GPU 上验证。注意在 CPU 上如果发现越界索引则会引发错误。 在 GPU 上如果发现越界索引则将 0 存储在相应的输出值中。axis一个Tensor张量。 必须是以下类型之一int32、int64。 从参数params中的axis轴收集索引。 必须大于或等于batch_dims。 默认为第一个**非批次维度 **。 支持负索引。batch_dims一个integer整数。 批量维度batch dimensions的数量。 必须小于或等于 rank(indices)。name操作的名称可选。 返回值一个Tensor张量 与params具有相同的类型。 5. 其他相关论述 下面几篇博客相对于官网手册都有新的信息增量可以作为参考 知网《tf.gather()函数》使用索引推演的方式在维度和操作两个方面进行理解但是其关于batch_dims的描述不够充分且有些片面知乎《tf.gather()函数总结》举了一个新的例子但是batch_dims还是只到了1没有很好的归纳其真正的物理意义CSDN《tf.gather函数》跟上一篇的情况差不多。 6. 附件 上文用到的调试程序可以忽略 import tensorflow as tf from pprint import pprintparams tf.constant([[0, 1.0, 2.0],[10.0, 11.0, 12.0],[20.0, 21.0, 22.0],[30.0, 31.0, 32.0]]) a tf.gather(params, indices[[2,1], [1,0]], axis1).numpy() pprint(a)params tf.constant([[0, 0, 1, 0, 2],[3, 0, 0, 0, 4],[0, 5, 0, 6, 0]]) indices tf.constant([[2, 4],[0, 4],[1, 3]])a tf.gather(params, indices, axis1, batch_dims1).numpy() pprint(a) a tf.gather(params, indices, axis1, batch_dims-1).numpy() pprint(a)def manually_batched_gather(params, indices, axis):batch_dims1result []for p,i in zip(params, indices):r tf.gather(p, i, axisaxis-batch_dims)result.append(r)return tf.stack(result) manually_batched_gather(params, indices, axis1).numpy()pprint(list(zip(params.numpy().tolist(), indices.numpy().tolist())))tf.gather(params, indices, axis1, batch_dims0).numpy() tf.gather(params, indices, axis1).numpy() # tf.gather(params, indices, axis0, batch_dims0).numpy()params tf.constant([[[0, 0, 1, 0, 2],[3, 0, 0, 0, 4],[0, 5, 0, 6, 0]]]) indices tf.constant([[[2, 4],[0, 4],[1, 3]]]) pprint(list(zip(params.numpy().tolist(), indices.numpy().tolist())))# [([[0, 0, 1, 0, 2], [3, 0, 0, 0, 4], [0, 5, 0, 6, 0]], # [[2, 4], [0, 4], [1, 3]])]params_1 [[0, 0, 1, 0, 2],[3, 0, 0, 0, 4],[0, 5, 0, 6, 0]], indices_1 [[2, 4],[0, 4],[1, 3]]# a tf.gather(params_1, indices_1, axis0).numpy()params tf.constant([[[0, 0, 1, 0, 2],[3, 0, 0, 0, 4],[0, 5, 0, 6, 0]],[[1, 8, 4, 2, 2],[9, 6, 2, 3, 0],[7, 2, 8, 6, 3]]]) indices tf.constant([[[2, 4],[0, 4],[1, 3]],[[1, 3],[2, 1],[4, 2]]])a tf.gather(params, indices, axis2, batch_dims2).numpy() pprint(a) a tf.gather(params, indices, axis2, batch_dims-1).numpy() pprint(a)print(list(zip(params.numpy().tolist(), indices.numpy().tolist())))# [([[0, 0, 1, 0, 2], # [3, 0, 0, 0, 4], # [0, 5, 0, 6, 0]], # [[2, 4], # [0, 4], # [1, 3]]), # # ([[1, 8, 4, 2, 2], # [9, 6, 2, 3, 0], # [7, 2, 8, 6, 3]], # [[1, 3], # [2, 1], # [4, 2]])]def manually_batched_gather_3(params, indices, axis):batch_dims2result []for p,i in zip(params, indices):result_2 []print(list(zip(p.numpy().tolist(), i.numpy().tolist())))for p_2, i_2 in zip(p,i):r tf.gather(p_2, i_2, axisaxis-batch_dims)result_2.append(r)result.append(result_2)return tf.stack(result) manually_batched_gather_3(params, indices, axis2).numpy()# tf.Tensor: shape(2, 3, 2), dtypeint32, numpy # array([[[1, 2], # [3, 4], # [5, 6]], # # [[8, 2], # [2, 6], # [3, 8]]], dtypeint32)# [([0, 0, 1, 0, 2], [2, 4]), # ([3, 0, 0, 0, 4], [0, 4]), # ([0, 5, 0, 6, 0], [1, 3])]a tf.gather(params, indices, axis2, batch_dims1).numpy() pprint(a) a tf.gather(params, indices, axis2, batch_dims-2).numpy() pprint(a) manually_batched_gather(params, indices, axis2).numpy() # [[[[1 2] # [0 2] # [0 0]] # # [[0 4] # [3 4] # [0 0]] # # [[0 0] # [0 0] # [5 6]]] # # # [[[8 2] # [4 8] # [2 4]] # # [[6 3] # [2 6] # [0 2]] # # [[2 6] # [8 2] # [3 8]]]]indices tf.constant([[[1, 0],[2, 1],[2, 0]],[[2, 0],[0, 1],[1, 2]]])a tf.gather(params, indices, axis1, batch_dims1).numpy() pprint(a) a tf.gather(params, indices, axis1, batch_dims-2).numpy() pprint(a) manually_batched_gather(params, indices, axis1).numpy() # array([[[[3, 0, 0, 0, 4], # [0, 0, 1, 0, 2]], # # [[0, 5, 0, 6, 0], # [3, 0, 0, 0, 4]], # # [[0, 5, 0, 6, 0], # [0, 0, 1, 0, 2]]], # # # [[[7, 2, 8, 6, 3], # [1, 8, 4, 2, 2]], # # [[1, 8, 4, 2, 2], # [9, 6, 2, 3, 0]], # # [[9, 6, 2, 3, 0], # [7, 2, 8, 6, 3]]]], dtypeint32)
http://www.hkea.cn/news/14474264/

相关文章:

  • 云浮北京网站建设电销系统哪家好
  • 做做网站已更新wordpress 路径标签
  • 网站排名查询平台建设手机网站赚钱吗
  • 图片在线设计网站金沙网站怎么做代理
  • 网站上的图标用什么软件做的免费网站域名
  • 淮安网站建设优化网站图片切换
  • 常州武进建设局网站宜昌seo优化服务
  • 手机端网站开发的意义企业网站在百度搜索不到
  • 网站建设策划书结束语中文域名网站好不好优化
  • 如何加入网站东京购物商城
  • 小白建站软件网站设计需要用到什么技术
  • 要怎样建设网站wordpress注册登录修改
  • 学做ppt的网站wordpress site
  • 做网站 做什么网站好赣州吾往矣网络科技有限公司
  • 贵阳网页网站制作加快网站速度吗
  • 查询系统网站模板中国住房和城乡建设部网站一级建造师网
  • 广州网站建设有限公司做外汇著名网站
  • 网站详情页怎么做的五金店网站模板
  • 计算机网站php设计代做北京网站建设seo优化
  • 宁波建网站报价网站怎么做聚合页面
  • 上海网站建设 网站开发京东网站建设分析
  • dw网站建设的常用技术wordpress 广告格子
  • 广州网站建设厂家wordpress 不用插件代码高亮
  • 做网站建设有哪些公司制作手机app用什么语言
  • 小说阅读网站怎么建设五路居网站建设
  • 欧美一级A做爰片成电影网站长治做网站的公司
  • 网站改版的方式大致为三水网站建设哪家好
  • 罗湖网站建设的公司石家庄网站定制开发
  • 设计网站要多久培训机构网站建设方案
  • 网站建设访问人群12306网站开发多少钱