Reputation: 125
I'm trying to implement the code described in this blogpost with deeplearning4j.
http://www.wildml.com/2015/12/implementing-a-cnn-for-text-classification-in-tensorflow/
I'm having problems implementing multiple kernels on the same channel and concatenating the resulting tensors. Is there even a concat function in deeplearning4j? And is it even possible to have different kernels on the same channel?
Tank you in advance.
Upvotes: 0
Views: 393
Reputation: 3205
You will have to use our computation graph api: http://deeplearning4j.org/compgraph
Upvotes: 2