-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Add a custom layer at the end of a trained Model #7350
Comments
Can we add the model and additional layers to Or something like in = Input(...)
out = model(in)
... |
I could add more examples using the functional api in the doc. I usually use stackoverflow, because there are a lot of spark community and it will help for bigdl to reach to more people. |
An example would be:
|
stackoverflow sounds like a great idea :-) |
From user group issue, how to add layer to end of existing dllib keras graph model. Using nodes(someNames) or node(someName) can only apply to layers having name. The getInputs() and getOutputs() are private now. Should we make them public to easily manipulate input and output layers?
Related issue: https://groups.google.com/u/1/g/bigdl-user-group/c/G8HvbLpZCZ8
The text was updated successfully, but these errors were encountered: