License: CC BY 4.0
arXiv:2403.09721v1 [cs.CL] 12 Mar 2024

A Semantic Mention Graph Augmented Model for Document-Level
Event Argument Extraction

Abstract

Document-level Event Argument Extraction (DEAE) aims to identify arguments and their specific roles from an unstructured document. The advanced approaches on DEAE utilize prompt-based methods to guide pre-trained language models (PLMs) in extracting arguments from input documents. They mainly concentrate on establishing relations between triggers and entity mentions within documents, leaving two unresolved problems: a) independent modeling of entity mentions; b) document-prompt isolation. To this end, we propose a semantic mention Graph Augmented Model (GAM) to address these two problems in this paper. Firstly, GAM constructs a semantic mention graph that captures relations within and between documents and prompts, encompassing co-existence, co-reference and co-type relations. Furthermore, we introduce an ensembled graph transformer module to address mentions and their three semantic relations effectively. Later, the graph-augmented encoder-decoder module incorporates the relation-specific graph into the input embedding of PLMs and optimizes the encoder section with topology information, enhancing the relations comprehensively. Extensive experiments on the RAMS and WikiEvents datasets demonstrate the effectiveness of our approach, surpassing baseline methods and achieving a new state-of-the-art performance.

Keywords: document-level event argument extraction, semantic mention graph, ensembled graph transformer, graph-augmented PLMs

\NAT@set@cites

A Semantic Mention Graph Augmented Model for Document-Level

Event Argument Extraction

Jian Zhang1, Changlin Yang1, Hai** Zhu1,2thanks:   Corresponding author., Qika Lin3, Fangzhi Xu1, Jun Liu1,2
1School of Computer Science and Technology, Xi’an Jiaotong University
2National Engineering Lab for Big Data Analytics, Xi’an, China
3National University of Singapore
{zhangjian062422,yangchanglin,Leo981106}@stu.xjtu.edu.cn,
{zhuhai**,liukeen}@xjtu.edu.cn, [email protected]

Abstract content

1.   Introduction

Document-level Event Extraction (DEE) stands as an essential technology in the construction of event graphs Xu et al. (2021) in the field of natural language processing (NLP) Hirschberg and Manning (2015); Hedderich et al. (2021); Bojun and Yuan (2023). Within the realm of DEE, Document-level Event Argument Extraction (DEAE) plays a crucial role in transforming unstructured text into a structured event representation, thereby enabling support for various downstream tasks like recommendation systems Roy and Dutta (2022), dialogue systems Ni et al. (2023) and some reasoning applications Wang et al. (2023a). DEAE strives to extract all arguments from the entity mentions in a document and assign them specific roles with a given trigger word representing the event type. As depicted in Fig. 1, the trigger word is set off and the task is to extract arguments of the predefined argument roles of the event type Conflict, e.g., attacker and explosiveDevice. In recent researches, significant strides have been made in DEAE thanks to the success of pre-trained language models (PLMs) and the prompt-tuning paradigm. An unfilled prompt p𝑝pitalic_p is initialized by argument placeholders based on the event ontologyLi et al. (2021). For example, the prompt for Conflict type in Fig. 1 is “Attacker arg1delimited-⟨⟩𝑎𝑟𝑔1\left\langle arg1\right\rangle⟨ italic_a italic_r italic_g 1 ⟩ exploded explosiveDevice arg2delimited-⟨⟩𝑎𝑟𝑔2\left\langle arg2\right\rangle⟨ italic_a italic_r italic_g 2 ⟩ using instrument arg3delimited-⟨⟩𝑎𝑟𝑔3\left\langle arg3\right\rangle⟨ italic_a italic_r italic_g 3 ⟩ to attack target arg4delimited-⟨⟩𝑎𝑟𝑔4\left\langle arg4\right\rangle⟨ italic_a italic_r italic_g 4 ⟩ at place arg5delimited-⟨⟩𝑎𝑟𝑔5\left\langle arg5\right\rangle⟨ italic_a italic_r italic_g 5 ⟩”. We define argument placeholders in the prompt as mask mentions, e.g., “attacker arg1delimited-⟨⟩𝑎𝑟𝑔1\left\langle arg1\right\rangle⟨ italic_a italic_r italic_g 1 ⟩”. The advanced approaches on DEAE utilize prompt-based methods to guide PLMs in extracting arguments from input documents. These studies on DEAE Lin et al. (2022a); Ma et al. (2022); Zeng et al. (2022) consider using different prompts to instruct PLMs, but there remains two unsolved problems: a) independent modeling of entity mentions; b) document-prompt isolation.

Refer to caption
Figure 1: An illustration of DEAE including the relevance among entity mentions with the same color labeled in the document and the co-type relation between the prompt and the document with the same color labeled.

On one hand, the relevance among entity mentions within the document is crucial but frequently overlooked. These entity mentions share a clear and significant connection that demands careful consideration in DEAE. This relevance is universal and invaluable, enabling DEAE to grasp the completeness of events and the correlation structure within documents. Taking co-reference relations as an example, arguments appear in various forms across different sentences within the document, creating co-reference instances. As shown in Fig. 1, the entity mention Aaron Driver appears multiple times in various forms of expressions (in green), such as a Canadian man and Harun Abdurahman, conveying an identical semantic meaning. The same phenomenon also exists in the co-existence relation among entity mentions, wherein co-existence relations denote the presence of entity mentions or masked mentions within the same sentence. Surprisingly, previous studies Du and Cardie (2020); Liu et al. (2021); Wei et al. (2021) often overlook this aspect, obscuring this vital correlation.

On the other hand, the document-prompt isolation is both valuable and underappreciated. Generally, arguments should only be extracted from entity mentions of the same type in the appropriate context. The co-type relation between documents and prompts provides essential guidance for accurately determining the positions of arguments. In other words, the co-type relation refers to the same type attributes between masked mentions and entity mentions. As demonstrated in Fig. 1, the argument role attacker in the prompt and the entity mention Aaron Driver are of the same type, namely, PERSON, indicating a co-type phenomenon. Previous studies Lin et al. (2022a); Ma et al. (2022); Zeng et al. (2022) ignore the document-prompt isolation problem, neglecting the co-type relation between documents and prompts when directly feeding them into PLMs.

To this end, we propose a semantic mention Graph Augmented Model (GAM) to alleviate the above two problems in this paper. Within the semantic mention graph, the semantics highlights the internal meaning of mentions and models this through the relations between mentions. To address the independent modeling of entity mentions, GAM considers the co-existence and co-reference relations among entity mentions. For the document-prompt isolation problem, the co-type relation between mask mentions and entity mentions are incorporated. Specifically, we first construct a semantic mention graph module to model these three semantic relations. It includes nodes representing entity mentions and mask mentions, connected by the aforementioned relations. For instance, nodes like Aaron Driver and Harun Abdurahman are connected by an edge labeled co-reference. Then, the three types of relations are depicted in three adjacent matrices, which are aggregated into a fused attention bias. The node sequence and fused attention bias are fed into the ensembled graph transformer for encoding. Lastly, we integrate node embeddings into initial embeddings as input and employ the fused topology information as attention bias to boost the PLMs. The main contributions of our work are as follows:

  • This research introduces a universal framework GAM111The code for the framework and the experimental data are stored in the repository: https://github.com/exoskeletonzj/gam., in which we construct a semantic mention graph incorporating three types of relations within and between the documents and the prompts initially. It is the first work in simultaneously addressing the independent modeling of entity mentions and document-prompt isolation as far as we know.

  • We propose an ensembled graph transformer module and a graph-augmented encoder-decoder module to handle the three types of relations. The former is utilized to handle the mentions and their three semantic relations, while the latter integrates the relation-specific graph into the input embedding and optimizes the encoder section with topology information to enhance the performance of PLMs.

  • Extensive experiments report that GAM achieves the new state-of-the-art performance on two benchmarks and further analysis validates the effectiveness of the different relations in semantic mention graph construction module, ensembled graph transformer module and graph-augmented encoder-decoder module in our model.

2.   Related Works

In this section, we introduce the current researches on DEAE, mainly consisting the sequence model and graph model for event extraction.

2.1.   DEAE Based on Sequence Model

From the early stages, semantic role labeling (SRL) has been utilized for extracting event arguments in various studies Yang et al. (2018); Zheng et al. (2019); Xu et al. (2021); Wang et al. (2023b). Some studies initially identify entities within the document and subsequently assign these entities specific argument roles.  Lin et al. (2020) began by identifying candidate entity mentions, followed by their assignment of specific roles through multi-label classification.

