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
Hi, I use Custom-defined trainer how to corectly load_model via Keras? Thx
The text was updated successfully, but these errors were encountered:
@pavelxx1 Hey Pavel,
I guess, you have trained and save a trained model via keras, and you want to load the saved weights for inference? Can't you use keras load_weights?
model.load_weights("weights.h5", by_name=True, skip_mismatch=True)
Or you can copy you demo code here?
Sorry, something went wrong.
No branches or pull requests
Hi, I use Custom-defined trainer
how to corectly load_model via Keras? Thx
The text was updated successfully, but these errors were encountered: