📜  @tf.function - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:05.592000             🧑  作者: Mango

代码示例1
You can use tf.function to make graphs out of your programs. 
It is a transformation tool that creates Python-independent dataflow
graphs out of your Python code. This will help you create performant 
and portable models, and it is required to use SavedModel.