Later, certain studies have approached DEAE as a question-answering (QA) task. Methods Du and Cardie (2020); Liu et al. (2021) based on QA involve querying arguments by answering questions predefined through templates one by one, treating DEAE as a machine reading comprehension task.  Wei et al. (2021) toke into account the implicit interactions among roles by imposing constraints on each other within the template. However, this method tends to lead to error accumulation.

Refer to caption
Figure 2: The architecture of GAM. The left part is an input example of the document and a corresponding prompt. The graph construction module (a) constructs a semantic mention graph including co-existence, co-reference and co-type relations from entity mentions and mask mentions. The ensembled graph transformer module (b) handles the text features combined with three semantic relations. Finally, the graph-augmented encoder-decoder module (c) is utilized to conduct the feature fusion and predict the arguments.

Alongside the emergence of sequence-to-sequence models, specifically generative PLMs like BART Lewis et al. (2020) and T5 Raffel et al. (2020), generating all arguments in the sequence of target event has become possible. Some studies Li et al. (2021); Du et al. (2021); Lu et al. (2021) employ sequence-to-sequence models to extract arguments efficiently. Furthermore, accompanied by sequence-to-sequence models, prompt-tuning methods have also emerged. Recent works on DEAE Lin et al. (2022a); Ma et al. (2022); Zeng et al. (2022) explore the utilization of various prompts to guide PLMs in extracting arguments.

Up to now, these studies have proposed some solutions to DEAE tasks at different levels, but they rarely consider the entity mentions’ relevance directly. Under the latest paradigm of prompt-tuning with generative PLMs, they have not considered the explicit interaction between prompts and documents.

2.2.   DEAE Based on Graph Model

Graph model is a crucial kind of methods in information extraction, particularly in recent years, where it evaluates documents by constructing various graphs on DEAE tasks.  Zheng et al. (2019) first introduced an entity directed acyclic graph to efficiently address DEE.  Xu et al. (2021) implemented cross-entity and cross-sentence information exchange by constructing heterogeneous graphs.  Xu et al. (2022b) constructed abstract meaning representation Banarescu et al. (2013) semantic graphs to manage long distance dependencies between trigger and arguments across sentences.

However, these methods based on graph model simply transforms the document into graph structures and then utilize a classification model to assign specific roles to entity mentions. This paradigm make no use of PLMs and is inefficient in extracting all arguments for a given event simultaneously.

Limiting the consideration to just the sequence model or solely the graph model is incomplete. Our research motivation lies in the organic fusion of these two approaches, enabling our method to harness the strengths of both the latest sequence model and graph model.

3.    Methodology

This section begins by introducing the task formulation. We formulate DEAE task as a prompt-based span extraction problem. Given an input instance (X,t,e,R(e))𝑋𝑡𝑒superscript𝑅𝑒\left(X,t,e,R^{(e)}\right)( italic_X , italic_t , italic_e , italic_R start_POSTSUPERSCRIPT ( italic_e ) end_POSTSUPERSCRIPT ), where X={x1,x2,,xn}𝑋subscript𝑥1subscript𝑥2subscript𝑥𝑛X=\left\{x_{1},x_{2},...,x_{n}\right\}italic_X = { italic_x start_POSTSUBSCRIPT 1 end_POSTSUBSCRIPT , italic_x start_POSTSUBSCRIPT 2 end_POSTSUBSCRIPT , … , italic_x start_POSTSUBSCRIPT italic_n end_POSTSUBSCRIPT } denotes the document, tX𝑡𝑋t\subseteq Xitalic_t ⊆ italic_X denotes the trigger word, e𝑒eitalic_e denotes the event type and R(e)superscript𝑅𝑒R^{(e)}italic_R start_POSTSUPERSCRIPT ( italic_e ) end_POSTSUPERSCRIPT denotes the set of event-specific role types, we aim to extract a set of spans A𝐴Aitalic_A as the output. Each a(r)Asuperscript𝑎𝑟𝐴a^{(r)}\in Aitalic_a start_POSTSUPERSCRIPT ( italic_r ) end_POSTSUPERSCRIPT ∈ italic_A is a segmentation of X𝑋Xitalic_X and represents an argument corresponding to rR(e)𝑟superscript𝑅𝑒r\in R^{(e)}italic_r ∈ italic_R start_POSTSUPERSCRIPT ( italic_e ) end_POSTSUPERSCRIPT.

GAM leverages the relations among entity mentions and mask mentions to enhance PLMs for event argument extraction. Our model, depicted in Figure 2, comprises three key components: a) semantic mention graph construction from the context, consisting of co-existence, co-reference and co-type relations; b) ensembled graph transformer module for handling the dependencies and interactions in the graph; c) graph-augmented encoder-decoder module with PLMs for argument generation. Subsequent sections will outline our task formulation and elaborate on each component in detail.

3.1.   Semantic Mention Graph Construction

One crucial problem in extracting arguments from the document is mitigating the relevance among entity mentions, as well as the relevance between entity mentions and mask mentions, by capturing co-existence, co-reference and co-type information. Therefore, we introduce a graph construction module that adopts the semantic mention graph to provide a robust semantic structure. This approach facilitates interactions among entity mentions and mask mentions, offering logical meanings of the document from a linguistically-driven perspective to enhance language understanding.

Primarily, as demonstrated in the section 1, GAM generates an unfilled prompt p𝑝pitalic_p with argument placeholders. GAM initially concatenates the document X𝑋Xitalic_X with corresponding prompt p𝑝pitalic_p respectively to form the input sequences. In DEAE tasks, all extracted arguments should originate from entity mentions in the document. In the prompt-tuning paradigm, the extracted arguments are ultimately filled with placeholders, represented by mask mentions in the prompt. Consequently, we treat all entity mentions mask mentions as nodes in the semantic mention graph. In this module, GAM constructs the semantic mention graph from three perspectives by extracting three types of relations, including co-existence relation within entity mentions and mask mentions, co-reference relation between entity mentions and the co-type relation between mask mentions and entity mentions.

3.1.1.   Co-existence Relation

In the co-existence relation, GAM focuses on mentions within the same sentence. Intuitively, entity mentions in the same sentence represent all specific information and they are more likely to become arguments for the same event. Mask mentions also represent the same event. The aggregation of the co-existence relation within the mask mentions enables the subsequent sub-modules to better understand which argument roles are present in the current event, thus better reflecting the complete event ontology information in the graph. Therefore, we construct the co-existence relation to enhance the same sentence connection.

If nodes misubscript𝑚𝑖m_{i}italic_m start_POSTSUBSCRIPT italic_i end_POSTSUBSCRIPT and mjsubscript𝑚𝑗m_{j}italic_m start_POSTSUBSCRIPT italic_j end_POSTSUBSCRIPT are in the same sentence, we establish a direct connection between mentions misubscript𝑚𝑖m_{i}italic_m start_POSTSUBSCRIPT italic_i end_POSTSUBSCRIPT and mjsubscript𝑚𝑗m_{j}italic_m start_POSTSUBSCRIPT italic_j end_POSTSUBSCRIPT. These connections confined within a single sentence in the document or prompt. This relation is reflected in the adjacent matrix 𝐌exK×Ksubscript𝐌𝑒𝑥superscript𝐾𝐾\mathbf{M}_{ex}\in\mathbb{R}^{K\times K}bold_M start_POSTSUBSCRIPT italic_e italic_x end_POSTSUBSCRIPT ∈ blackboard_R start_POSTSUPERSCRIPT italic_K × italic_K end_POSTSUPERSCRIPT of the co-existence relation, where 𝐌ex[mi,mj]=1subscript𝐌𝑒𝑥subscript𝑚𝑖subscript𝑚𝑗1\mathbf{M}_{ex}[m_{i},m_{j}]=1bold_M start_POSTSUBSCRIPT italic_e italic_x end_POSTSUBSCRIPT [ italic_m start_POSTSUBSCRIPT italic_i end_POSTSUBSCRIPT , italic_m start_POSTSUBSCRIPT italic_j end_POSTSUBSCRIPT ] = 1, where K𝐾Kitalic_K is the total number of the nodes, i.e., the sum of the entity mentions and mask mentions.

Consider Fig. 1 for example, in the same sentence, entity mentions a homemade bomb and Aaron Driver have an edge connecting them. Similarly, mask mentions attacker arg1delimited-⟨⟩𝑎𝑟𝑔1\left\langle arg1\right\rangle⟨ italic_a italic_r italic_g 1 ⟩ and explosiveDevice arg2delimited-⟨⟩𝑎𝑟𝑔2\left\langle arg2\right\rangle⟨ italic_a italic_r italic_g 2 ⟩ also share a direct connection within the same sentence.

