Multi-View-Seq2Seq
Multi-View-Seq2Seq copied to clipboard
Source codes for the paper "Multi-View Sequence-to-Sequence Models with Conversational Structure for Abstractive Dialogue Summarization"
1. Fair sequence bug `torch.div(self.indices_buf, vocab_size, out=self.beams_buf)` gives error, it should be replaced by `torch.floor_divide(self.indices_buf, vocab_size, out=self.beams_buf)` 2. File naming error: in `data/stage_segmentation` notebook file names generated is `_sent_trans_cons_label_2.pkl` but...
It seems that link to dataset does not exist. Could anyone help out? Thanks
When I run `./train_multi_view.sh`, I get the following error: `train.py: error: unrecognized arguments: --lr-weight 1000 --T 0.2 --multi-views --balance` Running `./train_single_view.sh` works fine. Wondering if there's a fix or something...
Hello, I'm leadawon. I'm a beginner in nlp. It's been a long time since you published your paper. I think it is great research! I think I found a bug,...