阅读(10.4k) 书签 (0)

TensorFlow函数教程:tf.io.FixedLenFeature

2019-02-20 17:25 更新

tf.io.FixedLenFeature函数

类 FixedLenFeature

别名:

  • 类 tf.FixedLenFeature
  • 类 tf.io.FixedLenFeature

定义在:tensorflow/python/ops/parsing_ops.py。

用于解析固定长度输入要素的配置。

要将稀疏输入视为密集,请提供default_value;否则,任何缺少此功能的示例的解析函数都将失败。

字段:

  • shape:输入数据的shape。
  • dtype:输入的数据类型。
  • default_value:如果示例缺少此功能,则使用该值。它必须与dtype和指定shape兼容。

__new__

@staticmethod
__new__(
    cls,
    shape,
    dtype,
    default_value=None
)

创建FixedLenFeature的新实例(shape,dtype,default_value)

属性

shape

dtype

default_value