-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Save the model in tensorflow saved Model format not work . #15
Comments
Hi @BernradMaillard ,
|
|
Hi @BernradMaillard it looks like a bug, I see why our CI doesn't catch it, it's because it relies only on pretrained models. You must modify s2_out = layers.Add()([net, normalized_inputs["s2_t"]]) from https://github.com/CNES/decloud/blob/master/decloud/models/meraner_unet.py#L95 into s2_out = layers.Add(name="s2_estim")([net, normalized_inputs["s2_t"]]) Then re-train your model. We will make a patch for this issue asap |
Hi @BernradMaillard , We found the issue in the code. just replace net = conv_final(net)
s2_out = layers.Add()([net, normalized_inputs["s2_t"]]) with s2_out = conv_final(net) |
The text was updated successfully, but these errors were encountered: