user2509422
user2509422

Reputation: 125

Implementing tensorflow functionality in deeplearning4j

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

Answers (1)

Adam Gibson
Adam Gibson

Reputation: 3205

You will have to use our computation graph api: http://deeplearning4j.org/compgraph

Upvotes: 2

Related Questions