Is it possible to transfer signatures to another model

I trained a model but I need bounding box coordinations with output label.My model giving different outputs. Is it possible to transfer a model signatures to an other pretrained model. I want to try this if possible

Hi @Chris_Toward ,

You can transfer signatures from a saved TensorFlow model to another model if they have the same input and output shapes, and the same architecture and training data. However, you may need to adjust the parameters of the pre-trained model to make sure that they are compatible.

Although I haven’t personally attempted this before, I have consulted various documents and sought out the opinions of experts in the field.

Thanks.