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


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


为 tf.parse_example 生成解析规范以与回归器一起使用。

用法

tf.compat.v1.estimator.regressor_parse_example_spec(
    feature_columns, label_key, label_dtype=tf.dtypes.float32, label_default=None,
    label_dimension=1, weight_column=None
)

参数

  • feature_columns 包含所有特征列的迭代。所有项目都应该是派生自 _FeatureColumn 的类的实例。
  • label_key 标识标签的字符串。这意味着 tf.Example 使用此键存储标签。
  • label_dtype tf.dtype 标识标签的类型。默认情况下它是 tf.float32
  • label_default 如果 label_key 在给定的 tf.Example 中不存在,则用作标签。默认情况下 default_value 为 none,这意味着如果缺少任何标签,tf.parse_example 将出错。
  • label_dimension 每个示例的回归目标数。这是标签和 logits Tensor 对象的最后一个维度的大小(通常,这些对象的形状为 [batch_size, label_dimension] )。
  • weight_column tf.feature_column.numeric_column 创建的字符串或 NumericColumn 定义表示权重的特征列。它用于在训练期间减轻重量或增加示例。它将乘以示例的损失。如果它是一个字符串,它被用作从 features 中获取权重张量的键。如果是 NumericColumn ,则通过键 weight_column.key 获取原始张量,然后对其应用 weight_column.normalizer_fn 以获得权​​重张量。

返回

  • 将每个函数键映射到 FixedLenFeatureVarLenFeature 值的字典。

抛出

  • ValueError 如果在 feature_columns 中使用标签。
  • ValueError 如果在 feature_columns 中使用 weight_column 。
  • ValueError 如果任何给定的 feature_columns 不是 _FeatureColumn 实例。
  • ValueError 如果 weight_column 不是 NumericColumn 实例。
  • ValueError 如果label_key 为无。

如果用户以 tf.Example 格式保存数据,他们需要使用适当的函数规范调用 tf.parse_example。此实用程序有两个主要帮助:

  • 用户需要将特征的解析规范与标签和权重(如果有的话)结合起来,因为它们都是从同一个 tf.Example 实例中解析出来的。该实用程序结合了这些规范。
  • 很难将诸如DNNRegressor 之类的回归器的预期标签映射到相应的 tf.parse_example 规范。该实用程序通过从用户获取相关信息(key、dtype)对其进行编码。

解析规范的示例输出:

# Define features and transformations
feature_b = tf.feature_column.numeric_column(...)
feature_c_bucketized = tf.feature_column.bucketized_column(
  tf.feature_column.numeric_column("feature_c"), ...)
feature_a_x_feature_c = tf.feature_column.crossed_column(
    columns=["feature_a", feature_c_bucketized], ...)

feature_columns = [feature_b, feature_c_bucketized, feature_a_x_feature_c]
parsing_spec = tf.estimator.regressor_parse_example_spec(
    feature_columns, label_key='my-label')

# For the above example, regressor_parse_example_spec would return the dict:
assert parsing_spec == {
  "feature_a":parsing_ops.VarLenFeature(tf.string),
  "feature_b":parsing_ops.FixedLenFeature([1], dtype=tf.float32),
  "feature_c":parsing_ops.FixedLenFeature([1], dtype=tf.float32)
  "my-label":parsing_ops.FixedLenFeature([1], dtype=tf.float32)
}

使用回归器的示例用法:

feature_columns = # define features via tf.feature_column
estimator = DNNRegressor(
    hidden_units=[256, 64, 16],
    feature_columns=feature_columns,
    weight_column='example-weight',
    label_dimension=3)
# This label configuration tells the regressor the following:
# * weights are retrieved with key 'example-weight'
# * label is a 3 dimension tensor with float32 dtype.


# Input builders
def input_fn_train(): # Returns a tuple of features and labels.
  features = tf.contrib.learn.read_keyed_batch_features(
      file_pattern=train_files,
      batch_size=batch_size,
      # creates parsing configuration for tf.parse_example
      features=tf.estimator.classifier_parse_example_spec(
          feature_columns,
          label_key='my-label',
          label_dimension=3,
          weight_column='example-weight'),
      reader=tf.RecordIOReader)
   labels = features.pop('my-label')
   return features, labels

estimator.train(input_fn=input_fn_train)

相关用法


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