当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.compat.v1.sparse_placeholder用法及代码示例


为将始终馈送的稀疏张量插入占位符。

用法

tf.compat.v1.sparse_placeholder(
    dtype, shape=None, name=None
)

参数

  • dtype 要馈送的张量中values 元素的类型。
  • shape 要馈送的张量的形状(可选)。如果未指定形状,则可以输入任何形状的稀疏张量。
  • name 操作前缀的名称(可选)。

返回

  • 一个SparseTensor,可用作提供值的句柄,但不直接评估。

抛出

  • RuntimeError 如果启用了即刻执行

重要的:如果评估,此稀疏张量将产生错误。它的值必须使用 feed_dict 可选参数提供给 Session.run()Tensor.eval()Operation.run()

例如:

x = tf.compat.v1.sparse.placeholder(tf.float32)
y = tf.sparse.reduce_sum(x)

with tf.compat.v1.Session() as sess:
  print(sess.run(y))  # ERROR:will fail because x was not fed.

  indices = np.array([[3, 2, 0], [4, 5, 1]], dtype=np.int64)
  values = np.array([1.0, 2.0], dtype=np.float32)
  shape = np.array([7, 9, 2], dtype=np.int64)
  print(sess.run(y, feed_dict={
    x:tf.compat.v1.SparseTensorValue(indices, values, shape)}))  # Will
    succeed.
  print(sess.run(y, feed_dict={
    x:(indices, values, shape)}))  # Will succeed.

  sp = tf.sparse.SparseTensor(indices=indices, values=values,
                              dense_shape=shape)
  sp_value = sp.eval(session=sess)
  print(sess.run(y, feed_dict={x:sp_value}))  # Will succeed.

@compatibility{eager} 占位符与即刻执行不兼容。

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.sparse_placeholder。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。