tf.contrib.layers.parse_feature_columns_from_sequence_examples

Parses tf.SequenceExamples to extract tensors for given FeatureColumns.

Args
serialized A scalar (0-D Tensor) of type string, a single serialized SequenceExample proto.
context_feature_columns An iterable containing the feature columns for context features. All items should be instances of classes derived from _FeatureColumn. Can be None.
sequence_feature_columns An iterable containing the feature columns for sequence features. All items should be instances of classes derived from _FeatureColumn. Can be None.
name A name for this operation (optional).
example_name A scalar (0-D Tensor) of type string (optional), the names of the serialized proto.
Returns
A tuple consisting of (context_features, sequence_features)
  • context_features: a dict mapping FeatureColumns from context_feature_columns to their parsed Tensors/SparseTensors.
  • sequence_features: a dict mapping FeatureColumns from sequence_feature_columns to their parsed Tensors/SparseTensors.

© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r1.15/api_docs/python/tf/contrib/layers/parse_feature_columns_from_sequence_examples