我们如何将 keras 模型 .h5 文件转换为 tensorflow 保存的模型 (.pb) [英] How we can convert keras model .h5 file to tensorflow saved model (.pb)

查看:111
本文介绍了我们如何将 keras 模型 .h5 文件转换为 tensorflow 保存的模型 (.pb)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我训练了一个 keras 模型并将其保存为 h5 格式.我想在谷歌云机器学习引擎上托管这个模型进行预测.如何将 keras 模型 .h5 文件转换为保存的模型.

I have a keras model trained and saved it in h5 format. I want to host this model on google cloud ml engine for prediction. How can i convert keras model .h5 file to saved model.

推荐答案

我看到这个代码的帖子(虽然我在很多其他帖子中看到过这个解决方案)是这样的:https://www.dlology.com/blog/how-to-convert-trained-keras-model-to-tensorflow-and-make-prediction/

The post where I have seen this code(although I have seen this solution in many other posts) is this: https://www.dlology.com/blog/how-to-convert-trained-keras-model-to-tensorflow-and-make-prediction/

    import tensorflow as tf
    from keras import backend as K
    # This line must be executed before loading Keras model.
    K.set_learning_phase(0)

    from keras.models import load_model
    model = load_model('./model/keras_model.h5')

    def freeze_session(session, keep_var_names=None, output_names=None,clear_devices=True):
        """
        Freezes the state of a session into a pruned computation graph.

        Creates a new computation graph where variable nodes are replaced by
        constants taking their current value in the session. The new graph will be
        pruned so subgraphs that are not necessary to compute the requested
        outputs are removed.
        @param session The TensorFlow session to be frozen.
        @param keep_var_names A list of variable names that should not be frozen,
                              or None to freeze all the variables in the graph.
        @param output_names Names of the relevant graph outputs.
        @param clear_devices Remove the device directives from the graph for better portability.
        @return The frozen graph definition.
        """
        from tensorflow.python.framework.graph_util import convert_variables_to_constants
        graph = session.graph
        with graph.as_default():
            freeze_var_names = list(set(v.op.name for v in tf.global_variables()).difference(keep_var_names or []))
            output_names = output_names or []
            output_names += [v.op.name for v in tf.global_variables()]
            # Graph -> GraphDef ProtoBuf
            input_graph_def = graph.as_graph_def()
            if clear_devices:
                for node in input_graph_def.node:
                    node.device = ""
            frozen_graph = convert_variables_to_constants(session, input_graph_def,
                                                          output_names, freeze_var_names)
            return frozen_graph

frozen_graph = freeze_session(K.get_session(),
output_names=[out.op.name for out in model.outputs])

tf.train.write_graph(frozen_graph, "model", "tf_model.pb", as_text=False)

这篇关于我们如何将 keras 模型 .h5 文件转换为 tensorflow 保存的模型 (.pb)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