Невозможно заморозить модели Tensorflow в замороженном файле (.pb)

1

Я имею в виду (здесь), чтобы заморозить модели в файл.pb. Моя модель - это CNN для классификации текста. Я использую (Github) ссылку для обучения CNN для классификации текста и экспорта в виде моделей. Я подготовил модели до 4 эпох, а папки "Мои контрольные точки" выглядят следующим образом:

Изображение 174551

Я хочу заморозить эту модель в файл (.pb). Для этого я использую следующий скрипт:

import os, argparse

import tensorflow as tf

# The original freeze_graph function
# from tensorflow.python.tools.freeze_graph import freeze_graph 

dir = os.path.dirname(os.path.realpath(__file__))

def freeze_graph(model_dir, output_node_names):
    """Extract the sub graph defined by the output nodes and convert 
    all its variables into constant 
    Args:
        model_dir: the root folder containing the checkpoint state file
        output_node_names: a string, containing all the output node names, 
                            comma separated
    """
    if not tf.gfile.Exists(model_dir):
        raise AssertionError(
            "Export directory doesn't exists. Please specify an export "
            "directory: %s" % model_dir)

    if not output_node_names:
        print("You need to supply the name of a node to --output_node_names.")
        return -1

    # We retrieve our checkpoint fullpath
    checkpoint = tf.train.get_checkpoint_state(model_dir)
    input_checkpoint = checkpoint.model_checkpoint_path

    # We precise the file fullname of our freezed graph
    absolute_model_dir = "/".join(input_checkpoint.split('/')[:-1])
    output_graph = absolute_model_dir + "/frozen_model.pb"

    # We clear devices to allow TensorFlow to control on which device it will load operations
    clear_devices = True

    # We start a session using a temporary fresh Graph
    with tf.Session(graph=tf.Graph()) as sess:
        # We import the meta graph in the current default Graph
        saver = tf.train.import_meta_graph(input_checkpoint + '.meta', clear_devices=clear_devices)

        # We restore the weights
        saver.restore(sess, input_checkpoint)

        # We use a built-in TF helper to export variables to constants
        output_graph_def = tf.graph_util.convert_variables_to_constants(
            sess, # The session is used to retrieve the weights
            tf.get_default_graph().as_graph_def(), # The graph_def is used to retrieve the nodes 
            output_node_names.split(",") # The output node names are used to select the usefull nodes
        ) 

        # Finally we serialize and dump the output graph to the filesystem
        with tf.gfile.GFile(output_graph, "wb") as f:
            f.write(output_graph_def.SerializeToString())
        print("%d ops in the final graph." % len(output_graph_def.node))

    return output_graph_def

if __name__ == '__main__':
    parser = argparse.ArgumentParser()
    parser.add_argument("--model_dir", type=str, default="", help="Model folder to export")
    parser.add_argument("--output_node_names", type=str, default="", help="The name of the output nodes, comma separated.")
    args = parser.parse_args()

    freeze_graph(args.model_dir, args.output_node_names)

Я использую следующий парсер аргументов, чтобы запустить приведенный выше код

python3 freeze_graph.py --model_dir /Users/path_to_checkpoints/ --output_node_names softmax

Он дает ошибку

    assert d in name_to_node_map, "%s is not in graph" % d
AssertionError: softmax is not in graph

Моя модель - это CNN для классификации текста. Что я должен писать в output_node_names? для создания успешного.pb файла на выходе

Теги:
tensorflow
python-3.x
tensorflow-serving
text-classification

2 ответа

1
Лучший ответ

Используйте приведенный ниже сценарий для печати тензоров... последним тензором будет выходной тензор. Оригинальный автор: https://blog.metaflow.fr/tensorflow-how-to-freeze-a-model-and-serve-it-with-a-python-api-d4f3596b3adc

import argparse
import tensorflow as tf


def print_tensors(pb_file):
    print('Model File: {}\n'.format(pb_file))
    # read pb into graph_def
    with tf.gfile.GFile(pb_file, "rb") as f:
        graph_def = tf.GraphDef()
        graph_def.ParseFromString(f.read())

    # import graph_def
    with tf.Graph().as_default() as graph:
        tf.import_graph_def(graph_def)

    # print operations
    for op in graph.get_operations():
        print(op.name + '\t' + str(op.values()))


if __name__ == '__main__':
    parser = argparse.ArgumentParser()
    parser.add_argument("--pb_file", type=str, required=True, help="Pb file")
    args = parser.parse_args()
    print_tensors(args.pb_file)
  • 0
    Спасибо за обратную связь. Я просмотрел вышеуказанный блог и опубликовал измененный скрипт eval.py, который, как мне показалось, работает.
0

Tensorflow: Каковы "output_node_names" для freeze_graph.py в модели model_with_buckets?

Ниже приведены некоторые ответы об именах узлов и их идентификации.

Удачи.

  • 0
    ссылка для RNN, моя проблема в CNN

Ещё вопросы

Сообщество Overcoder
Наверх
Меню