tf.contrib.layers.parse_feature_columns_from_sequence_examples
Parses tf.SequenceExamples to extract tensors for given FeatureColumn
s.
tf.contrib.layers.parse_feature_columns_from_sequence_examples( serialized, context_feature_columns, sequence_feature_columns, name=None, example_name=None )
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)
|
© 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