Argument Mining in Data Scarce Settings: Cross-lingual Transfer and Few-shot Techniques

Anar Yeginbergen    Maite Oronoz    Rodrigo Agerri
HiTZ Center - Ixa, University of the Basque Country UPV/EHU
{anar.yeginbergen,maite.oronoz,rodrigo.agerri}@ehu.eus
Abstract

Recent research on sequence labelling has been exploring different strategies to mitigate the lack of manually annotated data for the large majority of the world languages. Among others, the most successful approaches have been based on (i) the cross-lingual transfer capabilities of multilingual pre-trained language models (model-transfer), (ii) data translation and label projection (data-transfer) and (iii), prompt-based learning by reusing the mask objective to exploit the few-shot capabilities of pre-trained language models (few-shot). Previous work seems to conclude that model-transfer outperforms data-transfer methods and that few-shot techniques based on prompting are superior to updating the model’s weights via fine-tuning. In this paper, we empirically demonstrate that, for Argument Mining, a sequence labelling task which requires the detection of long and complex discourse structures, previous insights on cross-lingual transfer or few-shot learning do not apply. Contrary to previous work, we show that for Argument Mining data transfer obtains better results than model-transfer and that fine-tuning outperforms few-shot methods. Regarding the former, the domain of the dataset used for data-transfer seems to be a deciding factor, while, for few-shot, the type of task (length and complexity of the sequence spans) and sampling method prove to be crucial.

Argument Mining in Data Scarce Settings: Cross-lingual Transfer and Few-shot Techniques


Anar Yeginbergen  and Maite Oronoz  and Rodrigo Agerri HiTZ Center - Ixa, University of the Basque Country UPV/EHU {anar.yeginbergen,maite.oronoz,rodrigo.agerri}@ehu.eus


1 Introduction

Transfer learning and pre-trained language models are closely related as the knowledge learned for one or more tasks in one specific language can be applied to other tasks or languages Wang et al. (2023). In this paper, we analyze how this feature can be applied in scenarios where not much data is accessible as it is the case of argument mining in the clinical domain. In data-transfer approaches, data can be translated and the required annotations projected to train supervised models. Model-transfer methods avoid the long process of generating the training data by applying multilingual pre-trained language models to learn the annotations in one language and generate the predictions in a different one Pikuliak et al. (2021); García-Ferrero et al. (2022a); Chen et al. (2023). Alternatively, by few-shot prompting there is a possibility to reach comparable results by providing a few examples from the problem at hand to pre-trained language models Ma et al. (2022). In sequence labelling tasks, these methods have shown to be effective with a minimal loss in performance based on a very few annotated examples.

These few-shot methods have widely been tested on popular benchmark datasets, such as in those for Named Entity Recognition (NER) (CoNLL 2003 Tjong Kim Sang and De Meulder (2003), OntoNotes 5.0 Weischedel et al. (2013), MIT-Movie Liu et al. (2013)) concluding that model-transfer outperform data-transfer methods and that few-shot techniques based on prompting are superior to updating the model’s weights via fine-tuning. However, such conclusions have been based on results obtained on sequence labelling tasks for which the sequence spans are commonly short and quite homogeneous in terms of the structure and content of the label words.

In this paper we explore whether these conclusions still hold for Argument Mining, a task in Natural Language Processing (NLP) aimed at extracting long and complex discourse structures from text. Argument Mining usually involves two distinct subproblems: (1) argument component detection, focusing on locating the spans of arguments and identifying their types (e.g., claims and premises), and (2) classification of argument relations, which involves classifying the relationship between two argument components as supporting or attacking.

In order to do so, we use AbstRCT (Mayer et al., 2021) a corpus of medical abstracts annotated for the detection of argument components. The original corpus is published in English and has been extended it into a parallel multilingual corpus of medical arguments in Spanish, Italian, and French111https://huggingface.co/datasets/HiTZ/multilingual-abstrct by translating with state-of-the-art language models and projecting the annotations to the target languages using the technique of García-Ferrero et al. (2022a).

Summarizing, we investigate the following two research questions to address data scarcity in Argument Mining:

  • RS1: What approach is better to overcome data scarcity: data-transfer, model-transfer or few-shot learning?

  • RS2: What is the influence of the type of task (length and complexity of the sequence spans) and sampling methods for optimal results in few-shot settings?

In this paper we empirically demonstrate that, for Argument Mining (AM), a sequence labelling task that requires the detection of long and complex discourse structures, previous insights on cross-lingual transfer or few-shot learning do not apply. Contrary to previous work, we show that for Argument Mining data-transfer obtains better results than model-transfer and that fine-tuning outperforms few-shot methods. Regarding the former, the domain of the dataset used for data-transfer seems to be a deciding factor, while, for few-shot, the type of task (length and complexity of the sequence spans) and the sampling method proves to be crucial. Data and code for the experiments described in this paper are publicly available in: https://github.com/anaryegen/few_shot_argument_mining.

2 Related Work

In this section, we review the closest work to the paper’s main topics, namely, Argument Mining, cross-lingual transfer and few-shot learning.

2.1 Argument Mining

The are a number of different theoretical approaches to describe the argument structures that can be inferred from text analysis. For instance, Toulmin (1958) identified different functional roles in arguments (evidence, warrant, backing, qualifier, rebuttal, and claim) based on how the conclusion is drawn from evidence in the text. Furthermore, Freeman (2011) investigated how to transfer arguments via diagramming techniques of the informal logic tradition. Others Dung (1995) tried to create a graph-based representation of argumentation by applying non-monotonic reasoning in Artificial Intelligence (AI) and logic programming. Finally, Peldszus and Stede (2013) introduced a diagram structure with models of the textual representation of arguments and globally optimized argumentative relations. They argued that support and attack relations are sufficient to describe the overall relationships between argument components. Moreover, they identified five different types of argument graphs based on the connections that exist between them, namely, one claim having relations with multiple premises, a claim followed by another claim, etc.

In Natural Language Processing Argument Mining (AM) is focused on automatically identifying the argument components and classifying the relations that may exist between them. Following the theoretical models proposed, a number of empirical approaches have been developed in the last few years. Thus, Stab and Gurevych (2017) tackled AM in two different steps. First, they try to locate the span argumentative text and classify the type of component at token level. Second, they classify the relations linking the identified argument spans. In addition to the two step system to address AM, they also generate Persuasive Essays, perhaps the most popular NLP dataset manually annotated with argument structures Stab and Gurevych (2017). Later on, Eger et al. (2017) introduced an end-to-end AM system based on a bi-directional sequence-to-sequence model.

Other work includes Toledo-Ronen et al. (2020), which provides an in detail analysis at argument level of various multilingual datasets, while Rocha et al. (2018) experimented with cross-lingual argumentative relation identification from English to Portuguese.

Finally, Mayer et al. (2020) introduced the first dataset of English medical abstracts annotated for argument component detection and argument relation classification. Subsequently, Mayer et al. (2021) introduced a Transformer-based solution with Gated Recurrent Units (GRU) and Conditional Random Field (CRF) classification layers.

2.2 Few-shot Learning Approaches for Sequence Labelling

The availability of pre-trained language models allows to apply supervised methods with less amount of annotated data which is why some research in different NLP tasks has focused on few-shot training (Hofer et al., 2018; Fritzler et al., 2019; Li et al., 2022), namely, learning supervised models with very few manually annotated samples. The rise of prompt-based models (Radford et al., 2019; Brown et al., 2020) further increased the interest in learning the task describing the classification objective. This usually involves transforming traditional classification tasks into cloze tasks using textual templates and a predefined set of label words, highlighting the importance of template design in prompt-based learning.

In this line of work, Schick and Schütze (2021) presented a semi-supervised training approach that reformulates input instances into cloze-style phrases. Cui et al. (2021) proposed a template-based method for Named Entity Recognition (NER) by generating templates for each entity from a given example. However, template-based approaches are better suited to sentence-level tasks where the complexity of the templates remain manageable. As an alternative, EntLM Ma et al. (2022) proposed a template-free few-shot learning approach for sequence labelling tasks. Their method is based on computing a set of label words from the input text and replacing the entity-specific tokens with these label words in the training sample. EntLM obtains state-of-the-art results which is why we use it in this paper as the representative of few-shot learning for argument component detection. Huang et al. (2022) and Das et al. (2022) propose few-shot learning for NER involving contrastive learning via prompt-based meta-learning. However, their methods require large amounts of data to first train the model before adapting it with a handful of examples for various label sets.

2.3 Cross-lingual Sequence Labelling

Previous work on cross-lingual sequence tagging mainly focuses on tasks such as part-of-speech (POS) tagging, named-entity-recognition (NER) (Gaddy et al., 2016; Yang et al., 2017; Agerri et al., 2018; Chen et al., 2018; Liu et al., 2020), and Opinion Target Extraction (OTE) (Agerri and Rigau, 2019). García-Ferrero et al. (2022a) compared model-transfer and data-transfer approaches on a variety of sequence labelling tasks, datasets, and languages. They conclude that model-transfer using pre-trained multilingual language models such as XLM-RoBERTa-large Conneau et al. (2019) outperform data-transfer methods.

Closer to our work, Eger et al. (2018) generated parallel German and Chinese versions from English by applying manual and automatic translation and label projection to experiment with data-transfer approaches based on cross-lingual embeddings. They concluded that, while machine translated data degraded results when used for training a supervised model for the target language, results were promising enough to continue working on that research direction. Thus, Sousa et al. (2021) translated Persuasive Essays into Portuguese for further cross-lingual experimentation. However, it should be noted that current model-transfer, few-shot and supervised techniques based on multilingual pre-trained language models are clearly superior to the methods used at the time, which makes the purpose of our work rather relevant.

3 Data

The starting point for experimentation on argument mining in data scarce settings is AbstRCT, a dataset of Randomized Controlled Trials (RCT) manually annotated with argument components and relations Mayer et al. (2021). The original AbstRCT consists of abstracts of clinical trials in English collected from the MEDLINE database and manually annotated with two types of argument components: Claims and Premises. A ‘claim’ is a concluding statement about the outcome of the study. In the medical domain it typically refers to a judgement regarding a possible diagnosis or a treatment. A ‘premise’ corresponds to an observation or measurement in the study (ground truth), which supports or attacks another argument component, usually a claim. It is important to stress that premises are observed facts, therefore, credible without further evidence.

The training set consists of 350 abstracts that cover the neoplasm disease, 50 more abstracts about neoplasm are used for development, while the three evaluation sets are composed of: 100 abstracts about neoplasm, 100 abstracts about glaucoma and finally a mixed set of 100 abstracts with 20 abstracts for each of the diseases in the AbsRCT dataset (i.e. neoplasm, glaucoma, hypertension, hepatitis and diabetes). The number of the sequences with Premise and Claim argument components in these sets is shown in Table 1.

Data # of Premise # of Claim
Train: Neoplasm 1535 730
Dev: Neoplasm 438 228
Test: Neoplasm 438 248
Test: Glaucoma 404 190
Test: Mixed 388 212
Table 1: Number of sequences with Premise and Claim argument components in the train, dev, and test sets.

We machine-translated with the state-of-the-art machine translation model No Language Left Behind (NLLB) Costa et al. (2022) into Spanish, Italian, and French. Subsequently, we projected the annotations from the original dataset into the translated versions using the annotation projection tool developed by García-Ferrero et al. (2022a). In the last phase, native speakers manually corrected the projections of the argument component labels. This was required to have gold standard evaluation data. While it would had been interesting to project the dataset to other languages, we only had in-house expertise to manually check the annotations for Spanish, Italian and French.

We also generated a post-processed version by programatically correcting systematic errors performed during the automatic projection of the annotations. This post-processed version fixed relatively simple but repetitive issues such as omitting the labelling of articles as argument types. As a result, we obtained three versions of the projected data: auto projected, post-processed and manually corrected.

Table 2 reports the evaluation of the auto-projected and post-processed annotations with respect to the gold standard (manually corrected). Results show that manually corrected data is crucial at least for evaluation although the post-processed version of the projections gets close enough to the gold standard.

Test set Spanish French Italian
auto-projected
Neoplasm 83.95 94.18 92.44
Glaucoma 67.97 90.43 93.79
Mixed 83.45 90.89 91.42
post-processed
Neoplasm 95.54 97.87 98.97
Glaucoma 97.88 97.89 99.41
Mixed 95.78 96.97 97.65
Table 2: F1-score of auto-projected and post-processed data compared with manually corrected data in Spanish, French, and Italian.

The full training data is used for multilingual and cross-lingual experiments. To perform few-shot experiments the data is randomly sampled following different sampling approaches.

3.1 Sampling Data for Few-shot Learning

The main objective of Few-Shot Learning (FSL) is to generalize while learning from a small portion of data. In order to perform FSL, the data is sampled into smaller subsets and provided to the model. While state-of-the-art methods on few-shot for sequence labelling have been focused on the training method, they have not usually paid any attention to the data sampling technique Ma et al. (2022). In this paper, we demonstrate the importance of data sampling for a sequence labelling task such as Argument Mining.

We sample the data in two ways, using a method called k-shot (based on Ma et al. (2022)) and another one named k-percent, where k{5,10,20,50}k5102050\textit{k}\in\{5,10,20,50\}k ∈ { 5 , 10 , 20 , 50 }. In the k-shot method, each of the subsets contains exactly k argument component sequences of Claim and Premise. With the k-percent sampling method we calculate the k proportion for each argument component from the full data to reflect the distribution. The distribution of the sequences sampled with k-percent method and k-shot are shown in Table 3. The sequences in every sample are selected randomly in a greedy manner.

AbstRCT contains texts annotated with labels Claim, Premise, and O (Outside). One sentence could belong to one or more argument component classes from the beginning until the end. In many sequence labelling tasks, the span of the components to predict consists of several words that make up only a part of the sentence, whereas in argument mining argument components can constitute a whole sentence. Hence, for the few-shot training, it is crucial to include examples without any argument components separately, namely, examples in which every token in the sequence is labeled with the O class. If such examples are not included, the few-shot model fails to learn to classify sequences as non-arguments.

K B-Claim B-Premise I-Claim I-Premise O 5 shot 5 5 108 165 143 10 shot 10 10 187 273 258 20 shot 20 20 348 554 594 50 shot 50 50 1000 1371 1389 5% 36 76 712 2111 3106 10% 73 153 1421 4231 6108 20% 146 307 2832 8308 12252 50% 365 767 7283 21205 30322 100% 730 1535 14396 42466 61173

Table 3: Average number of token-level Argument Components with k-shot and k-percent sampling in the English training set among 3 sampled files for each k-sample.

The data has a sentence-by-sentence split, where each token in the sentence is annotated with the labels following the IOB2 schema, meaning that the beginning of the argument is tagged as B- followed by the argument component class name (Claim or Premise), the rest of the argumentative tokens are labelled with I-, and non-argumentative sequences are labelled as O. Since one sentence holds one or more argument types, and they tend to be lengthy, a considerable imbalance between B- and I- tokens is created. In Table 3, we provide the distribution of the data at token level to show the imbalance in the number of tokens that are marked as B-, I- or O.

Along with sampling the training data for each language, we additionally merge all the training sets from every k-percent sampling into one to perform multilingual experiments. Therefore, the multilingual k-percent sample is a combination of k examples from each language from the k-percent sample.

4 Experimental Setup

An important feature of AM with respect to other sequence labelling tasks is that arguments are considerably long and composed by a variety of word types.

The experiments are based on the three different techniques that we will be comparing to establish which one is the optimal one for AM in data-scarce settings: (i) data-transfer, (ii) model-transfer and (iii), few-shot learning for sequence labelling.

Results are reported using F1 macro-averaged score calculated at sequence level, namely, the F1-score is computed for each argument component following the usual method for sequence labelling tasks as formulated for Named Entity Recognition Tjong Kim Sang and De Meulder (2003).

4.1 Data-Transfer and Model-Transfer

Data-transfer involves generating training data in the target language by translating and projecting the annotations from the original English language to Spanish, French and Italian. This process was described in Section 3. The translated and projected training data is then used to fine-tune pre-trained encoder language models.

Initially, we separately fine-tune multilingual BERT Devlin et al. (2019), on the training sets of English, Spanish, French, and Italian AbstRCT corpora and evaluate the resulting models for each of the languages in a monolingual setting222Preliminary experimentation showed that mBERT outperformed other multilingual encoder-only models such as XLM-RoBERTa or mDeBERTa-v3-base. See mDeBERTa results in Appendix D..

We also tested data-transfer in a multilingual setting by fine-tuning multilingual BERT on the training sets for the 4 languages. Finally, both monolingual and multilingual settings were evaluated using both post-processed and manually corrected versions of the data (French, Italian and Spanish).

Model-transfer is facilitated by pre-trained multilingual language models such as mBERT by enabling them to label sequences in languages on which they have not been explicitly trained on, relying on their multilingual or crosslingual abilities. Thus, model-transfer allows to perform AM for languages for which no annotated data is available by training in English and generating predictions in the target language (French, Italian and Spanish). In our experiments, this amounts to fine-tuning mBERT using English data and evaluating its performance on test data from the other three languages.

Test set English Spanish French Italian Avg.
gold monolingual data-transfer
Neoplasm 61.34(1.83) 58.54(0.49) 60.28(1.57) 57.29(1.12) 59.36
Glaucoma 64.35(0.81) 60.63(1.56) 64.81(2.64) 61.95(1.18) 62.94
Mixed 60.57(2.33) 57.27(1.36) 57.79(1.07) 56.84(0.51) 58.12
gold monolingual data-transfer (post)
Neoplasm 61.34(1.83) 58.88(1.76) 55.79(1.68) 57.64(1.63) 57.44
Glaucoma 64.35(0.81) 62.86(1.48) 62.24(1.53) 62.37(1.74) 62.49
Mixed 60.57(2.33) 57.92(0.72) 55.75(2.01) 55.54(1.77) 56.40
multilingual data-transfer
Neoplasm 61.89(1.41) 59.96(1.79) 61.17(2.25) 59.95(2.29) 60.74
Glaucoma 66.97(2.04) 65.94(1.19) 67.14(1.62) 60.69(0.99) 65.19
Mixed 62.28(0.81) 60.86(1.96) 60.68(1.67) 60.08(2.68) 60.98
multilingual data-transfer (post)
Neoplasm 55.86(2.16) 58.89(2.82) 59.19(0.97) 58.03(1.67) 59.50
Glaucoma 64.86(1.31) 66.98(2.07) 64.65(2.35) 66.24(1.36) 66.21
Mixed 57.65(2.59) 58.49(0.70) 58.72(2.07) 58.06(0.66) 59.39
cross-lingual model-transfer
Neoplasm - 55.80(1.04) 53.75(1.32) 50.83(0.60) 55.43
Glaucoma - 58.39(1.57) 57.25(1.48) 56.52(0.77) 59.13
Mixed - 52.25(0.41) 54.36(0.76) 47.88(1.09) 53.77
Table 4: F1-scores and their averages per test set from the argument component detection results of monolingual, monolingual post-processed (described as post), multilingual, multilingual post-processed (post), and cross-lingual experiments.

4.2 Few-shot Learning

Few-shot learning exploits limited annotated examples to train models, striking a balance between data scarcity and task complexity.

Ma et al. (2022) proposed a template-free method for few-shot prompting for Named Entity Recognition (NER) by tackling it as a Language Model (LM) task with an Entity-oriented LM (EntLM) objective to solve the NER task. This avoids generating a new template corpus for each example in the data. We use this method in our experiments as it represents current state-of-the-art, at the time of writing, for sequence labelling in few-shot settings. Their approach consists of first retrieving class-specific words called label words from a pre-trained model, and predict those label words at the position of each entity. They propose several ways of computing these label words, and in this work, we used the method based on the frequency, namely, we select the words that are the most frequent for the given class. We generate 10 such label words for each class.

Following EntLM’s methodology Ma et al. (2022), for every k sample three randomly sampled training sets are created. Training is then performed on each of these datasets over four iterations, and subsequently, sequence-level F1-scores and standard deviations are calculated.

In addition to the monolingual experiments, we also carry out multilingual experiments by combining all the French, Spanish, Italian, and English data. More specifically, we merge one sampled training file from each language of the k-percent sampling method. Evaluation is then conducted separately for each language.

Finally, we also compare EntLM with fine-tuning mBERT on few-shot settings.

5 Results

Following the completion of the experiments outlined in Section 4, this section reports the obtained results using mBERT333Results obtained by training mDeBERTa-v3-base are in Appendix D..

Refer to caption
Figure 1: F1-score per k-shot and k-percent for Neoplasm from EntLM (dots and lines) and fine-tuning (triangles and dashed lines).

5.1 Model-transfer and Data-transfer

Table 4 displays the F1-scores derived from the argument component detection experiments using full in-domain data across all the experiments. The rows corresponding to the monolingual data-transfer category present the results obtained from training and evaluating in the corresponding language. Similarly, multilingual data-transfer refers to the merged training set consisting of all 4 languages and evaluating each language separately. Cross-lingual refers to model-transfer, namely, training in English and evaluating in the other 3 languages. The last column corresponds to the average between all the results per language across all test sets. For a fair comparison, the average of the cross-lingual model transfer includes the F1-score of the monolingual English.

Results show that, contrary to previous work on crosslingual transfer García-Ferrero et al. (2022b), monolingual data-transfer clearly outperforms cross-lingual model-transfer for argument component detection. Another interesting point is that multilingual data-transfer obtains the overall best results outperforming also the original English gold results. This means that data-transfer may be employed as a cost-free data-augmentation technique.

If we look at the results obtained when fine-tuning with the post-processed data, results indicate that data-transfer may be used in a fully automatic way, restricting the manual correction of the projected labels to the generation of evaluation sets.

5.2 Few-shot

Figure 1 reports the results of few-shot using both sampling methods (k-shot and k-percent) for the data trained by means of both EntLM and fine-tuning techniques.

The first point to mention is that data-transfer also outperforms the few-shot prompting approach for sequence labelling proposed by EntLM. Furthermore, and quite surprisingly, fine-tuning remains competitive with respect to EntLM with the k-shot sampling while it is quite superior when tested on the percentage sampling. We hypothesized that k-percentage sampling produces better performance due to the higher proportion of outside tokens. In fact, when fine-tuned with 20% and 50% of the data performance is comparable to that of data-transfer and model-transfer results.

EN Neoplasm Glaucoma Mixed Avg. 5% 41.92(8.39) 47.60(9.43) 39.27(4.92) 42.93 10% 52.86(3.10) 55.18(3.37) 55.23(1.75) 54.42 20% 57.14(1.19) 60.34(1.62) 57.33(0.66) 58.27 ES Neoplasm Glaucoma Mixed Avg. 5% 40.74(3.13) 39.33(8.59) 38.96(5.04) 39.68 10% 51.68(1.71) 55.83(2.09) 51.93(1.27) 53.15 20% 59.04(0.58) 57.39(1.92) 55.27(1.78) 57.23 FR Neoplasm Glaucoma Mixed Avg. 5% 37.45(7.38) 42.42(3.51) 29.01(4.48) 36.29 10% 50.46(1.75) 53.03(2.17) 50.71(1.63) 51.40 20% 57.45(1.29) 55.70(2.55) 56.57(1.35) 56.57 IT Neoplasm Glaucoma Mixed Avg. 5% 37.07(8.43) 47.96(2.95) 37.59(9.49) 40.87 10% 50.78(1.61) 53.91(3.65) 49.48(4.81) 51.39 20% 55.85(1.54) 57.53(2.92) 54.75(1.61) 56.04

Table 5: F1-scores and standard deviation of multilingual few-shot fine-tuning mBERT with k-percent.

With respect to the multilingual experiments, one training sample from each k-percent sampling was merged into one training set, fine-tuned, and tested on each language (Table 5). As observed in Figure 1, fine-tuning with 50% of the data (dash lines) produces results almost as high as 100%. Furthermore, results demonstrate that merging 20% of the data performs slightly worse than the model trained on the full data.

6 Error Analysis

In general, fine-tuning the model on the complete dataset often results in misclassifications with a tendency to assign Claim labels in place of Premise. Additionally, dealing with long sequences poses challenges in accurately identifying both boundaries and classes for the system. This pattern persists in zero-shot results, and it can be attributed to an inherent imbalance in the data, particularly in terms of the disparity between the number of Claim and Premise labels and the length of arguments in the sequences.

Each sequence predominantly corresponds to a single argument type, and instances where a sequence contains compound arguments, or when the argument span is only a proportion of the input, are less frequent. Consequently, in such examples, the most prevalent error involves misidentifying Claim as Premise and recognizing only one argument component in sequences with multiple components. These errors tend to occur more systematically in classifications under the zero-shot setting.

