tejaswini
tejaswini
Hi, Please include n_layers=2 in the decoder too. That seems to have fixed the issue. encoder = EncoderRNN(len(src.vocab), max_len, hidden_size, n_layers=2, bidirectional=bidirectional, variable_lengths=True) decoder = DecoderRNN(len(tgt.vocab), max_len, hidden_size * 2...
Hi, Turns out the discrepancy in the behaviour between CPU and GPU is a bug in pytorch. We filed a bug for the same https://github.com/pytorch/pytorch/issues/4002 Currently, we only support encoders...
Hi, This is torchtext issue. Please follow this discussion: https://github.com/pytorch/text/issues/321