atulkum / pointer_summarizer

pytorch implementation of "Get To The Point: Summarization with Pointer-Generator Networks"
Apache License 2.0
907 stars 242 forks source link

Single word is repeated in entire summary while coverage is enable #37

Open shubham3195 opened 5 years ago

shubham3195 commented 5 years ago

hi, first of all thanks for your pytorch implementation. i m getting a pretty good results when i put is_coverage=False in config. But while putting it true all the summaries just contain the single word which is repeated (atleast minimum number of decoder times). i am using the same dataset and i trained it for 250000 iteration for is_coverage=True and 200000 for is_coverage=False.

  1. Most of the summaries are abstractive in nature they are just copying complete lines from the story . why as per model there needs to be some kind of abstraction.???

  2. while use coverage as true all decoder outputs the same word means there is only single word repeated in entire summary. Any kind of help is very helpful......thanks in advance.

Sixy1204 commented 3 years ago

hi I think you should train without coverage first and retrain with coverage.