In k-shot scenarios, the model consistently struggles to accurately identify both the correct spans and class labels. Furthermore, as the number of k decreases, there is an increase in randomness in the assigned classes for each token, meaning that each token in a sequence may be classified differently. In particular, it is notable in the 5- and 10-shot. Under k-shot the model struggles to predict B- tokens. Whereas in the k-percent the opposite occurs, namely, the model learns to predict the beginning of the sequence and fails to predict O sequences correctly. Nevertheless, it is observed that as the amount of data increases, the quality of the predicted outcomes improves.

The described errors persist consistently in the case of EntLM. Additionally, when dealing with smaller training sets, the trained model tends to assign a single argument type to all examples in a document. As the value of k increases, the randomness in predictions also grows proportionally. In other words, a larger amount of data leads to more unpredictable assigning of labels by the model on the token level.

A potential explanation for such behavior may be the selection of the label words. The concept involves computing label-specific words to later substitute them for few-shot learning. Given that the length of an argument is usually long enough, one selected label word may not represent the argument type correctly.

7 Concluding Remarks

In this paper, we address the argument component identification task in the clinical domain in a scenario of lack of manually annotated data for languages other than English. We address the problem by applying cross-lingual transfer and prompt-based learning strategies in the AbstRCT corpus. Experimentation was facilitated by the generation of multilingual dataset by machine-translating and projecting the annotations of the original English AbstRCT into French, Italian, and Spanish.

The results of our experiments show that for long and structurally complex sequence labelling, as it is the case of component identification in Argument Mining, data-transfer is a better strategy than model-transfer (RS1). Thus, fine-tuning mBERT in monolingual and multilingual settings showed results on an average of around 60 F1-scores for three test sets, outperforming any other approach, be that model-transfer or few-shot learning.

Furthermore, we have addressed the question of how much data is required to obtain similar results to those using the full data for training (RS2) by performing experiments in a few-shot learning approach. Thus, corpus splits of different granularity (5, 10, 20, and 50 shot or percentage) were used in the experimentation with EntLM and mBERT. The models in general perform better when trained with data sampled using the k-percent method (in comparison to k-shot) and by fine-tuning a pre-trained language model (instead of using a prompting method such as EntLM). Finally, empirical results indicate that by fine-tuning the multilingual model mBERT with 20% of the data performance is competitive with data- and model-transfer approaches.

8 Limitations

Our evaluation focuses on Argument Mining, and it would be interesting to compare it with other sequence labelling tasks where the spans are also complex and heterogeneous. Furthermore, we experiment only in the medical domain, which may affect the results on the data-transfer method. We note, however, that our results clearly contradict previous results on model-transfer vs data-transfer previously obtained for other sequence labelling tasks García-Ferrero et al. (2022b). Furthermore, we also demonstrate the importance of the data sampling method in few-shot scenarios Ma et al. (2022). In any case, it would be interesting to perform similar experiments on different domains and for other languages with the aim of providing a similar comparison to corroborate that our findings also apply more broadly.

Acknowledgements

We would like to acknowledge the funding received by several MCIN/AEI/10.13039/501100011033 projects: (i) Antidote (PCI2020-120717-2), and by European Union NextGenerationEU/PRTR; (ii) DeepKnowledge (PID2021-127777OB-C21) and ERDF A way of making Europe; (iii) LOTU (TED2021-130398B-C22) and European Union NextGenerationEU/PRTR; (iv) EDHIA (PID2022-136522OB-C22); (v) DeepMinor (CNS2023-144375) and European Union NextGenerationEU/PRTR. We also thank the European High Performance Computing Joint Undertaking (EuroHPC Joint Undertaking, EXT-2023E01-013) for the GPU hours. Anar Yeginbergen’s PhD contract is part of the PRE2022-105620 grant, financed by MCIN/AEI/10.13039/501100011033 and by the FSE+.

