You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are missing some activation layers to support the export of models from Keras fully. One of them is the PReLU layer.
Add an activation layer class, write documentation for it, write a test for it, try, if possible, create a small trainable network with it (in your own GitHub) and attach a link here in the comments.
@therealansh A regularizer is not necessarily used; actually, you can optionally provide a regularizer as well, but in the default case it works without any regularization or constraint on the weights. Nonetheless, it should be added in any case for the sake of completeness and compatibility; so I have left a TODO comment for that in my implementation.
Good comment, @therealansh, about regularizers, but now it's not supported yet and will be an issue later (I'll suggest adding an issue about that).
So, agree with @mkaze we could work with a simple PReLU version now (adding a TODO with a link on the newly created issue and #83 could be a good solution)
We are missing some activation layers to support the export of models from Keras fully. One of them is the PReLU layer.
Add an activation layer class, write documentation for it, write a test for it, try, if possible, create a small trainable network with it (in your own GitHub) and attach a link here in the comments.
The layer should be placed here
As a reference implementation, the ReLU activation layer could be used, but feel free to improve it!
Also, support for export and import of activation layer in JSON format should be added (see ModelLoader.kt and ModelSaver.kt)
A detailed description of the activation layer can be found here
The text was updated successfully, but these errors were encountered: