Hello.
# Decode the first record and print output
for tfrecord in dataset.take(1):
serialized_example = tfrecord.numpy()
example = tf.train.Example()
example.ParseFromString(serialized_example)
pp.pprint(example)
I’m curious, why method numpy() returning byte string but not numpy? Why it’s not called tostring() instead?