Chinese Text Summarization

July 27, 2020 · View on GitHub

Background

Text summarization takes a long text document and creates a shorter text document that is a fluent and accurate summary of the longer text document.

Example

Input:

 较早进入中国市场的星巴克, 是不少小资钟 情的品牌。相比在美国的平民形象,星巴克在中国就 显得“高端”得多。用料并无差别的一杯中杯美式咖 啡,在美国仅约合人民币12元,国内要卖21元,相当 于贵了75%。第一财经日报 

Output:

媒体称星巴克美式咖啡售价中国比美国 贵75%。

Standard Metrics

ROUGE compares an automatically produced summary with human-produced, reference summaries. ROUGE-1 records unigram overlap, ROUGE-2 bigram overlap, and ROUGE-L the longest common subsequence. ROUGE can be computed over characters or words.

Implementations

LCSTS: A Large Scale Chinese Short Text Summarization Dataset.

Test set# (text, summary) pairs# (text, summary) pairs >= 3 scoreGenre
Part II (validation)10,6668,685News, politics, economic, military, movies, games, etc.
Part III (test)1,106725News, politics, economic, military, movies, games, etc.

Results

SystemROUGE-1ROUGE-2ROUGE-L
Duan et al. (2019)44.3530.6540.58
Wang et. al. (2018)39.921.537.9
Lin et. al. (2018)39.426.936.5
Ma et. al. (2018)39.226.036.2
Wei et. al. (2018)36.224.333.8
Seq2Seq (baseline)32.119.929.2

Resources

Train set# (text, summary) pairsGenre
Part I2,400,591News

Other Resources


Suggestions? Changes? Please send email to chinesenlp.xyz@gmail.com