3.1.2.   Co-reference Relation

The co-reference relation aims to make better use of co-reference information between entity mentions. As introduced in the section 1, it is evident that the co-reference commonly exists in the entire document, showcasing a significant characteristic of co-reference. Hence, we focus on constructing a co-reference relation that captures co-reference relations among entity mentions throughout the entire document.

While, the number of the nodes K𝐾Kitalic_K is the same as the count of mentions with the co-existence relation. Following the extraction of co-reference relation using the tool fastcorefOtmazgin et al. (2022), we establish direct connection between co-reference entity mentions mksubscript𝑚𝑘m_{k}italic_m start_POSTSUBSCRIPT italic_k end_POSTSUBSCRIPT and mlsubscript𝑚𝑙m_{l}italic_m start_POSTSUBSCRIPT italic_l end_POSTSUBSCRIPT. Notably, these connections can occur within sentences or across sentences in the document. Such linkage is represented in the adjacent matrix 𝐌refK×Ksubscript𝐌𝑟𝑒𝑓superscript𝐾𝐾\mathbf{M}_{ref}\in\mathbb{R}^{K\times K}bold_M start_POSTSUBSCRIPT italic_r italic_e italic_f end_POSTSUBSCRIPT ∈ blackboard_R start_POSTSUPERSCRIPT italic_K × italic_K end_POSTSUPERSCRIPT of the co-reference relation as 𝐌ref[mk,ml]=1subscript𝐌𝑟𝑒𝑓subscript𝑚𝑘subscript𝑚𝑙1\mathbf{M}_{ref}[m_{k},m_{l}]=1bold_M start_POSTSUBSCRIPT italic_r italic_e italic_f end_POSTSUBSCRIPT [ italic_m start_POSTSUBSCRIPT italic_k end_POSTSUBSCRIPT , italic_m start_POSTSUBSCRIPT italic_l end_POSTSUBSCRIPT ] = 1.

Note that in Fig. 1, the co-reference entity mentions Aaron Driver, a Canadian man, Harun Abdurahman and the driver. There is a direct connection between each of them respectively.

3.1.3.   Co-type Relation

The co-type relation comprises entity mentions and mask mentions, detailing the relation between the two. Unlike previous methods, we consider the explicit connection between entity mentions and mask mentions in our approach.

A fundamental and logical assumption is that each mask mention should be filled with the same type of entity mentions. In other words, each mask mention should be associated with the same type of entity mentions. Consequently, we compose the third relation to establish co-type connections between mask mentions and entity mentions.

For consistency, the number of the nodes, denoted as K𝐾Kitalic_K, aligns with the count in the previous two relations. Directed connections can be established between mask mention mssubscript𝑚𝑠m_{s}italic_m start_POSTSUBSCRIPT italic_s end_POSTSUBSCRIPT and entity mention mtsubscript𝑚𝑡m_{t}italic_m start_POSTSUBSCRIPT italic_t end_POSTSUBSCRIPT of the same type. These connections link entity mentions in the document to mask mentions in the prompt. These relations are represented in the adjacent matrix 𝐌typK×Ksubscript𝐌𝑡𝑦𝑝superscript𝐾𝐾\mathbf{M}_{typ}\in\mathbb{R}^{K\times K}bold_M start_POSTSUBSCRIPT italic_t italic_y italic_p end_POSTSUBSCRIPT ∈ blackboard_R start_POSTSUPERSCRIPT italic_K × italic_K end_POSTSUPERSCRIPT of the co-type relation, where 𝐌typ[ms,mt]=1subscript𝐌𝑡𝑦𝑝subscript𝑚𝑠subscript𝑚𝑡1\mathbf{M}_{typ}[m_{s},m_{t}]=1bold_M start_POSTSUBSCRIPT italic_t italic_y italic_p end_POSTSUBSCRIPT [ italic_m start_POSTSUBSCRIPT italic_s end_POSTSUBSCRIPT , italic_m start_POSTSUBSCRIPT italic_t end_POSTSUBSCRIPT ] = 1.

As depicted in Fig. 1, the mask mentions attacker arg1delimited-⟨⟩𝑎𝑟𝑔1\left\langle arg1\right\rangle⟨ italic_a italic_r italic_g 1 ⟩ and entity mention Aaron Driver share the same type, GAM establishes a connection between the two.

3.2.   Ensembled Graph Transformer

Several studies  Zhang et al. (2020); Dwivedi and Bresson (2020) have highlighted drawbacks in graph neural network, including the problem of over-smoothing  Li et al. (2018). Consequently, we have incorporated the individual approach of graph transformer  Ying et al. (2021); Cai and Lam (2020). Following the extraction of the three types of relations, we utilize ensembled graph transformer structures Xu et al. (2022a) to handle them collectively.

Refer to caption
Figure 3: The illustration of graph transformer. The inputs are the node sequence as well as the node position and the outputs are omitted. The Co-ex, Co-ref and Co-typ semantic mention relations are fused as a attention bias.

The merged graph transformer is visually represented in Fig. 3 for a concise overview. First of all, We define text markers as 𝐭𝐠𝐫//𝐭𝐠𝐫\mathbf{\left\langle{tgr}\right\rangle/\left\langle/tgr\right\rangle}⟨ bold_tgr ⟩ / ⟨ / bold_tgr ⟩ and insert them into the document X𝑋Xitalic_X before and after the trigger word, respectively. It is essential to obtain the original feature embedding for each node. Given the concatenated sequence of the ithsuperscript𝑖𝑡i^{th}italic_i start_POSTSUPERSCRIPT italic_t italic_h end_POSTSUPERSCRIPT document:

xi~=[x1,x2,,𝐭𝐠𝐫,xtgr,/𝐭𝐠𝐫,,xn],\tilde{x_{i}}=[x_{1},x_{2},...,\left\langle\mathbf{tgr}\right\rangle,x_{tgr},% \left\langle\mathbf{/tgr}\right\rangle,...,x_{n}],over~ start_ARG italic_x start_POSTSUBSCRIPT italic_i end_POSTSUBSCRIPT end_ARG = [ italic_x start_POSTSUBSCRIPT 1 end_POSTSUBSCRIPT , italic_x start_POSTSUBSCRIPT 2 end_POSTSUBSCRIPT , … , ⟨ bold_tgr ⟩ , italic_x start_POSTSUBSCRIPT italic_t italic_g italic_r end_POSTSUBSCRIPT , ⟨ / bold_tgr ⟩ , … , italic_x start_POSTSUBSCRIPT italic_n end_POSTSUBSCRIPT ] , (1)

where xjsubscript𝑥𝑗x_{j}italic_x start_POSTSUBSCRIPT italic_j end_POSTSUBSCRIPT represents the jthsuperscript𝑗𝑡j^{th}italic_j start_POSTSUPERSCRIPT italic_t italic_h end_POSTSUPERSCRIPT token in the document, and tgr𝑡𝑔𝑟tgritalic_t italic_g italic_r denotes the index of the trigger word. The document xi~~subscript𝑥𝑖\tilde{x_{i}}over~ start_ARG italic_x start_POSTSUBSCRIPT italic_i end_POSTSUBSCRIPT end_ARG is then encapsulated, together with a prompt template p𝑝pitalic_p, using a function denoted as λ(,)𝜆\lambda(\cdot,\cdot)italic_λ ( ⋅ , ⋅ ):

Xp=λ(p,xi~)=[CLS]p[SEP]xi~[SEP],subscript𝑋𝑝𝜆𝑝~subscript𝑥𝑖delimited-[]𝐶𝐿𝑆𝑝delimited-[]𝑆𝐸𝑃~subscript𝑥𝑖delimited-[]𝑆𝐸𝑃X_{p}=\lambda(p,\tilde{x_{i}})=[CLS]p[SEP]\tilde{x_{i}}[SEP],italic_X start_POSTSUBSCRIPT italic_p end_POSTSUBSCRIPT = italic_λ ( italic_p , over~ start_ARG italic_x start_POSTSUBSCRIPT italic_i end_POSTSUBSCRIPT end_ARG ) = [ italic_C italic_L italic_S ] italic_p [ italic_S italic_E italic_P ] over~ start_ARG italic_x start_POSTSUBSCRIPT italic_i end_POSTSUBSCRIPT end_ARG [ italic_S italic_E italic_P ] , (2)

where [CLS]delimited-[]𝐶𝐿𝑆[CLS][ italic_C italic_L italic_S ] and [SEP]delimited-[]𝑆𝐸𝑃[SEP][ italic_S italic_E italic_P ] serve as separators in BART, Xpsubscript𝑋𝑝X_{p}italic_X start_POSTSUBSCRIPT italic_p end_POSTSUBSCRIPT denotes the concatenated input sequence of prompt p𝑝pitalic_p and the document xi~~subscript𝑥𝑖\tilde{x_{i}}over~ start_ARG italic_x start_POSTSUBSCRIPT italic_i end_POSTSUBSCRIPT end_ARG.

We utilize the BART model as the encoder for obtaining the token-level representation 𝐕tN×dsubscript𝐕𝑡superscript𝑁𝑑\mathbf{V}_{t}\in\mathbb{R}^{N\times d}bold_V start_POSTSUBSCRIPT italic_t end_POSTSUBSCRIPT ∈ blackboard_R start_POSTSUPERSCRIPT italic_N × italic_d end_POSTSUPERSCRIPT of Xpsubscript𝑋𝑝X_{p}italic_X start_POSTSUBSCRIPT italic_p end_POSTSUBSCRIPT, where N𝑁Nitalic_N is the token numbers of the input sequence and d𝑑ditalic_d is the dimension of the hidden state. Subsequently, we extract the order of entity mentions and mask mentions from 𝐕tsubscript𝐕𝑡\mathbf{V}_{t}bold_V start_POSTSUBSCRIPT italic_t end_POSTSUBSCRIPT. To obtain the embedding of node mksubscript𝑚𝑘m_{k}italic_m start_POSTSUBSCRIPT italic_k end_POSTSUBSCRIPT with the length L𝐿Litalic_L, we average the token embedding constituting the node:

𝐯k=1Li=1L𝐯i(k).subscript𝐯𝑘1𝐿superscriptsubscript𝑖1𝐿superscriptsubscript𝐯𝑖𝑘\mathbf{v}_{k}=\frac{1}{L}\sum\limits_{i=1}^{L}{\mathbf{v}_{i}^{(k)}}.bold_v start_POSTSUBSCRIPT italic_k end_POSTSUBSCRIPT = divide start_ARG 1 end_ARG start_ARG italic_L end_ARG ∑ start_POSTSUBSCRIPT italic_i = 1 end_POSTSUBSCRIPT start_POSTSUPERSCRIPT italic_L end_POSTSUPERSCRIPT bold_v start_POSTSUBSCRIPT italic_i end_POSTSUBSCRIPT start_POSTSUPERSCRIPT ( italic_k ) end_POSTSUPERSCRIPT . (3)

We integrate positional embedding and node embedding to maintain the consistency of node order within the document:

𝐕𝐢=𝐕𝐭𝐨𝐤𝐞𝐧+Position(𝐕𝐭𝐨𝐤𝐞𝐧),subscript𝐕𝐢subscript𝐕𝐭𝐨𝐤𝐞𝐧𝑃𝑜𝑠𝑖𝑡𝑖𝑜𝑛subscript𝐕𝐭𝐨𝐤𝐞𝐧\mathbf{V_{i}}=\mathbf{V_{token}}+Position(\mathbf{V_{token}}),bold_V start_POSTSUBSCRIPT bold_i end_POSTSUBSCRIPT = bold_V start_POSTSUBSCRIPT bold_token end_POSTSUBSCRIPT + italic_P italic_o italic_s italic_i italic_t italic_i italic_o italic_n ( bold_V start_POSTSUBSCRIPT bold_token end_POSTSUBSCRIPT ) , (4)

where 𝐕𝐭𝐨𝐤𝐞𝐧=[𝐯1;𝐯2;;𝐯K]subscript𝐕𝐭𝐨𝐤𝐞𝐧subscript𝐯1subscript𝐯2subscript𝐯𝐾\mathbf{V_{token}}=[\mathbf{v}_{1};\mathbf{v}_{2};...;\mathbf{v}_{K}]bold_V start_POSTSUBSCRIPT bold_token end_POSTSUBSCRIPT = [ bold_v start_POSTSUBSCRIPT 1 end_POSTSUBSCRIPT ; bold_v start_POSTSUBSCRIPT 2 end_POSTSUBSCRIPT ; … ; bold_v start_POSTSUBSCRIPT italic_K end_POSTSUBSCRIPT ] and 𝐕𝐭𝐨𝐤𝐞𝐧K×dsubscript𝐕𝐭𝐨𝐤𝐞𝐧superscript𝐾𝑑\mathbf{V_{token}}\in\mathbb{R}^{K\times d}bold_V start_POSTSUBSCRIPT bold_token end_POSTSUBSCRIPT ∈ blackboard_R start_POSTSUPERSCRIPT italic_K × italic_d end_POSTSUPERSCRIPT. The function Position()𝑃𝑜𝑠𝑖𝑡𝑖𝑜𝑛Position(\cdot)italic_P italic_o italic_s italic_i italic_t italic_i italic_o italic_n ( ⋅ ) generates a d-dimensional embedding for each node within the input sequence.

This module revolves around multi-head attention mechanism. Firstly, to incorporate graph information into the transformer architecture, we first obtain the fused topology information M𝑀Mitalic_M. Considering the attention bias 𝐌ex,𝐌refand𝐌typK×Ksubscript𝐌𝑒𝑥subscript𝐌𝑟𝑒𝑓𝑎𝑛𝑑subscript𝐌𝑡𝑦𝑝superscript𝐾𝐾\mathbf{M}_{ex},\;\mathbf{M}_{ref}\;and\;\mathbf{M}_{typ}\in\mathbb{R}^{K% \times K}bold_M start_POSTSUBSCRIPT italic_e italic_x end_POSTSUBSCRIPT , bold_M start_POSTSUBSCRIPT italic_r italic_e italic_f end_POSTSUBSCRIPT italic_a italic_n italic_d bold_M start_POSTSUBSCRIPT italic_t italic_y italic_p end_POSTSUBSCRIPT ∈ blackboard_R start_POSTSUPERSCRIPT italic_K × italic_K end_POSTSUPERSCRIPT, these three biases, although having the same dimension, may not contribute equally to the final prediction. To aggregate them effectively, GAM assigns proper hyper-parameters to balance their influence. The representation of M𝑀Mitalic_M is as follows:

𝐌=α𝐌ex+β𝐌ref+(1αβ)𝐌typ.𝐌𝛼subscript𝐌𝑒𝑥𝛽subscript𝐌𝑟𝑒𝑓1𝛼𝛽subscript𝐌𝑡𝑦𝑝\mathbf{M}=\alpha\mathbf{M}_{ex}+\beta\mathbf{M}_{ref}+(1-\alpha-\beta)\mathbf% {M}_{typ}.bold_M = italic_α bold_M start_POSTSUBSCRIPT italic_e italic_x end_POSTSUBSCRIPT + italic_β bold_M start_POSTSUBSCRIPT italic_r italic_e italic_f end_POSTSUBSCRIPT + ( 1 - italic_α - italic_β ) bold_M start_POSTSUBSCRIPT italic_t italic_y italic_p end_POSTSUBSCRIPT . (5)

Hence, GAM employs the obtained matrix M𝑀Mitalic_M as attention bias to adjust the self attention formula:

Att(Q,K,V)=softmax(QKTdk+𝐌)V.𝐴𝑡𝑡superscript𝑄𝐾𝑉softmax𝑄superscript𝐾Tsubscript𝑑𝑘𝐌𝑉Att(Q,K,V)^{{}^{\prime}}={\rm softmax}(\frac{QK^{\rm T}}{\sqrt{d_{k}}}+\mathbf% {M})\cdot V.italic_A italic_t italic_t ( italic_Q , italic_K , italic_V ) start_POSTSUPERSCRIPT start_FLOATSUPERSCRIPT ′ end_FLOATSUPERSCRIPT end_POSTSUPERSCRIPT = roman_softmax ( divide start_ARG italic_Q italic_K start_POSTSUPERSCRIPT roman_T end_POSTSUPERSCRIPT end_ARG start_ARG square-root start_ARG italic_d start_POSTSUBSCRIPT italic_k end_POSTSUBSCRIPT end_ARG end_ARG + bold_M ) ⋅ italic_V . (6)

