Sequence to Sequence / Text to Text model

I am working on an auto-responder model, and trying to write a dataloader. Labels and targets are both text. Is the easiest way to try to subclass TextClasDataBunch? Are there any relevant examples? Thanks in advance!

Could also try to mix this in https://github.com/bentrevett/pytorch-seq2seq

There is a seq2seq example notebook here.

2 Likes

Thanks!

{resolved version issue}
Works on ‘1.0.55.dev0’

Is there any notebook available where sequence is not text but numercial number for example input will be like [2,5,8],[5,4,8] and output will be [4,5,6,9].