Summary
This paper investigates length-controllable summarization. First (“+Prompt”), the proposed method controls the summary length by indicating the desired length in the prompt (similar to Fan et al., 2018). Second (“+RL”), to add/enhance the length-controllable capability of summarization models, the paper applies the RL method (PPO algorithm) to fine-tune GPT models using a rule-based reward. The reward simply compares the length of the generated text against the desired length, which is specified in the input prompt, and the desired length is extracted from the input prompt using a BERT/GPT-based model. Third (“+Filter”), at the inference stage, multiple summaries are sampled, and the output is the one that yields the highest reward.
The experiments were conducted on CNN/DailyMail and NYT which are standard news summarization datasets. The paper selected three sizes of GPT models (124M, 355M, 774M) as the backbone and fine-tuned these models using their proposed methods. The prompt templates were manually crafted covering many standard length-control prompts. The results show improvements over the standard prompting method (similar to Fan et al., 2018) in terms of achieving the target length while maintaining ROUGE scores.
Strengths
1) The paper shows improvement in length-control ability while maintaining the ROUGE scores.
2) The paper proposes and investigates different prompt extractors, and shows that a BERT-based model achieves perfect accuracy in both seen and unseen prompts.
3) The paper is the first (or one of the first) to apply the PPO algorithm to length-controllability in summarization.
4) The ablation study shows that a simple rule-based reward performs better than model-based rewards.
Weaknesses
1) The main contributions of this paper are very incremental. For example,
- 1.1) Controlling the length by input prompts has already been done by (Fan et al., 2018) and CTRLsum (He et al., 2022).
- 1.2) Applying RL to controlling the length has already been done by (Bian et al., 2019)
- 1.3) Sample filtering can be considered (I believe) as a weaker version of minimum risk decoding e.g., Freitag et al., 2022
- 1.4) The relevant references CTRLsum (He et al., 2022) and (Bian et al., 2019) are missing in the paper
2) The paper mentions LLMs (e.g., GPT-4, LLaMA, etc.) which are much larger and more capable than the baseline selected in this work (GPT). So, I’m not sure if the findings in this paper would transfer to those larger models (with emergence properties). I believe these larger models are becoming more accessible to researchers now, so I’m quite surprised about the model choice in this paper. Also, there are other more commonly used models such as BART, T5, and Pegasus which have fine-tuned weights on summarization tasks.
3) This paper doesn’t compare against any existing methods. The authors list some existing approaches in Section 2.2; however, in the experiments, none of them are compared against.
Note that the weaknesses #2 and #3 are minor compared to weakness #1.
References:
- (He et al., 2022) CTRLsum: Towards Generic Controllable Text Summarization
- (Fan et al., 2018) Controllable Abstractive Summarization
- (Bian et al., 2019) Controllable length control neural encoder-decoder via reinforcement learning
- (Freitag et al., 2022) High Quality Rather than High Model Probability: Minimum Bayes Risk Decoding with Neural Metrics
Questions
What are your thoughts regarding the weaknesses? How do you think this approach could be applicable in the era of large language models (with stronger emergent abilities such as length control)?
Rating
5: marginally below the acceptance threshold
Confidence
4: You are confident in your assessment, but not absolutely certain. It is unlikely, but not impossible, that you did not understand some parts of the submission or that you are unfamiliar with some pieces of related work.