tf.io.parse_single_example
Stay organized with collections
Save and categorize content based on your preferences.
Parses a single Example
proto.
tf.io.parse_single_example(
serialized, features, example_names=None, name=None
)
Similar to parse_example
, except:
For dense tensors, the returned Tensor
is identical to the output of
parse_example
, except there is no batch dimension, the output shape is the
same as the shape given in dense_shape
.
For SparseTensor
s, the first (batch) column of the indices matrix is removed
(the indices matrix is a column vector), the values vector is unchanged, and
the first (batch_size
) entry of the shape vector is removed (it is now a
single element vector).
One might see performance advantages by batching Example
protos with
parse_example
instead of using this function directly.
Args |
serialized
|
A scalar string Tensor, a single serialized Example.
|
features
|
A dict mapping feature keys to FixedLenFeature or
VarLenFeature values.
|
example_names
|
(Optional) A scalar string Tensor, the associated name.
|
name
|
A name for this operation (optional).
|
Returns |
A dict mapping feature keys to Tensor and SparseTensor values.
|
Raises |
ValueError
|
if any feature is invalid.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
Last updated 2023-10-06 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[],[]]