"UserWarning: Encoding a StructuredValue with type tensorflow_gnn.GraphTensorSpec; loading this StructuredValue will require that this type be imported and registered."
My model primarily uses gatconv2 and the warning occurs when I try to save the model to disk using model.save(f"savedmodels/model{epoch}").
I'm encountering the following warning:
"UserWarning: Encoding a StructuredValue with type tensorflow_gnn.GraphTensorSpec; loading this StructuredValue will require that this type be imported and registered."
My model primarily uses gatconv2 and the warning occurs when I try to save the model to disk using model.save(f"savedmodels/model{epoch}").
Does anyone know what's going on here?