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 layers to support the export of models from Keras fully. One of them is the Conv1D layer.
Add a 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.
As a reference implementation, the Conv2D layer could be used, but feel free to improve it!
If some refactoring to convolutional layers could be applied, please, try to do it!
Also, support for export and import of layer in JSON format should be added (see ModelLoader.kt and ModelSaver.kt)
A detailed description of the layer can be found here
P.S. There are no-ops for tf.nn.conv1d in Java API, so you could try to implement it from scratch via available ops or use tf.nn.conv2d like in TensorFlowJS with reshape in tfjs-core/src/ops/conv1d.ts
The text was updated successfully, but these errors were encountered:
We are missing some layers to support the export of models from Keras fully. One of them is the Conv1D layer.
Add a 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 Conv2D layer could be used, but feel free to improve it!
If some refactoring to convolutional layers could be applied, please, try to do it!
Also, support for export and import of layer in JSON format should be added (see ModelLoader.kt and ModelSaver.kt)
A detailed description of the layer can be found here
P.S. There are no-ops for tf.nn.conv1d in Java API, so you could try to implement it from scratch via available ops or use tf.nn.conv2d like in TensorFlowJS with reshape in tfjs-core/src/ops/conv1d.ts
The text was updated successfully, but these errors were encountered: