nadavbar/node-cntk

Sequence data support

VHellendoorn opened this issue · 0 comments

Hi, is there any way to feed sequence data to node-cntk? I have a pre-trained model that I can feed one-hot data, but the sequence axis seems to throw it off, giving errors such as:

Error: Error occured during call to evalModel: NDArrayView::CopyFrom: The source view shape '[1023 x 1 x 4]' is not same as the shape '[1023 x 4]' of this NDArrayView.

(on a 4-word input with output vocabulary of 1,023) which seems to refer to a missing sequence axis. Feeding in two copies of the same sequence (as in, a batch of two elements) gives no response whatsoever, error or result. Any thoughts? Thanks