pass

来源:4-8 tf.data读取tfrecord文件并与tf.keras结合使用

战战的坚果

2020-02-21

def parse_example(serialized_example):
example = tf.io.parse_single_example(serialized_example,
expected_features)
return example[“input_features”], example[“label”]
。。。。。。
dataset = dataset.map(parse_example,
num_parallel_calls=n_parse_threads)
老师,parse_example在map中只是写了函数名,并没有给它传参数,在parse_example函数中是怎么获取到的erialized_example这个参数的值的呢

写回答

1回答

正十七

2020-02-24

这就是这个map API的使用方式,在map函数实现的内部,会调用parse_example函数,那个时候,serilized_example会被传进去。这个实现对我们用户是不可见的。这是很常见的API方式,即函数句柄本身也可以作为一个参数被传进另一个函数。

0
0

Google老师亲授 TensorFlow2.0 入门到进阶

Tensorflow2.0实战—以实战促理论的方式学习深度学习

1849 学习 · 896 问题

查看课程

相似问题

pass

回答 1

pass

回答 1

pass

回答 1

pass

回答 1

pass

回答 1