where matrices Q,K,VK×dk𝑄𝐾𝑉superscript𝐾subscript𝑑𝑘Q,K,V\in\mathbb{R}^{K\times d_{k}}italic_Q , italic_K , italic_V ∈ blackboard_R start_POSTSUPERSCRIPT italic_K × italic_d start_POSTSUBSCRIPT italic_k end_POSTSUBSCRIPT end_POSTSUPERSCRIPT is the projection of 𝐕𝐢subscript𝐕𝐢\mathbf{V_{i}}bold_V start_POSTSUBSCRIPT bold_i end_POSTSUBSCRIPT by projection matrices WQ,WK,WVd×dksuperscriptWQsuperscriptWKsuperscriptWVsuperscript𝑑subscript𝑑𝑘{\rm W^{Q},W^{K},W^{V}}\in\mathbb{R}^{d\times d_{k}}roman_W start_POSTSUPERSCRIPT roman_Q end_POSTSUPERSCRIPT , roman_W start_POSTSUPERSCRIPT roman_K end_POSTSUPERSCRIPT , roman_W start_POSTSUPERSCRIPT roman_V end_POSTSUPERSCRIPT ∈ blackboard_R start_POSTSUPERSCRIPT italic_d × italic_d start_POSTSUBSCRIPT italic_k end_POSTSUBSCRIPT end_POSTSUPERSCRIPT.

To learn diverse feature representations and improve the adaptability of the graph, we implement multi-head attention mechanism with a specified number of heads, denoted as MH𝑀𝐻MHitalic_M italic_H:

MH(Q,K,V)=[Head1;;HeadH]WO,𝑀𝐻𝑄𝐾𝑉𝐻𝑒𝑎subscript𝑑1𝐻𝑒𝑎subscript𝑑𝐻superscriptWOMH(Q,K,V)=[Head_{1};...;Head_{H}]\cdot{\rm W^{O}},italic_M italic_H ( italic_Q , italic_K , italic_V ) = [ italic_H italic_e italic_a italic_d start_POSTSUBSCRIPT 1 end_POSTSUBSCRIPT ; … ; italic_H italic_e italic_a italic_d start_POSTSUBSCRIPT italic_H end_POSTSUBSCRIPT ] ⋅ roman_W start_POSTSUPERSCRIPT roman_O end_POSTSUPERSCRIPT , (7)

where WO(H*dk)×dksuperscriptWOsuperscript𝐻subscript𝑑𝑘subscript𝑑𝑘{\rm W^{O}}\in\mathbb{R}^{(H*d_{k})\times d_{k}}roman_W start_POSTSUPERSCRIPT roman_O end_POSTSUPERSCRIPT ∈ blackboard_R start_POSTSUPERSCRIPT ( italic_H * italic_d start_POSTSUBSCRIPT italic_k end_POSTSUBSCRIPT ) × italic_d start_POSTSUBSCRIPT italic_k end_POSTSUBSCRIPT end_POSTSUPERSCRIPT is the linear projection matrix, Headi=Atti(Q,K,V)𝐻𝑒𝑎subscript𝑑𝑖𝐴𝑡subscript𝑡𝑖superscript𝑄𝐾𝑉Head_{i}=Att_{i}(Q,K,V)^{{}^{\prime}}italic_H italic_e italic_a italic_d start_POSTSUBSCRIPT italic_i end_POSTSUBSCRIPT = italic_A italic_t italic_t start_POSTSUBSCRIPT italic_i end_POSTSUBSCRIPT ( italic_Q , italic_K , italic_V ) start_POSTSUPERSCRIPT start_FLOATSUPERSCRIPT ′ end_FLOATSUPERSCRIPT end_POSTSUPERSCRIPT.

To better capture the diversity and complexity of the attention module, we fuse the last two hidden layers as the updated node features:

𝐕men=0.5𝐕(L1)+0.5𝐕(L),subscript𝐕𝑚𝑒𝑛0.5superscript𝐕𝐿10.5superscript𝐕𝐿\mathbf{V}_{men}=0.5\cdot\mathbf{V}^{(L-1)}+0.5\cdot\mathbf{V}^{(L)},bold_V start_POSTSUBSCRIPT italic_m italic_e italic_n end_POSTSUBSCRIPT = 0.5 ⋅ bold_V start_POSTSUPERSCRIPT ( italic_L - 1 ) end_POSTSUPERSCRIPT + 0.5 ⋅ bold_V start_POSTSUPERSCRIPT ( italic_L ) end_POSTSUPERSCRIPT , (8)

where 𝐕menK×dsubscript𝐕𝑚𝑒𝑛superscript𝐾𝑑\mathbf{V}_{men}\in\mathbb{R}^{K\times d}bold_V start_POSTSUBSCRIPT italic_m italic_e italic_n end_POSTSUBSCRIPT ∈ blackboard_R start_POSTSUPERSCRIPT italic_K × italic_d end_POSTSUPERSCRIPT, and 𝐕(L1),𝐕(L)K×dsuperscript𝐕𝐿1superscript𝐕𝐿superscript𝐾𝑑\mathbf{V}^{(L-1)},\;\mathbf{V}^{(L)}\in\mathbb{R}^{K\times d}bold_V start_POSTSUPERSCRIPT ( italic_L - 1 ) end_POSTSUPERSCRIPT , bold_V start_POSTSUPERSCRIPT ( italic_L ) end_POSTSUPERSCRIPT ∈ blackboard_R start_POSTSUPERSCRIPT italic_K × italic_d end_POSTSUPERSCRIPT denote the hidden states of the last two layers.

3.3.   Graph-Augmented Encoder-Decoder Model

As the previous methods on DEAE  Lin et al. (2022a); Ma et al. (2022); Zeng et al. (2022) adopt, we choose and expand pre-trained language model BART as our encoder-decoder model.

DataSet Split Doc Event Argument
RAMS Train 3,194 7,394 17,026
Dev 399 924 2,188
Test 400 871 2,023
WikiEvents Train 206 3,241 4,542
Dev 20 345 428
Test 20 365 556
Table 1: Data statistics of RAMS and WikiEvents.

We have obtained the token-level representation 𝐕tsubscript𝐕𝑡\mathbf{V}_{t}bold_V start_POSTSUBSCRIPT italic_t end_POSTSUBSCRIPT and the updated mention node representation 𝐕mensubscript𝐕𝑚𝑒𝑛\mathbf{V}_{men}bold_V start_POSTSUBSCRIPT italic_m italic_e italic_n end_POSTSUBSCRIPT. To maintain dimension consistency, we broadcast the feature of each node to all the tokens it encompasses. The transformed features are denoted as 𝐕tsubscript𝐕𝑡\mathbf{V}_{t}bold_V start_POSTSUBSCRIPT italic_t end_POSTSUBSCRIPT, 𝐕menN×dsuperscriptsubscript𝐕𝑚𝑒𝑛superscript𝑁𝑑\mathbf{V}_{men}^{{}^{\prime}}\in\mathbb{R}^{N\times d}bold_V start_POSTSUBSCRIPT italic_m italic_e italic_n end_POSTSUBSCRIPT start_POSTSUPERSCRIPT start_FLOATSUPERSCRIPT ′ end_FLOATSUPERSCRIPT end_POSTSUPERSCRIPT ∈ blackboard_R start_POSTSUPERSCRIPT italic_N × italic_d end_POSTSUPERSCRIPT.

To enhance the ability to perceive semantic mentions, we integrate node embedding into the initial embedding. GAM then configures a proper weight to balance these two features. The resulting fused input embedding 𝐕𝐕\mathbf{V}bold_V is as follows:

𝐕=LN(𝐕t+λ𝐕men),𝐕𝐿𝑁subscript𝐕𝑡𝜆superscriptsubscript𝐕𝑚𝑒𝑛\mathbf{V}=LN(\mathbf{V}_{t}+\lambda\cdot\mathbf{V}_{men}^{{}^{\prime}}),bold_V = italic_L italic_N ( bold_V start_POSTSUBSCRIPT italic_t end_POSTSUBSCRIPT + italic_λ ⋅ bold_V start_POSTSUBSCRIPT italic_m italic_e italic_n end_POSTSUBSCRIPT start_POSTSUPERSCRIPT start_FLOATSUPERSCRIPT ′ end_FLOATSUPERSCRIPT end_POSTSUPERSCRIPT ) , (9)

where LN()𝐿𝑁LN(\cdot)italic_L italic_N ( ⋅ ) denotes the layer normalization operation. Then 𝐕𝐕\mathbf{V}bold_V as the input embedding is fed into BART.

To further enhance the effectiveness, GAM incorporates a graph-augmented encoder section of BART. GAM employs the fused topology information 𝐌𝐌\mathbf{M}bold_M as attention bias, similar to the graph transformer module. The representation of the self attention formula is adjusted as Eq. 6.

For each instance, the graph-augmented BART module can be employed to generate a completed template, replacing the placeholder tokens with the extracted arguments. The model parameter θ𝜃\thetaitalic_θ is trained by minimizing the argument extraction loss, which is the conditional probability computed over all instances:

=logpθ(y|X,t,p).subscriptsubscript𝑝𝜃conditional𝑦𝑋𝑡𝑝\mathcal{L}=-\sum\log_{p_{\theta}}{\left(y|X,t,p\right)}.caligraphic_L = - ∑ roman_log start_POSTSUBSCRIPT italic_p start_POSTSUBSCRIPT italic_θ end_POSTSUBSCRIPT end_POSTSUBSCRIPT ( italic_y | italic_X , italic_t , italic_p ) . (10)

4.   Experiments

4.1.   Datasets and baselines

We conduct comprehensive experiments on two widely recognized DEAE benchmark datasets: RAMS Ebner et al. (2020) and WikiEvents Li et al. (2021), which have been extensively utilized in previous studies  Lin et al. (2022a); Ma et al. (2022); Zeng et al. (2022). As shown in table 1, the RAMS dataset comprises 3,993 paragraphs, annotated with 139 event types and 65 argument roles. The WikiEvents dataset consists of 246 documents, annotated with 50 event types and 59 argument roles.

Model Argument Identification Argument Classification
Head Match Coref Match Head Match Coref Match
P R F1 P R F1 P R F1 P R F1
BERT-CRF 72.66 53.82 61.84 74.58 55.24 63.47 61.87 45.83 52.65 63.79 47.25 54.29
ONEIE 68.16 56.66 61.88 70.09 58.26 63.63 63.46 52.75 57.61 65.17 54.17 59.17
BART-Gen 70.43 71.94 71.18 71.83 73.36 72.58 65.39 66.79 66.08 66.78 68.21 67.49
𝐄𝐀𝟐𝐄superscript𝐄𝐀2𝐄\mathrm{\mathbf{EA^{2}E}}bold_EA start_POSTSUPERSCRIPT bold_2 end_POSTSUPERSCRIPT bold_E 76.51 72.82 74.62 77.69 73.95 75.77 70.35 66.96 68.61 71.47 68.03 69.7
GAM 79.05 72.97 75.89 80.36 74.08 77.09 73.47 67.07 70.12 74.59 68.96 71.66
GAM w/o co-ex 78.34 71.66 74.85 80.28 73.09 76.52 72.86 66.80 69.70 73.69 67.29 70.34
GAM w/o co-ref 75.63 70.24 72.84 76.07 70.72 73.30 69.85 64.05 66.82 70.53 64.74 67.51
GAM w/o co-typ 76.44 70.95 73.59 78.62 72.34 75.35 71.96 67.16 69.48 72.81 66.46 69.49
GAM w/o G.T. 78.46 70.52 74.28 79.45 71.4 75.21 71.34 64.12 67.54 72.33 65.01 68.48
GAM w/o N.E. 77.08 72.29 74.61 78.03 73.18 75.53 70.64 66.25 68.38 71.59 67.14 69.29
GAM w/o bias 76.85 70.16 73.35 77.82 71.05 74.28 70.23 64.12 67.04 71.21 65.01 67.97
Table 2: Overall performance on WikiEvents dataset. In the results, the best-performing model is highlighted, and the second best is underlined. G.T.: graph transformer module. N.E.: node embedding module. bias: attention bias for graph transformer and BART encoder module.

We deem an argument span as correctly identified when its offsets align with any of the reference arguments of the current event (i.e., Argument Identification), and as correctly classified when its role matches (i.e., Argument Classification). Furthermore, we evaluate the argument extraction performance using Head Match F1 and Coref Match F1 metrics on the WikiEvents dataset, where Head Match indicates alignment with the head of the span, and Coref Match indicates an exact match of the span with all co-reference spans. In the case of the latter, full credit is assigned when the extracted argument is coreferential with the gold-standard argument.

We compare GAM with several state-of-the-art models in two categories: (1) FEAE Wei et al. (2021), EEQA Du and Cardie (2020), BART-Gen Li et al. (2021), PAIE Ma et al. (2022) on RAMS dataset; (2) BERT-CRF Shi and Lin (2019), ONEIE Lin et al. (2020), BART-Gen Li et al. (2021), 𝐄𝐀𝟐𝐄superscript𝐄𝐀2𝐄\mathrm{\mathbf{EA^{2}E}}bold_EA start_POSTSUPERSCRIPT bold_2 end_POSTSUPERSCRIPT bold_E Zeng et al. (2022) on WikiEvents dataset. Among them, BERT-CRF is a semantic role labeling method, ONEIE is a graph-based method, FEAE and EEQA utilize QA patterns, whereas BART-Gen, PAIE, and 𝐄𝐀𝟐𝐄superscript𝐄𝐀2𝐄\mathrm{\mathbf{EA^{2}E}}bold_EA start_POSTSUPERSCRIPT bold_2 end_POSTSUPERSCRIPT bold_E employ different prompts directly.

4.2.   Implementation Details

Model Argument Identification Argument Classification
FEAE 53.5 47.4
EEQA 48.7 46.7
BART-Gen 51.2 47.1
EEQA-BART 51.7 48.7
PAIE 55.6 53.0
GAM 56.83 54.20
GAM w/o co-ex 54.52 52.19
GAM w/o co-ref 52.86 50.65
GAM w/o co-typ 53.16 51.82
GAM w/o G.T. 54.24 53.02
GAM w/o N.E. 53.64 51.17
GAM w/o bias 53.94 52.45
Table 3: Overall performance on RAMS dataset.

GAM extends upon the BART-style encoder-decoder transformer structure. Each model, including baselines and GAM, is trained for 4 epochs with a batch size of 4, utilizing NVIDIA-V100 with 32GB DRAM. The model is optimized using the Adam optimizer with a learning rate of 3e-5, α=0.3𝛼0.3\alpha=0.3italic_α = 0.3, β=0.4𝛽0.4\beta=0.4italic_β = 0.4 and λ=0.015𝜆0.015\lambda=0.015italic_λ = 0.015. These hyper-parameters are meticulously selected through grid search, based on model’s performance on the development set.222The learning rate is chosen in {3e-5, 5e-5}, α𝛼\alphaitalic_α and β𝛽\betaitalic_β is chosen from {0.1, 0.2, 0.3, 0.4, 0.6, 0.7, 0.8}, and λ𝜆\lambdaitalic_λ is chosen from {0.01, 0.015, 0.02, 0.03, 0.04, 0.05}.

4.3.   Comparison Results

Tables 2 and 3 demonstrate the superior performance of our proposed GAM compared to strong baseline methods across various datasets and evaluation metrics. Specifically, on the WikiEvents dataset, our model achieves a notable 1.32% improvement in absolute argument identification F1 and a 1.96% improvement in argument classification F1. Similarly, on the RAMS dataset, GAM exhibits the improvements with a 1.23% increase in argument identification and 1.20% in argument classification F1 scores. These results underscore the outstanding performance of our proposed method.

Furthermore, our graph-augmented encoder-decoder model outperforms graph-based methods and directly prompt-tuning encoder-decoder methods, including ONEIE and BART-Gen. From the experimental results shown in Tables 2 and 3, we can conclude that: (1) Compared to graph-based methods, GAM can utilize rich information from the graph to enhance the initial embedding and the encoder part of encoder-decoder model. (2) Compared to directly prompt-tuning encoder-decoder methods, These results emphasize the effectiveness of our semantic mention graphs in leveraging the BART architecture, enhancing semantic interactions within documents, and bridging the gap between documents and prompts.

4.4.   Ablation Studies

Refer to caption
Figure 4: The illustration of ablation study on WikiEvents dataset. The model performances under different λ𝜆\lambdaitalic_λ.
Refer to caption
Figure 5: The different performance on RAMS dataset under different λ𝜆\lambdaitalic_λ.
Refer to caption
Figure 6: The illustration of an DEAE case. This case mainly showcases the construction of semantic mention graph and compares the extraction results between BART-Gen and GAM.

In this section, we assess the effectiveness of our primary components by systematically removing each module one at a time. The components are as following: (1) three types of relations. Here, we analyze the gain brought by these relations by considering the removal of one of the three; (2) graph transformer. We exclude the graph transformer, thereby disregarding the updating of node representation in the semantic mention graph; (3) node embedding. We eliminate the node embedding component from the input of the BART encoder-decoder module, retaining only the initial embedding; (4) attention bias. We withhold the attention bias from both the graph transformer and the BART encoder module.

The results of ablation studies are summarized in Table 2 and Table 3. We can observe that all of the three types of relations, graph transformer, node embedding and attention bias modules can help boost the performance of DEAE.

Regarding the module of the semantic mention graph construction, we remove one of the three relations at a time to observe the decrease it causes. According to the ablation results, the co-reference relation contributes the most among the three types of relations, followed by co-type relation and co-existence relation. It is evident that the co-reference relation significantly reduces ambiguity, enhances the accuracy of DEAE, and provides a more comprehensive, consistent, and precise semantic representation. The decrease brought by the co-type relation follows closely behind because, ideally, the correctly extracted arguments should all come from corresponding co-type entity mentions in the original document.

Moreover, the absence of the graph transformer module leads to a obvious drop in performance, with F1 score decreasing by more than 2 points on both RAMS and WikiEvents datasets. This clearly emphasizes the crucial role of the graph transformer in updating nodes. Similar patterns are observed in other modules, underscoring the effectiveness of each component in enhancing argument extraction. We are pleasantly surprised to discover that withholding attention bias from both the graph transformer and the BART encoder module resulted in the largest decrease, excluding the semantic mention graph construction module. This is because, in the transformer architecture, the attention mechanism tends to allocate more attention to the emphasized parts.

In particular, Drop** out all of the above modules—essentially eliminating all components related to the graph—results in the variant model regressing to BART-Gen. BART-Gen is a standard model that relies solely on prompts and PLMs. Upon reviewing the results in Table 2 and Table 3, GAM outperforms BART-Gen by 4.17% on the WikiEvents dataset and 5.5% on the RAMS dataset. This comparison strongly emphasizes the significant performance enhancement achieved by the graph-enhanced model over BART.

4.5.   Supplementary Analysis

Throughout the experiments, hyper-parameters are employed in many places. Due to space constraints, we focus on analyzing one specific parameter—namely, the node embedding weight λ𝜆\lambdaitalic_λ used to consolidate the initial embedding fed into BART. As shown in Eq. 9, 𝐕tsubscript𝐕𝑡\mathbf{V}_{t}bold_V start_POSTSUBSCRIPT italic_t end_POSTSUBSCRIPT refers to the initial embedding of the document, while 𝐕mensuperscriptsubscript𝐕𝑚𝑒𝑛\mathbf{V}_{men}^{{}^{\prime}}bold_V start_POSTSUBSCRIPT italic_m italic_e italic_n end_POSTSUBSCRIPT start_POSTSUPERSCRIPT start_FLOATSUPERSCRIPT ′ end_FLOATSUPERSCRIPT end_POSTSUPERSCRIPT refers to the updated node embedding, reflecting the GAM model’s modeling of nodes in the semantic mention graph, addressing the independent modeling of entity mentions and document-prompt isolation. λ𝜆\lambdaitalic_λ is the balanced weight of 𝐕mensuperscriptsubscript𝐕𝑚𝑒𝑛\mathbf{V}_{men}^{{}^{\prime}}bold_V start_POSTSUBSCRIPT italic_m italic_e italic_n end_POSTSUBSCRIPT start_POSTSUPERSCRIPT start_FLOATSUPERSCRIPT ′ end_FLOATSUPERSCRIPT end_POSTSUPERSCRIPT, enhancing the input of the graph-augmented encoder-decoder module. The results corresponding to different values of λ𝜆\lambdaitalic_λ are presented in Fig. 4 and Fig. 5.

The results demonstrate that the optimal performance is achieved when λ𝜆\lambdaitalic_λ is set to 0.015. A decrease in the hyper-parameter λ𝜆\lambdaitalic_λ implies less consideration of node features and underutilization of semantic information. Conversely, as λ𝜆\lambdaitalic_λ increases, additional semantic information is incorporated into the initial embedding. However, this might be detrimental to subsequent decoder stages because the encoder-decoder architecture heavily depends on the transmission of initial embedding within this context.

5.   Case Study

Fig. 6 presents a representative example from the WikiEvents dataset, illustrating the process of graph-augmented DEAE. Initially, the graph construction module comprises nodes representing all entity mentions and mask mentions, along with edges depicting three semantic mention relations. In this instance, nodes are represented as circles in green and gray. GAM generates the semantic mention graph based on these relations. The connections efficiently capture the co-existence, co-reference and co-type information within and between the document and the prompt, highlighting GAM’s interpretability capability.

Finally, GAM accurately extracts arguments corresponding to their respective roles using an unfilled prompt p𝑝pitalic_p. As depicted in Fig. 6, the output of BART-Gen differs from that of GAM. When compared to the gold standard, BART-Gen incorrectly identifies the argument role Giver due to its failure in considering the three types of relations within and between the document and the prompt. Conversely, GAM accurately aligns with the gold standard.

While effective, GAM can inadvertently propagate errors during graph construction. Furthermore, a scenario might arise where an argument role lacks a corresponding argument in the document. In such cases, the co-type relation may still assign edges of the same type of entity mention to these mask mention nodes.

6.   Conclusion

We propose an end-to-end framework named semantic mention Graph Augmented Model to address the independent modeling of entity mentions and the document-prompt isolation problems. Firstly, GAM constructs a semantic mention graph by creating three types of relations: co-existence, co-reference and co-type relations within and between mask mentions and entity mentions. Secondly, The ensembled graph transformer module is utilized to handle the mentions and their three semantic relations. Lastly, the graph-augmented encoder-decoder module integrates the relation-specific graph into the input embedding and optimize the encoder section with topology information to enhance the performance of PLMs. Extensive experiments report that GAM achieves the new state-of-the-art performance on two benchmarks.

In the future, we plan to delve into DEAE within the framework of Large Language Models (LLM) Xu et al. (2023). Due to the ambiguity Liu et al. (2023) and polysemy Laba et al. (2023) inherent in entity mentions within documents, LLM faces limitations in DEAE. We aim to leverage the semantic mention graph to provide guidance to LLM in DEAE. Furthermore, we will strive to integrate prior knowledge and employ logical reasoning Lin et al. (2022b, 2023) to enhance event extraction with greater precision and interpretability.

Acknowledgement

This work was supported by National Key Research and Development Program of China (2022YFC3303600), National Natural Science Foundation of China (62137002, 62293553, 62176207, 62192781, 62277042 and 62250009), "LENOVO-XJTU" Intelligent Industry Joint Laboratory Project, Natural Science Basic Research Program of Shaanxi (2023-JC-YB-593), the Youth Innovation Team of Shaanxi Universities, XJTU Teaching Reform Research Project "Acquisition Learning Based on Knowledge Forest", Shaanxi Undergraduate and Higher Education Teaching Reform Research Program(Program No.23BY195).

Bibliographical References

\c@NAT@ctr

  • Banarescu et al. (2013) Laura Banarescu, Claire Bonial, Shu Cai, Madalina Georgescu, Kira Griffitt, Ulf Hermjakob, Kevin Knight, Philipp Koehn, Martha Palmer, and Nathan Schneider. 2013. Abstract meaning representation for sembanking. In Proceedings of the 7th linguistic annotation workshop and interoperability with discourse, pages 178–186.
  • Bojun and Yuan (2023) Huang Bojun and Fei Yuan. 2023. Utility-probability duality of neural networks. arXiv preprint arXiv:2305.14859.
  • Cai and Lam (2020) Deng Cai and Wai Lam. 2020. Graph transformer for graph-to-sequence learning. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 34, pages 7464–7471.
  • Du and Cardie (2020) Xinya Du and Claire Cardie. 2020. Event extraction by answering (almost) natural questions. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 671–683.
  • Du et al. (2021) Xinya Du, Alexander M Rush, and Claire Cardie. 2021. Template filling with generative transformers. In Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, pages 909–914.
  • Dwivedi and Bresson (2020) Vijay Prakash Dwivedi and Xavier Bresson. 2020. A generalization of transformer networks to graphs. arXiv preprint arXiv:2012.09699.
  • Ebner et al. (2020) Seth Ebner, Patrick Xia, Ryan Culkin, Kyle Rawlins, and Benjamin Van Durme. 2020. Multi-sentence argument linking. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, pages 8057–8077.
  • Hedderich et al. (2021) Michael A. Hedderich, Lukas Lange, Heike Adel, Jannik Strötgen, and Dietrich Klakow. 2021. A survey on recent approaches for natural language processing in low-resource scenarios. In Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, pages 2545–2568, Online. Association for Computational Linguistics.
  • Hirschberg and Manning (2015) Julia Hirschberg and Christopher D Manning. 2015. Advances in natural language processing. Science, 349(6245):261–266.
  • Laba et al. (2023) Yurii Laba, Volodymyr Mudryi, Dmytro Chaplynskyi, Mariana Romanyshyn, and Oles Dobosevych. 2023. Contextual embeddings for ukrainian: A large language model approach to word sense disambiguation. In Proceedings of the Second Ukrainian Natural Language Processing Workshop (UNLP), pages 11–19.
  • Lewis et al. (2020) Mike Lewis, Yinhan Liu, Naman Goyal, Marjan Ghazvininejad, Abdelrahman Mohamed, Omer Levy, Veselin Stoyanov, and Luke Zettlemoyer. 2020. Bart: Denoising sequence-to-sequence pre-training for natural language generation, translation, and comprehension. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, pages 7871–7880.
  • Li et al. (2018) Qimai Li, Zhichao Han, and Xiao-Ming Wu. 2018. Deeper insights into graph convolutional networks for semi-supervised learning. In Thirty-Second AAAI conference on artificial intelligence.
  • Li et al. (2021) Sha Li, Heng Ji, and Jiawei Han. 2021. Document-level event argument extraction by conditional generation. In Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies,{normal-{\{{NAACL-HLT}normal-}\}} 2021, volume 2021.
  • Lin et al. (2022a) Jiaju Lin, Qin Chen, Jie Zhou, Jian **, and Liang He. 2022a. CUP: curriculum learning based prompt tuning for implicit event argument extraction. In Proceedings of the Thirty-First International Joint Conference on Artificial Intelligence, IJCAI 2022, Vienna, Austria, 23-29 July 2022, pages 4245–4251. ijcai.org.
  • Lin et al. (2023) Qika Lin, Jun Liu, Rui Mao, Fangzhi Xu, and Erik Cambria. 2023. TECHS: temporal logical graph networks for explainable extrapolation reasoning. In Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (ACL), pages 1281–1293.
  • Lin et al. (2022b) Qika Lin, Jun Liu, Fangzhi Xu, Yudai Pan, Yifan Zhu, Lingling Zhang, and Tianzhe Zhao. 2022b. Incorporating context graph with logical reasoning for inductive relation prediction. In The 45th International ACM SIGIR Conference on Research and Development in Information Retrieval, pages 893–903. ACM.
  • Lin et al. (2020) Ying Lin, Heng Ji, Fei Huang, and Lingfei Wu. 2020. A joint neural model for information extraction with global features. In Proceedings of the 58th annual meeting of the association for computational linguistics, pages 7999–8009.
  • Liu et al. (2023) Alisa Liu, Zhaofeng Wu, Julian Michael, Alane Suhr, Peter West, Alexander Koller, Swabha Swayamdipta, Noah A Smith, and Ye** Choi. 2023. We’re afraid language models aren’t modeling ambiguity. arXiv preprint arXiv:2304.14399.
  • Liu et al. (2021) Jian Liu, Yufeng Chen, and **an Xu. 2021. Machine reading comprehension as data augmentation: A case study on implicit event argument extraction. In Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing, pages 2716–2725.
  • Lu et al. (2021) Yaojie Lu, Hongyu Lin, ** Xu, Xianpei Han, Jialong Tang, Annan Li, Le Sun, Meng Liao, and Shaoyi Chen. 2021. Text2event: Controllable sequence-to-structure generation for end-to-end event extraction. In Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing (Volume 1: Long Papers), pages 2795–2806.
  • Ma et al. (2022) Yubo Ma, Zehao Wang, Yixin Cao, Mukai Li, Meiqi Chen, Kun Wang, and **g Shao. 2022. Prompt for extraction? paie: Prompting argument interaction for event argument extraction. In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 6759–6774. Association for Computational Linguistics.
  • Ni et al. (2023) **jie Ni, Tom Young, Vlad Pandelea, Fuzhao Xue, and Erik Cambria. 2023. Recent advances in deep learning based dialogue systems: A systematic survey. Artificial intelligence review, 56(4):3055–3155.
  • Otmazgin et al. (2022) Shon Otmazgin, Arie Cattan, and Yoav Goldberg. 2022. F-coref: Fast, accurate and easy to use coreference resolution. In Proceedings of the 2nd Conference of the Asia-Pacific Chapter of the Association for Computational Linguistics and the 12th International Joint Conference on Natural Language Processing: System Demonstrations, pages 48–56.
  • Raffel et al. (2020) Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J Liu. 2020. Exploring the limits of transfer learning with a unified text-to-text transformer. The Journal of Machine Learning Research, 21(1):5485–5551.
  • Roy and Dutta (2022) Deepjyoti Roy and Mala Dutta. 2022. A systematic review and research perspective on recommender systems. Journal of Big Data, 9(1):59.
  • Shi and Lin (2019) Peng Shi and Jimmy Lin. 2019. Simple bert models for relation extraction and semantic role labeling. arXiv preprint arXiv:1904.05255.
  • Wang et al. (2023a) Jianing Wang, Nuo Chen, Qiushi Sun, Wenkang Huang, Chengyu Wang, and Ming Gao. 2023a. Hugnlp: A unified and comprehensive library for natural language processing. In Proceedings of the 32nd ACM International Conference on Information and Knowledge Management, CIKM ’23, page 5111–5116, New York, NY, USA. Association for Computing Machinery.
  • Wang et al. (2023b) Jianing Wang, Qiushi Sun, Xiang Li, and Ming Gao. 2023b. Boosting language models reasoning with chain-of-knowledge prompting.
  • Wei et al. (2021) Kaiwen Wei, Xian Sun, Zequn Zhang, **gyuan Zhang, Guo Zhi, and Li **. 2021. Trigger is not sufficient: Exploiting frame-aware knowledge for implicit event argument extraction. In Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing (Volume 1: Long Papers), pages 4672–4682.
  • Xu et al. (2022a) Fangzhi Xu, Jun Liu, Qika Lin, Yudai Pan, and Lingling Zhang. 2022a. Logiformer: a two-branch graph transformer network for interpretable logical reasoning. In Proceedings of the 45th International ACM SIGIR Conference on Research and Development in Information Retrieval, pages 1055–1065.
  • Xu et al. (2023) Fangzhi Xu, Zhiyong Wu, Qiushi Sun, Siyu Ren, Fei Yuan, Shuai Yuan, Qika Lin, Yu Qiao, and Jun Liu. 2023. Symbol-llm: Towards foundational symbol-centric interface for large language models. arXiv preprint arXiv:2311.09278.
  • Xu et al. (2021) Runxin Xu, Tianyu Liu, Lei Li, and Baobao Chang. 2021. Document-level event extraction via heterogeneous graph-based interaction model with a tracker. In Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing (Volume 1: Long Papers), pages 3533–3546.
  • Xu et al. (2022b) Runxin Xu, Peiyi Wang, Tianyu Liu, Shuang Zeng, Baobao Chang, and Zhifang Sui. 2022b. A two-stream amr-enhanced model for document-level event argument extraction. In Proceedings of the 2022 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, pages 5025–5036.
  • Yang et al. (2018) Hang Yang, Yubo Chen, Kang Liu, Yang Xiao, and Jun Zhao. 2018. Dcfee: A document-level chinese financial event extraction system based on automatically labeled training data. In Proceedings of ACL 2018, System Demonstrations, pages 50–55.
  • Ying et al. (2021) Chengxuan Ying, Tianle Cai, Shengjie Luo, Shuxin Zheng, Guolin Ke, Di He, Yanming Shen, and Tie-Yan Liu. 2021. Do transformers really perform bad for graph representation? arXiv preprint arXiv:2106.05234.
  • Zeng et al. (2022) Qi Zeng, Qiusi Zhan, and Heng Ji. 2022. Ea2e: Improving consistency with event awareness for document-level argument extraction. In 2022 Findings of the Association for Computational Linguistics: NAACL 2022, pages 2649–2655. Association for Computational Linguistics (ACL).
  • Zhang et al. (2020) Jiawei Zhang, Haopeng Zhang, Congying Xia, and Li Sun. 2020. Graph-bert: Only attention is needed for learning graph representations. arXiv preprint arXiv:2001.05140.
  • Zheng et al. (2019) Shun Zheng, Wei Cao, Wei Xu, and Jiang Bian. 2019. Doc2edag: An end-to-end document-level framework for chinese financial event extraction. In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP), pages 337–346.