References

  • Agerri et al. (2018) Rodrigo Agerri, Yiling Chung, Itziar Aldabe, Nora Aranberri, Gorka Labaka, and German Rigau. 2018. Building named entity recognition taggers via parallel corpora. In Proceedings of the Eleventh International Conference on Language Resources and Evaluation (LREC 2018).
  • Agerri and Rigau (2019) Rodrigo Agerri and German Rigau. 2019. Language independent sequence labelling for opinion target extraction. Artificial Intelligence, 268:85–95.
  • Brown et al. (2020) Tom Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared D Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. 2020. Language models are few-shot learners. Advances in neural information processing systems, 33:1877–1901.
  • Chen et al. (2018) Xilun Chen, Ahmed Hassan Awadallah, Hany Hassan, Wei Wang, and Claire Cardie. 2018. Multi-source cross-lingual model transfer: Learning what to share. arXiv preprint arXiv:1810.03552.
  • Chen et al. (2023) Yang Chen, Chao Jiang, Alan Ritter, and Wei Xu. 2023. Frustratingly easy label projection for cross-lingual transfer. In Findings of the Association for Computational Linguistics: ACL 2023, pages 5775–5796, Toronto, Canada. Association for Computational Linguistics.
  • Conneau et al. (2019) Alexis Conneau, Kartikay Khandelwal, Naman Goyal, Vishrav Chaudhary, Guillaume Wenzek, Francisco Guzmán, Edouard Grave, Myle Ott, Luke Zettlemoyer, and Veselin Stoyanov. 2019. Unsupervised cross-lingual representation learning at scale. arXiv preprint arXiv:1911.02116.
  • Costa et al. (2022) Alexandre Diniz da Costa, Mateus Coutinho Marim, Ely Matos, and Tiago Timponi Torrent. 2022. Domain adaptation in neural machine translation using a qualia-enriched FrameNet. In Proceedings of the Thirteenth Language Resources and Evaluation Conference, pages 1–12, Marseille, France. European Language Resources Association.
  • Cui et al. (2021) Leyang Cui, Yu Wu, Jian Liu, Sen Yang, and Yue Zhang. 2021. Template-based named entity recognition using BART. In Findings of the Association for Computational Linguistics: ACL-IJCNLP 2021, pages 1835–1845, Online. Association for Computational Linguistics.
  • Das et al. (2022) Sarkar Snigdha Sarathi Das, Arzoo Katiyar, Rebecca Passonneau, and Rui Zhang. 2022. CONTaiNER: Few-shot named entity recognition via contrastive learning. In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 6338–6353, Dublin, Ireland. Association for Computational Linguistics.
  • Devlin et al. (2019) Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. 2019. BERT: Pre-training of deep bidirectional transformers for language understanding. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers), pages 4171–4186, Minneapolis, Minnesota. Association for Computational Linguistics.
  • Dung (1995) Phan Minh Dung. 1995. On the acceptability of arguments and its fundamental role in nonmonotonic reasoning, logic programming and n-person games. Artificial intelligence, 77(2):321–357.
  • Eger et al. (2017) Steffen Eger, Johannes Daxenberger, and Iryna Gurevych. 2017. Neural end-to-end learning for computational argumentation mining. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 11–22, Vancouver, Canada. Association for Computational Linguistics.
  • Eger et al. (2018) Steffen Eger, Johannes Daxenberger, Christian Stab, and Iryna Gurevych. 2018. Cross-lingual argumentation mining: Machine translation (and a bit of projection) is all you need! In Proceedings of the 27th International Conference on Computational Linguistics, pages 831–844, Santa Fe, New Mexico, USA. Association for Computational Linguistics.
  • Freeman (2011) James B Freeman. 2011. Argument Structure:: Representation and Theory, volume 18. Springer Science & Business Media.
  • Fritzler et al. (2019) Alexander Fritzler, Varvara Logacheva, and Maksim Kretov. 2019. Few-shot classification in named entity recognition task. In Proceedings of the 34th ACM/SIGAPP Symposium on Applied Computing, page 993–1000, New York, NY, USA. Association for Computing Machinery.
  • Gaddy et al. (2016) David M Gaddy, Yuan Zhang, Regina Barzilay, and Tommi S Jaakkola. 2016. Ten pairs to tag-multilingual pos tagging via coarse mapping between embeddings. Association for Computational Linguistics.
  • García-Ferrero et al. (2022a) Iker García-Ferrero, Rodrigo Agerri, and German Rigau. 2022a. Model and data transfer for cross-lingual sequence labelling in zero-resource settings. In In Findings of EMNLP.
  • García-Ferrero et al. (2022b) Iker García-Ferrero, Rodrigo Agerri, and German Rigau. 2022b. Model and data transfer for cross-lingual sequence labelling in zero-resource settings. In Findings of the Association for Computational Linguistics: EMNLP 2022, pages 6403–6416, Abu Dhabi, United Arab Emirates. Association for Computational Linguistics.
  • Hofer et al. (2018) Maximilian Hofer, Andrey Kormilitzin, Paul Goldberg, and Alejo Nevado-Holgado. 2018. Few-shot learning for named entity recognition in medical text. arXiv preprint arXiv:1811.05468.
  • Huang et al. (2022) Yucheng Huang, Kai He, Yige Wang, Xianli Zhang, Tieliang Gong, Rui Mao, and Chen Li. 2022. COPNER: Contrastive learning with prompt guiding for few-shot named entity recognition. In Proceedings of the 29th International Conference on Computational Linguistics, pages 2515–2527, Gyeongju, Republic of Korea. International Committee on Computational Linguistics.
  • Li et al. (2022) Jing Li, Billy Chiu, Shanshan Feng, and Hao Wang. 2022. Few-shot named entity recognition via meta-learning. IEEE Transactions on Knowledge and Data Engineering, 34(9):4245–4256.
  • Liu et al. (2013) Jingjing Liu, Panupong Pasupat, Yining Wang, Scott Cyphers, and Jim Glass. 2013. Query understanding enhanced by hierarchical parsing structures. In 2013 IEEE Workshop on Automatic Speech Recognition and Understanding, pages 72–77.
  • Liu et al. (2020) Zihan Liu, Genta Indra Winata, Samuel Cahyawijaya, Andrea Madotto, Zhaojiang Lin, and Pascale Fung. 2020. On the importance of word order information in cross-lingual sequence labeling. arXiv preprint arXiv:2001.11164.
  • Ma et al. (2022) Ruotian Ma, Xin Zhou, Tao Gui, Yiding Tan, Linyang Li, Qi Zhang, and Xuanjing Huang. 2022. Template-free prompt tuning for few-shot NER. In Proceedings of the 2022 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, pages 5721–5732, Seattle, United States. Association for Computational Linguistics.
  • Mayer et al. (2020) Tobias Mayer, Elena Cabrio, and Serena Villata. 2020. Transformer-based argument mining for healthcare applications. In ECAI 2020 - 24th European Conference on Artificial Intelligence, volume 325 of Frontiers in Artificial Intelligence and Applications, pages 2108–2115. IOS Press.
  • Mayer et al. (2021) Tobias Mayer, Santiago Marro, Elena Cabrio, and Serena Villata. 2021. Enhancing evidence-based medicine with natural language argumentative analysis of clinical trials. Artificial Intelligence in Medicine, 118:102098.
  • Peldszus and Stede (2013) Andreas Peldszus and Manfred Stede. 2013. From argument diagrams to argumentation mining in texts: A survey. International Journal of Cognitive Informatics and Natural Intelligence (IJCINI), 7(1):1–31.
  • Pikuliak et al. (2021) Matúš Pikuliak, Marián Šimko, and Mária Bieliková. 2021. Cross-lingual learning for text processing: A survey. Expert Systems with Applications, 165:113765.
  • Radford et al. (2019) Alec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, Ilya Sutskever, et al. 2019. Language models are unsupervised multitask learners. OpenAI blog, 1(8):9.
  • Rocha et al. (2018) Gil Rocha, Christian Stab, Henrique Lopes Cardoso, and Iryna Gurevych. 2018. Cross-lingual argumentative relation identification: from english to portuguese. In Proceedings of the 5th Workshop on Argument Mining, 2018 Conference on Empirical Methods in Natural Language Processing (EMNLP 2018).
  • Schick and Schütze (2021) Timo Schick and Hinrich Schütze. 2021. Exploiting cloze-questions for few-shot text classification and natural language inference. In Proceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics: Main Volume, pages 255–269, Online. Association for Computational Linguistics.
  • Sousa et al. (2021) Afonso Sousa, Bernardo Leite, Gil Rocha, and Henrique Lopes Cardoso. 2021. Cross-lingual annotation projection for argument mining in portuguese. In Progress in Artificial Intelligence: 20th EPIA Conference on Artificial Intelligence, EPIA 2021, Virtual Event, September 7–9, 2021, Proceedings 20, pages 752–765. Springer.
  • Stab and Gurevych (2017) Christian Stab and Iryna Gurevych. 2017. Parsing argumentation structures in persuasive essays. Computational Linguistics, 43(3):619–659.
  • Tjong Kim Sang and De Meulder (2003) Erik F. Tjong Kim Sang and Fien De Meulder. 2003. Introduction to the CoNLL-2003 shared task: Language-independent named entity recognition. In Proceedings of the Seventh Conference on Natural Language Learning at HLT-NAACL 2003, pages 142–147.
  • Toledo-Ronen et al. (2020) Orith Toledo-Ronen, Matan Orbach, Yonatan Bilu, Artem Spector, and Noam Slonim. 2020. Multilingual argument mining: Datasets and analysis. In Findings of the Association for Computational Linguistics: EMNLP 2020, pages 303–317, Online. Association for Computational Linguistics.
  • Toulmin (1958) Stephen E Toulmin. 1958. The uses of argument. Cambridge university press.
  • Wang et al. (2023) Haifeng Wang, Jiwei Li, Hua Wu, Eduard Hovy, and Yu Sun. 2023. Pre-trained language models and their applications. Engineering, 25:51–65.
  • Weischedel et al. (2013) Ralph Weischedel, Martha Palmer, Mitchell Marcus, Eduard Hovy, Sameer Pradhan, Lance Ramshaw, Nianwen Xue, Ann Taylor, Jeff Kaufman, Michelle Franchini, Mohammed El-Bachouti, Robert Belvin, and Ann Houston. 2013. OntoNotes Release 5.0.
  • Yang et al. (2017) Zhilin Yang, Ruslan Salakhutdinov, and William W Cohen. 2017. Transfer learning for sequence tagging with hierarchical recurrent networks. arXiv preprint arXiv:1703.06345.

