Hi,
I am interested in the depth map estimation of this project. I tried freezing the model to a .pb file but i cannot figure out the output node which produces the depth map. Can you please tell me the output node name?
checkpoint_file = './model/deeplens/deeplens.ckpt'
frozen_model_file = './deeplens.pb'
output_node_names = '??'
# Call freeze graph
freeze_graph(
input_graph="",
input_saver="",
input_binary=False,
input_checkpoint=checkpoint_file,
output_node_names=output_node_names,
restore_op_name="save/restore_all",
filename_tensor_name="save/Const:0",
output_graph=frozen_model_file,
clear_devices=True,
initializer_nodes="")
Hi,
I am interested in the depth map estimation of this project. I tried freezing the model to a .pb file but i cannot figure out the output node which produces the depth map. Can you please tell me the output node name?