Hi,
is there a way to change the output layer name?
From what I observed, it's always default to Identity_n:0 where n is the number of output src
full_model = full_model.get_concrete_function(
x=tf.TensorSpec(model.inputs[0].shape, model.inputs[0].dtype, name = "input_1"))
//we can change the input signature here? what about output?
Hi,
is there a way to change the output layer name?
From what I observed, it's always default to Identity_n:0 where n is the number of output src