Appendix

Appendix A EntLM and Fine-tuning Results per Test Set

Results for all test sets obtained from few-shot training using EntLM and fine-tuning mBERT are presented in Tables 6 (Neoplasm), 7 (Glaucoma), and 8 (Mixed).

EntLM EN FR IT ES Avg. 5 shot 13.98(3.39) 8.24(5.22) 11.14(3.45) 8.29(5.98) 11.16 10 shot 16.37(4.73) 13.17(3.41) 14.52(3.91) 12.10(3.43) 14.04 20 shot 15.81(3.69) 14.32(3.23) 11.97(2.46) 12.11(4.65) 13.55 50 shot 28.20(2.76) 26.58(3.63) 20.81(3.34) 24.50(2.49) 25.02 5% 28.52(2.93) 24.18(2.17) 23.79(2.19) 24.55(2.05) 25.26 10% 35.62(3.04) 33.66(1.49) 31.02(1.71) 33.84(2.09) 33.54 20% 43.49(2.25) 37.97(2.02) 37.49(1.73) 38.44(1.67) 39.35 50% 48.44(2.06) 46.37(2.55) 43.84(1.83) 44.29(1.92) 45.74 mBERT EN FR IT ES Avg. 5 shot 6.19(3.28) 3.98(3.21) 2.23(1.76) 3.77(2.38) 4.04 10 shot 17.21(7.68) 4.04(4.52) 6.36(4.37) 6.05(6.19) 8.42 20 shot 33.66(9.94) 19.15(7.48) 24.51(8.99) 21.92(9.91) 24.81 50 shot 40.28(3.24) 39.67(4.88) 35.36(5.77) 37.85(5.57) 39.29 5% 40.64(7.32) 32.18(7.06) 28.66(5.02) 36.88(6.32) 34.59 10% 46.67(6.94) 45.62(3.33) 46.38(4.12) 44.97(4.93) 45.91 20% 57.87(1.34) 54.09(1.86) 52.95(2.33) 55.36(2.83) 55.07 50% 62.18(1.35) 59.37(1.89) 57.91(1.79) 58.79(1.52) 59.56

Table 6: Average F1-scores and standard deviation of few-shot EntLM and fine-tuning on k-shot and k-percent. (Neoplasm)

EntLM EN FR IT ES Avg. 5 shot 12.87(6.44) 8.47(4.01) 10.76(3.85) 9.06(7.04) 10.29 10 shot 18.09(3.75) 13.18(3.63) 14.59(5.88) 12.35(5.59) 14.55 20 shot 17.86(6.86) 19.75(3.41) 16.18(3.81) 14.87(2.34) 17.17 50 shot 26.38(2.99) 28.39(2.06) 25.06(3.48) 27.34(2.15) 26.79 5% 30.36(2.19) 27.33(3.06) 25.51(3.92) 26.25(1.86) 27.36 10% 38.28(2.73) 36.19(3.03) 33.38(6.08) 33.45(2.79) 35.33 20% 48.51(2.06) 40.69(2.02) 41.22(1.99) 39.97(3.60) 42.59 50% 51.98(3.07) 48.71(2.73) 50.44(2.60) 50.87(2.58) 50.50 mBERT EN FR IT ES Avg. 5 shot 4.19(5.91) 3.65(2.95) 1.76(1.16) 3.79(2.63) 3.35 10 shot 14.83(9.45) 5.43(2.83) 6.56(5.07) 7.70(8.29) 8.63 20 shot 31.11(9.64) 23.79(7.74) 27.52(5.31) 23.24(6.26) 26.41 50 shot 38.01(7.75) 39.42(8.77) 38.60(7.49) 39.99(5.65) 39.01 5% 42.14(6.57) 41.56(6.54) 34.37(9.17) 39.18(6.12) 39.31 10% 44.73(8.78) 46.66(3.66) 47.14(6.43) 43.71(6.20) 45.56 20% 58.29(1.73) 55.74(2.97) 53.79(3.56) 54.99(3.12) 55.70 50% 61.89(3.16) 62.66(2.41) 61.03(2.32) 61.79(3.05) 61.84

Table 7: Average F1-scores and standard deviation of few-shot EntLM and fine-tuning on k-shot and k-percent. (Glaucoma)

EntLM EN FR IT ES Avg. 5 shot 11.75(3.91) 9.16(5.53) 11.09(4.22) 7.24(6.94) 9.81 10 shot 17.25(4.35) 14.48(4.28) 14.17(4.31) 12.20(3.45) 14.53 20 shot 14.87(5.31) 18.37(2.39) 13.19(3.84) 11.99(4.19) 14.61 50 shot 26.06(1.49) 24.17(2.96) 22.75(3.05) 23.31(2.53) 24.07 5% 26.82(3.15) 22.76(2.45) 21.99(1.76) 25.35(1.74) 24.23 10% 34.73(2.64) 32.05(2.51) 30.96(2.62) 32.56(2.70) 32.58 20% 42.90(2.65) 36.82(1.92) 37.47(1.79) 37.98(2.22) 38.79 50% 46.47(2.03) 43.13(2.18) 42.37(2.29) 43.73(2.12) 43.93 mBERT EN FR IT ES Avg. 5 shot 2.80(4.42) 4.03(2.42) 1.53(1.59 2.38(2.56) 2.69 10 shot 13.59(6.09) 3.77(4.78) 8.45(5.30) 6.62(6.94) 8.11 20 shot 31.41(8.41) 22.26(8.57) 26.38(6.25) 26.80(9.01) 26.71 50 shot 40.97(3.43) 39.79(6.65) 35.78(7.41) 38.94(6.46) 38.87 5% 39.82(6.91) 38.51(9.42) 32.31(6.45) 38.38(5.48) 37.26 10% 47.91(7.75) 44.49(7.23) 44.01(4.07) 39.38(6.62) 43.95 20% 57.01(3.47) 52.32(2.26) 51.92(2.64) 53.98(2.46) 53.81 50% 61.44(1.97) 59.19(2.72) 57.61(2.23) 58.51(2.07) 58.19

Table 8: Average F1-scores and standard deviation of few-shot EntLM and fine-tuning on k-shot and k-percent. (Mixed)

Appendix B Results from Training on Multilingual Post-processed data

In Table 9, the results of training on multilingual post-processed data (without manual correction) are reported.

ES Neoplasm Glaucoma Mixed Avg. 5% 36.95(8.49) 37.75(17.94) 38.71(7.99) 37.80 10% 45.11(7.21) 46.89(2.82) 38.79(4.05) 43.59 20% 54.21(1.37) 57.83(0.95) 52.30(1.21) 54.78 FR Neoplasm Glaucoma Mixed Avg. 5% 44.57(2.29) 45.25(5.29) 46.93(4.73) 45.58 10% 42.86(8.49) 39.34(6.96) 42.77(3.29) 41.66 20% 53.21(2.27) 56.89(0.96) 53.01(1.14) 54.37 IT Neoplasm Glaucoma Mixed Avg. 5% 44.57(2.53) 49.16(3.41) 39.11(6.56) 44.28 10% 44.09(2.65) 47.37(3.58) 46.12(2.09) 45.86 20% 54.78(0.56) 55.69(1.13) 52.41(1.09) 54.29

Table 9: Average F1-scores and standard deviation of multilingual few-shot fine-tuning mBERT with k-percent with post-processed data.

Appendix C Cross-lingual Few-shot results

Results obtained from zero-shot cross-lingual few-shot experiments using k=20 (shot and percent) with EntLM and fine-tuning mBERT are reported in Table 10.

EntLM FR IT ES Avg. Neoplasm 20 shot 5.67(1.99) 6.68(3.18) 9.71(3.89) 7.35 20% 28.99(3.04) 28.76(2.10) 35.05(1.48) 30.93 Glaucoma 20 shot 8.90(2.65) 9.21(4.39) 11.59(2.93) 9.90 20% 31.51(2.34) 31.73(3.92) 36.11(2.01) 33.12 Mixed 20 shot 8.11(2.79) 6.90(2.74) 11.37(2.85) 8.79 20% 27.25(2.49) 26.98(3.64) 30.21(2.58) 28.15 mBERT FR IT ES Avg. Neoplasm 20 shot 10.07(7.62) 20.42(8.27) 17.92(8.68) 16.04 20% 46.69(0.29) 47.86(5.75) 51.79(3.81) 48.78 Glaucoma 20 shot 14.35(10.03) 10.39(4.11) 17.31(8.56) 14.02 20% 49.38(0.43) 46.66(2.06) 52.98(1.83) 49.67 Mixed 20 shot 10.17(6.42) 9.87(9.48) 24.32(3.87) 14.79 20% 46.47(1.92) 47.94(0.66) 49.86(2.64) 48.09

Table 10: Average F1-scores and standard deviation of cross-lingual few-shot results using EntLM and fine-tuning mBERT with 20-shot and 20%.

Appendix D Monolingual, multilingual and cross-lingual mDeBERTa results

Monolingual, multilingual, and cross-lingual mDeBERTa results.

Test set English Spanish French Italian Avg.
gold monolingual data-transfer
Neoplasm 59.29(0.57) 58.46(2.53) 60.66(1.99) 58.19(1.11) 59.15
Glaucoma 64.38(1.21) 64.84(0.69) 63.17(1.45) 67.39(1.04) 64.95
Mixed 59.75(2.33) 57.14(1.24) 57.05(1.47) 56.71(0.70) 57.66
gold monolingual data-transfer (post)
Neoplasm 59.29(0.57) 58.83(1.44) 55.39(1.20) 58.19(1.26) 57.93
Glaucoma 64.38(1.21) 63.12(2.15) 60.36(0.65) 64.38(2.56) 63.06
Mixed 59.75(2.33) 57.78(1.77) 53.51(0.98) 55.30(2.32) 56.59
multilingual data-transfer
Neoplasm 63.16(0.66) 61.21(0.47) 56.44(1.69) 54.16(1.62) 58.74
Glaucoma 69.53(1.24) 67.92(1.17) 64.62(0.58) 60.58(1.33) 65.66
Mixed 61.96(2.27) 61.81(0.53) 52.61(0.63) 53.36(0.38) 57.44
multilingual data-transfer (post)
Neoplasm 65.68(0.24) 62.52(0.51) 57.81(0.78) 55.03(0.41) 60.26
Glaucoma 70.26(1.21) 68.25(0.37) 63.67(0.98) 64.97(1.43) 66.79
Mixed 65.66(0.88) 60.76(1.18) 57.88(0.62) 57.31(3.30) 60.40
cross-lingual model-transfer
Neoplasm - 57.29(2.11) 53.91(0.64) 53.72(0.77) 56.05
Glaucoma - 62.07(0.52) 55.27(1.61) 57.54(3.31) 59.82
Mixed - 54.95(2.03) 50.63(0.30) 52.35(1.57) 54.42
Table 11: F1-scores and their averages per test set from the argument component detection results of monolingual, monolingual post-processed, multilingual, multilingual post-processed, and cross-lingual experiments using mDeBERTa.