---
title: 'MRGSEM-Sum: Unsupervised Multi-Doc Summarization'
url: https://www.emergentmind.com/topics/mrgsem-sum
type: topic
---

# MRGSEM-Sum: Unsupervised Multi-Doc Summarization

to=arxiv_search.search ￣影音先锋
{"query":"arXiv:2507.23400 MRGSEM-Sum unsupervised multi-document summarization framework based on multi-relational graphs and structural entropy minimization", "max_results": 5}
to=arxiv_search.search  天天爱彩票是json
{"query":"title:\"MRGSEM-Sum\" OR 2507.23400", "max_results": 10}
MRGSEM-Sum is an unsupervised multi-document summarization framework based on multi-relational graphs and structural entropy minimization. It is designed for multi-document summarization settings in which the input is a set of documents \(D=\{d_1,d_2,\ldots,d_n\}\) discussing the same topic, and the objective is to generate a short summary that is both informative and non-redundant. The framework addresses two difficulties identified for multi-document summarization: the complexity of relationships among sentences across documents, and redundancy caused by repeated facts across multiple sources. Its method consists of three stages: construction of a multi-relational sentence graph, adaptive clustering by two-dimensional structural entropy minimization, and summary extraction by a position-aware compression mechanism [2507.23400].

## 1. Definition and problem formulation

MRGSEM-Sum is situated in graph-based unsupervised multi-document summarization, where sentences are treated as the basic units of representation and selection. The framework is motivated by the observation that existing graph-clustering methods often model only a single type of relation and usually require the number of clusters to be preset. In the formulation associated with MRGSEM-Sum, these two limitations are treated jointly: sentence interactions are represented through multiple relation types, and sentence groups are partitioned adaptively rather than under a fixed cluster count [2507.23400].

The input consists of a document cluster \(D=\{d_1,d_2,\ldots,d_n\}\). The output is a concise summary intended to preserve coverage while reducing redundancy. The framework is fully unsupervised: no training on reference summaries is described. Instead, it relies on sentence embeddings from SBERT, TF-IDF cosine similarity, discourse relation extraction, structural entropy minimization, and shortest-path compression [2507.23400].

A central design assumption is that redundancy reduction is best handled by grouping related sentences before compression. This suggests a two-level architecture: first discover coherent sentence groups, then distill each group into a compact summary unit. In MRGSEM-Sum, that architecture is implemented through clustering and cluster-level compression rather than through end-to-end neural generation [2507.23400].

## 2. Multi-relational graph representation

The graph in MRGSEM-Sum is sentence-level. Each sentence in the document cluster is a node, and sentence representations are initialized using SBERT, yielding node embeddings \(X\). The framework defines a multi-relational graph
\[
G=\{V,E_{r_1},E_{r_2}\},
\]
where \(V\) is the set of sentence nodes, \(E_{r_1}\) denotes semantic edges, and \(E_{r_2}\) denotes discourse edges [2507.23400].

Semantic relations \(E_{r_1}\) are based on sentence content similarity. Sentences are represented using TF-IDF vectors, and edge weights are computed by cosine similarity between TF-IDF representations. This relation type captures topic overlap and lexical or content proximity among sentences [2507.23400].

Discourse relations \(E_{r_2}\) are based on discourse coherence cues following Christensen et al. (2013). The framework states that these relations consider discourse markers, coreference, and entity linking. These edges are intended to capture rhetorical connection, coherence structure, and cross-sentence logical linkage beyond surface-level semantic similarity [2507.23400].

