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 have used the encoder to convert my .h5 model to .bin. When I try to load this model, I get the following error.
Error: [Model] Layer ReLU specified in model configuration is not implemented!
Note that the same models loads just fine in python.
Here is my NodeJs code to load the model.
const KerasJS = require('keras-js') const model = new KerasJS.Model({ filepath: './model.bin', filesystem: true }); model.ready() .then(() => { console.log("model is loaded"); return; }). catch((error) => { console.log(error) });
Any help would be really appreciated.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I have used the encoder to convert my .h5 model to .bin.
When I try to load this model, I get the following error.
Error: [Model] Layer ReLU specified in model configuration is not implemented!
Note that the same models loads just fine in python.
Here is my NodeJs code to load the model.
Any help would be really appreciated.
The text was updated successfully, but these errors were encountered: