codecamp

TensorFlow函数:tf.sparse_mask

tf.sparse_mask 函数

sparse_mask(
    a,
    mask_indices,
    name=None
)

定义在:tensorflow/python/ops/array_ops.py.

请参阅指南:变量>稀疏变量更新

IndexedSlices 要屏蔽(mask)的元素.

给定一个 IndexedSlices 实例 a,返回另一个包含 a 切片的子集的 IndexedSlices.只返回未在 mask_indices 中指定的索引中的切片.

这在您需要在 IndexedSlices 对象中提取切片的子集时非常有用.

例如:

# `a` 包含在索引 [12, 26, 37, 45] 的切片,它来自一个带有形状 [1000, 10] 的大张量a.indices  # [12, 26, 37, 45]
tf.shape(a.values)  # [4, 10]

# `b`将是 `a` 切片在其第二和第三个指数中的子集, 因此我们要掩盖其第一个和最后一个索引 (这是绝对索引 12, 45)
b = tf.sparse_mask(a, [12, 45])

b.indices  # [26, 37]
tf.shape(b.values)  # [2, 10]

函数参数:

  • a:一个IndexedSlices实例.
  • mask_indices:要屏蔽的元素的索引.
  • name:操作的名称(可选).

函数返回值:

被屏蔽的IndexedSlices实例.

TensorFlow函数:tf.sparse_fill_empty_rows
TensorFlow函数:tf.sparse_matmul
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

TensorFlow 函数介绍

TensorFlow 函数模块:tf

TensorFlow的image模块

TensorFlow使用之tf.io

TensorFlow使用之tf.keras

TensorFlow函数教程:tf.keras.applications

TensorFlow函数教程:tf.keras.backend

TensorFlow使用之tf.metrics

TensorFlow使用之tf.nn

TensorFlow使用之tf.python_io

TensorFlow 功能函数

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }