在复用已训练好的模型时,进行需要查看模型网络结构和对应的变量名称。 查看Ops的信息 # after load model from file ... # print out operations information ops = tf.get_default_graph().get_operations() for op in ops: print(op.name)