Tensorflow 合并多个pb模型并共用一个输入的方法
存在两个pb模型的输入相同,现想把两个pb模型合并成一个模型并共用一个输入节点,借鉴合并多个tensorflow模型的办法代码如下:import tensorflow as tffrom tensorflow.python.framework.graph_util import convert_variables_to_constantsIMAGE_SIZE = 48 #假设模型输入是48x48origin_model = "1.pb" #第一个模型new_model =