Hi,
I run the main_snli.py, but got an error message in
def create_batch(data,from_index, to_index):
I changed the following sentence
left_sents = torch.cat((dict[word].view(1, -1) for word in lsent))
to
left_sents = torch.cat([dict[word].view(1, -1) for word in lsent])