Because the clustering stage operates on a single graph, the multi-relational graph is merged into an integrated graph
\[
G'=\{V,E\}
\]
with adjacency matrix \(A'\). The merge rule is defined so that if either relation yields a nonzero edge between two sentences, the integrated edge weight is the maximum of the two relation-specific weights; otherwise it is zero. In effect, the integrated graph preserves the strongest available evidence of connection between two sentences [2507.23400].

This graph design is one of the framework’s defining characteristics. Rather than treating sentence affinity as a single scalar derived from one feature family, MRGSEM-Sum combines semantic and discourse signals into a common graph substrate. A plausible implication is that cluster formation is influenced not only by lexical similarity but also by coherence-inducing links that connect sentences across documents even when their surface overlap is limited.

## 3. Structural entropy minimization and adaptive clustering

The clustering mechanism is based on two-dimensional structural entropy minimization. Its role is not only to partition the graph, but also to determine the number of clusters automatically. This directly contrasts with graph-clustering approaches that require a predefined number of clusters [2507.23400].

The method constructs an encoding tree \(T'\) over \(V'\). Each node \(\alpha\) in the encoding tree corresponds to a subset \(T'_{\alpha}\subseteq V'\). The root node is \(\lambda\), with
\[
T'_{\lambda}=V',
\]
and a leaf node \(\gamma\) corresponds to a single sentence,
\[
T'_{\gamma}=\{v\}.
\]
Children of a node form a partition of that node’s sentence set. Leaf height is zero, and parent height is one more than child height [2507.23400].

The first-level entropy term is defined as
\[
{H}^{(1)}_\alpha = - \sum_{\substack{i=1 }^{|{T}_\alpha|} \frac{d_i}{\mathit{vol}(\lambda)} \mathit{log} \frac{d_i}{\mathit{vol}(\lambda)},
\]
where \(d_i\) is the degree of node \(i\), and \(\mathit{vol}(\lambda)\) is the sum of degrees of all nodes in the root set \(T_\lambda\). The structural entropy of node \(\alpha\) is written as
\[
SE_\alpha = - \frac{g_{\alpha}}{\mathit{vol}(\lambda)} \mathit{log} \frac{\mathit{vol}(\alpha)}{\mathit{vol}(\lambda)} + {H}^{(1)}_\alpha,
\]
with \(g_\alpha\) denoting the total weight of cut edges by \(T_\alpha\), and \(\mathit{vol}(\alpha)\) the volume of cluster \(\alpha\) [2507.23400].

Clustering proceeds through greedy merging. For two nodes or clusters \(\alpha_i\) and \(\alpha_j\), the change in structural entropy is defined by
\[
\Delta{SE}_{i,j}={SE}_{new}-{SE}_{old},
\]
with the explicit expression given in the framework for the merge-induced entropy variation. The merge operation \(MERGE(\alpha_i,\alpha_j)\) creates a new node \(\alpha_n\), removes \(\alpha_i,\alpha_j\), sets the children of \(\alpha_n\) to the union of the children of \(\alpha_i\) and \(\alpha_j\), and assigns \(\alpha_n\)’s parent to the root \(\lambda\) [2507.23400].

The greedy policy repeatedly merges the pair with the largest decrease in structural entropy, that is, the most negative \(\Delta SE\), until no negative merge remains. The algorithm starts with every sentence as its own cluster and stops when no merge reduces entropy. In this way, the final cluster count is the one that yields minimum structural entropy under the greedy procedure [2507.23400].

The paper also describes a batching strategy: clusters are grouped into subsets of size \(n\), and if no merges occur in any subset, \(n\) is doubled so that larger merge candidates can be considered. The final leaf nodes of the subtrees under the root define the sentence clusters
\[
\{C_1,C_2,\ldots,C_c\}.
\]
This suggests that the method treats cluster cardinality as an emergent structural property of the integrated graph rather than as a user-specified hyperparameter.

## 4. Position-aware compression and summary construction

After clustering, MRGSEM-Sum does not output clusters directly. It applies a position-aware compression mechanism to convert selected clusters into concise summary units [2507.23400].

For a sentence \(s_{i,j}\) in document \(d_i\), the positional importance is defined as
\[
w_{pos}(s_{i,j})=1-\frac{pos_{i,j}-1}{N_i-1},
\]
where \(pos_{i,j}\) is the sentence position in the original document and \(N_i\) is the number of sentences in the document. Under this definition, earlier sentences receive higher weights, with the first sentence assigned weight \(1\) [2507.23400].

For each cluster \(C_i\), the positional importance score is
\[
Score_{pos}(C_i)=\sum_{s\in C_i} w_{pos}(s).
\]
Clusters are ranked by this score, and only the top \(c^*\) clusters are retained. This filtering stage is intended to privilege clusters that contain positionally salient sentences, especially in news-like settings where leading sentences often carry core information [2507.23400].

Compression within each retained cluster follows Boudin and Morin (2013). The framework uses the K-shortest paths algorithm to generate \(K\) shortest-path compression candidates
\[
\{su^{(i)}_k\}_{k=1}^{K},
\]
scores them using keyphrases, and selects the Top-1 compression candidate from each cluster. The selected candidates are concatenated to form the final summary [2507.23400].

Within the architecture of MRGSEM-Sum, compression serves two roles. First, it suppresses redundancy inside a cluster by eliminating repeated or less essential material. Second, it turns a sentence cluster into a shorter discourse unit that can be concatenated with outputs from other clusters. The framework therefore separates content organization from sentence-level surface realization: clustering determines thematic structure, while compression determines local expression.

## 5. Empirical evaluation and reported performance

MRGSEM-Sum is evaluated on four benchmark datasets: Multi-News, DUC-2004, PubMed, and WikiSum [2507.23400]. The datasets reported in the framework are summarized below.

| Dataset | Test examples | Average document length |
|---|---:|---:|
| Multi-News | 5,622 | 2103.49 |
| DUC-2004 | 50 | 5978.2 |
| PubMed | 5,025 | 3224.5 |
| WikiSum | 2,000 | 2238.2 |

The paper further reports docs per cluster and average summary length: Multi-News has docs per cluster \(2.76\) and average summary length \(263.66\); DUC-2004 has docs per cluster \(10.0\) and average summary length \(107.04\); PubMed has docs per cluster \(1.0\) and average summary length \(209.5\); WikiSum has docs per cluster \(40.0\) and average summary length \(101.2\) [2507.23400].

Evaluation uses ROUGE-1, ROUGE-2, and ROUGE-SU. The unsupervised baselines are LexRank, TextRank, MMR, Centroid, and SummPip. The supervised baselines are PG-Original, PG-MMR, Copy-Transformer, and Hi-MAP. The large language model baselines are GPT-3.5-turbo-16k and GPT-4-32k, prompted with “Summarize the above article:” [2507.23400].

MRGSEM-Sum is reported as the best among unsupervised methods on all four datasets. On Multi-News, it achieves ROUGE-1 \(43.21\), ROUGE-2 \(14.66\), and ROUGE-SU \(16.99\), compared with SummPip at \(42.32/13.28/16.20\). On DUC-2004, it achieves \(49.23/15.36/23.47\), compared with SummPip at \(36.30/8.47/11.55\) and LexRank at \(35.56/7.87/11.86\). On PubMed, it achieves \(37.96/15.04/14.32\), compared with SummPip at \(29.67/12.63/7.46\). On WikiSum, it achieves \(39.07/10.91/14.06\), compared with SummPip at \(37.84/9.95/13.11\) [2507.23400].

The paper states that the method consistently outperforms previous unsupervised methods and, in several cases, achieves performance comparable to supervised models and large language models. It also notes that on WikiSum, MRGSEM-Sum exceeds GPT-4-32k on ROUGE-1 by \(2.52\) according to the paper’s discussion [2507.23400].

Human evaluation was conducted by three graduate students on 100 random summaries from the Multi-News test set. The systems compared were TextRank, Centroid, SummPip, GPT-3.5-turbo-16k, GPT-4-32k, and MRGSEM-Sum. The criteria were Fluency, Consistency, and Coverage on a 1-to-5-star scale. The reported outcome is that MRGSEM-Sum has much higher 5-star ratings for Consistency and Coverage than other methods and is comparable to large language models in Fluency [2507.23400].

## 6. Ablations, interpretation, and relation to prior paradigms

The ablation study isolates the contribution of each major component. Replacing the multi-relation graph with the approximate discourse graph from SummPip yields a substantial decline; on Multi-News, ROUGE-1 drops from \(43.21\) to \(38.96\). Replacing two-dimensional structural entropy clustering with spectral clustering and a preset cluster number also causes a marked decline; on Multi-News, ROUGE-1 drops from \(43.21\) to \(37.86\). Replacing position-aware compression with the generic compression method from Boudin and Morin (2013) produces a moderate drop on Multi-News and a very large drop on PubMed; on PubMed, ROUGE-1 drops from \(37.96\) to \(23.37\) [2507.23400].

These results identify the framework’s main technical dependencies. The multi-relation graph is the mechanism for richer sentence representation; two-dimensional structural entropy minimization is the mechanism for adaptive cluster discovery; and position-aware compression is the mechanism for salience-sensitive reduction within clusters. The large ablation loss on PubMed suggests that positional information is especially useful for long documents, which is explicitly stated in the framework [2507.23400].

The case study reported for the method emphasizes improved coverage and relevance. The summary generated by MRGSEM-Sum is described as closer to the reference than the baselines, capturing details such as “A 6.5-magnitude earthquake struck eureka at around 4:30 p.m. saturday,” “without power,” “around 30 seconds,” and “as of 5:30 p.m.” The comparison with SummPip is used to illustrate that the latter missed key facts and included irrelevant content [2507.23400].

In methodological terms, MRGSEM-Sum belongs to a graph-clustering lineage in unsupervised summarization, but it extends that lineage in two explicit ways: the graph is multi-relational rather than single-relational, and clustering is entropy-minimizing and adaptive rather than based on a preset number of groups. A plausible implication is that the framework treats redundancy reduction as a graph partitioning problem whose optimal granularity should be inferred from sentence interactions rather than fixed a priori.

## 7. Significance and scope

The framework’s reported contribution is an equivalence between richer sentence-relationship modeling and adaptive redundancy control in unsupervised multi-document summarization. Its three-stage pipeline can be summarized as follows: represent sentences with semantic and discourse signals in a multi-relational graph; discover sentence clusters by minimizing structural entropy; rank and compress selected clusters using sentence position and shortest-path compression; and concatenate the resulting compressed units into a final summary [2507.23400].

Within the reported experiments, MRGSEM-Sum is presented as effective on news summarization, long-document summarization, and non-news summarization, as represented by Multi-News, DUC-2004, PubMed, and WikiSum. The framework is also described as competitive with supervised systems and large language models while remaining unsupervised [2507.23400].

The paper does not provide a formal complexity analysis, but it does specify several implementation-relevant elements: sentence nodes are initialized with SBERT embeddings, semantic edges use TF-IDF cosine similarity, discourse edges follow Christensen et al. (2013), clustering is greedy and subset-based, subset size is increased when no merges are possible, and compression uses K-shortest paths with keyphrase scoring [2507.23400]. This suggests that the framework is best understood not as a monolithic model, but as a deterministic summarization pipeline whose effectiveness depends on the interaction among graph construction, entropy-based clustering, and compression.

In that sense, MRGSEM-Sum represents a structurally explicit approach to multi-document summarization. Rather than learning summary generation from paired examples, it organizes sentence relations into a graph, derives coherent groups by entropy minimization, and compresses those groups into summary units. Its reported empirical profile indicates that, for the evaluated benchmarks, this combination is sufficient to outperform prior unsupervised methods and to approach or match stronger supervised and large-model baselines in several settings [2507.23400].

Source: https://www.emergentmind.com/topics/mrgsem-sum