TensorFlow - การส่งออก
ในที่นี้เราจะเน้นไปที่การสร้าง MetaGraph ใน TensorFlow สิ่งนี้จะช่วยให้เราเข้าใจโมดูลการส่งออกใน TensorFlow MetaGraph ประกอบด้วยข้อมูลพื้นฐานซึ่งจำเป็นสำหรับการฝึกอบรมดำเนินการประเมินผลหรือเรียกใช้การอนุมานบนกราฟที่ได้รับการฝึกฝนมาก่อนหน้านี้
ต่อไปนี้เป็นข้อมูลโค้ดที่เหมือนกัน -
def export_meta_graph(filename = None, collection_list = None, as_text = False):
"""this code writes `MetaGraphDef` to save_path/filename.
Arguments:
filename: Optional meta_graph filename including the path. collection_list:
List of string keys to collect. as_text: If `True`,
writes the meta_graph as an ASCII proto.
Returns:
A `MetaGraphDef` proto. """
หนึ่งในรูปแบบการใช้งานทั่วไปสำหรับสิ่งเดียวกันมีการระบุไว้ด้านล่าง -
# Build the model ...
with tf.Session() as sess:
# Use the model ...
# Export the model to /tmp/my-model.meta.
meta_graph_def = tf.train.export_meta_graph(filename = '/tmp/my-model.meta')