Hello @ggordonhall ,
I'm really interested in this seq2seq implementation.
When I run it there seems to be a problem with data not being defined?
I've tried hcat the batches and zip Xs and Ys together
Xs = [hcat(x...) for x in Xs]
Ys = [hcat(y...) for y in Ys]
data = zip(Xs, Ys)
but when I run the train function I get an error with the loss:
MethodError: no method matching loss(::Array{Int64,2}, ::Array{Int64,2}).
I was wondering if you perhaps have made progress model?
Thanks,
Jules
Hello @ggordonhall ,
I'm really interested in this seq2seq implementation.
When I run it there seems to be a problem with data not being defined?
I've tried
hcatthe batches and zip Xs and Ys togetherbut when I run the train function I get an error with the loss:
MethodError: no method matching loss(::Array{Int64,2}, ::Array{Int64,2}).I was wondering if you perhaps have made progress model?
Thanks,
Jules