gpt4 book ai didi

python - 从预训练模型进行微调后,TensorFlow 模型中的输出节点名称丢失

转载 作者:行者123 更新时间:2023-12-04 19:11:03 25 4
gpt4 key购买 nike

我按照 https://tensorflow-object-detection-api-tutorial.readthedocs.io 上的教程进行操作微调预训练模型以检测图像中的新对象。预训练模型为 ssd_inception_v2_coco .

经过几千步后,我成功地训练和评估了模型,损失从 26 降至 1。但是,我未能使用以下代码创建卡住模型:

#this code runs in model dir
import tensorflow as tf

#make .pb file from model at step 1000
saver = tf.train.import_meta_graph(
'./model.ckpt-1000.meta', clear_devices=True)

graph = tf.get_default_graph()
input_graph_def = graph.as_graph_def()
sess = tf.Session()
saver.restore(sess, "./model.ckpt-1000")

#node names
i=0
for n in tf.get_default_graph().as_graph_def().node:
print(n.name,i);
i+=1
#end for
print("total:",i);

output_node_names=[
"detection_boxes","detection_classes",
"detection_scores","num_detections"
];
output_graph_def = tf.graph_util.convert_variables_to_constants(
sess,input_graph_def,output_node_names);

#save to .pb file
output_graph="./model.pb"
with tf.gfile.GFile(output_graph, "wb") as f:
f.write(output_graph_def.SerializeToString());
#end with

sess.close();

错误是:

enter image description here

微调后的模型似乎丢失了输出节点名称 .原始预训练模型中有这些输出节点名称(将上面代码中的检查点文件更改为原始训练模型中的): detection_boxes、detection_classes、detection_scores 和 num_detections .输出节点名称与原始节点名称完全相同,这是它们的索引(来自上面的节点名称“for”循环):

enter image description here

我的问题是 如何保留原始预训练模型的输出节点名称 ?节点名称在代码中定义,但这里没有代码,只有一些配置和文件“train.py”。

PS。在total_loss后面有个叫summary_op的东西,不知道是不是输出(?):

enter image description here

最佳答案

为了有'图像张量 '(输入)和其他输出节点名称 ' 检测框 ', ' 检测类 ', ' 检测分数 ', ' 检测次数 ',使用 中的实用程序脚本 tensorflow /模型/研究/object_detection 名为' export_inference_graph.py '。该脚本甚至优化了卡住图(卡住模型)以进行推理。根据我的测试模型,节点数量从 26,000 个减少到 5,000 个;这对推理速度很有帮助。

这是 export_inference_graph.py 的链接:
https://github.com/tensorflow/models/blob/0558408514dacf2fe2860cd72ac56cbdf62a24c0/research/object_detection/export_inference_graph.py

如何运行:

#bash command
python3 export_inference_graph.py \
--input_type image_tensor \
--pipeline_config_path PATH_TO_PIPELINE.config \
--trained_checkpoint_prefix PATH_TO/model.ckpt-NUMBER \
--output_directory PATH_TO_NEW_DIR

有问题的 .pb 创建代码仅适用于从头创建并手动定义节点名称的模型,用于从 TensorFlow Model Zoo https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/detection_model_zoo.md 下载的预训练模型微调的模型检查点,它不会工作!

关于python - 从预训练模型进行微调后,TensorFlow 模型中的输出节点名称丢失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55738456/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com