We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am trying to use 3 'EfficientNetB7' backbones with different input size in the same model but I get the following error.
Is there a way to change the name of the model name?
I tried model._name to set a new name but didn't work.
Please help
ValueError: The name "efficientnet-b7" is used 2 times in the model. All layer names should be unique.
The text was updated successfully, but these errors were encountered:
You might want to use solution on here
Altough.... this is not documented and subject to change over time 🤔
Sorry, something went wrong.
keras-team/keras#6194 (comment)
quick workaround: wrap one of the models in tf.keras.Sequential([model], name="new_name"). That will resolve the naming issue.
No branches or pull requests
I am trying to use 3 'EfficientNetB7' backbones with different input size in the same model but I get the following error.
Is there a way to change the name of the model name?
I tried model._name to set a new name but didn't work.
Please help
ValueError: The name "efficientnet-b7" is used 2 times in the model. All layer names should be unique.
The text was updated successfully, but these errors were encountered: