<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta>
      <journal-title-group>
        <journal-title>Forum for Information Retrieval Evaluation, December</journal-title>
      </journal-title-group>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>Entity and Keyword Guided Highlight Generation from Scientific Abstracts Using Large Language Models</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Nishalini K</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Sreenath K A</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Anand Kumar M</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Navya Binu</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Information Technology, National Institute of Technology Karnataka</institution>
          ,
          <addr-line>Surathkal</addr-line>
          ,
          <country country="IN">India</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Shiv Nadar University Chennai</institution>
          ,
          <addr-line>Tamil Nadu</addr-line>
          ,
          <country country="IN">India</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2025</year>
      </pub-date>
      <volume>1</volume>
      <fpage>7</fpage>
      <lpage>20</lpage>
      <abstract>
        <p>Recent years have seen exponential growth in scientific publications, making it increasingly challenging for researchers to keep pace with new findings across their fields. Abstracts, while informative, are often too lengthy for quick comprehension and discoverability enhancing the need for concise research highlights. We propose an automated pipeline for highlight generation that integrates entity extraction with SciBERT, keyword extraction with KeyBERT, sentence ranking with token budgeting, and supervised fine-tuning of LLaMA. Additionally, we explore a retrieval-augmented generation approach using BART, SciBART and T5 models with FAISS-indexed similar examples to provide contextual guidance during generation. Experiments on the MixSub dataset demonstrate that reference-aligned filtering enhances highlight quality in the constrained approach, achieving ROUGE-1, ROUGE-2 and ROUGE-L F1-scores of 32.03, 9.25 and 20.33, respectively, METEOR score of 27.31, while the retrieval-augmented method shows BART consistently outperforming SciBART and T5. Both approaches ofer scalable solutions to information overload in scientific publishing.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Highlight Generation</kwd>
        <kwd>Generative AI</kwd>
        <kwd>SciBERT</kwd>
        <kwd>KeyBERT</kwd>
        <kwd>LLaMA</kwd>
        <kwd>BART</kwd>
        <kwd>SciBART</kwd>
        <kwd>T5</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        Recent studies show that the total number of articles indexed in major databases have grown
approximately 47% between 2016 and 2022 [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ], far outpacing the growth of practicing scientists and dramatically
increasing the publication workload per researcher. This volume makes comprehensive literature review
increasingly challenging, particularly when the abstracts themselves can be lengthy and complex.
      </p>
      <p>To address this, many journals have adopted research highlights. Research highlights are concise
bullet-point summaries of key findings that emerge as a critical tool for rapid comprehension. However,
creating such highlights manually for the vast and continuously growing body of literature is impractical,
motivating the need for automated solutions.</p>
      <p>
        Recent advances in natural language processing (NLP) and large language models (LLMs) present
promising avenues for this challenge. Building on the foundational work by Rehman et al. [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] that
established benchmark performance using pointer-generator networks with SciBERT embeddings, this
work continues to explore automated highlight generation approaches. Yet, unconstrained generation
from LLMs often risks factual inaccuracies, omissions, or hallucinations. A key insight driving this work
is that research highlights can be made more accurate and focused when LLMs are guided explicitly
by structured signals extracted from abstracts. Specifically, entities and domain-specific keywords can
serve as constraints, anchoring the generation process to verifiable content and reducing the likelihood
of irrelevant or fabricated information.
      </p>
      <p>
        In this paper, we introduce an end-to-end pipeline for automated highlight generation from scientific
abstracts using the MixSub-SciHigh dataset. Our approach integrates four components: (1) Named Entity
Recognition, (2) Keyword Extraction, (3) Sentence Ranking with token budgeting, and (4) Supervised
Fine-Tuning of Large Language Models [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] for guided highlight generation. Additionally, we explore
an alternative prompt-driven retrieval-augmented generation approach that involves prompting and
      </p>
      <p>Fine-tuning the BART, T5, and SciBART models to create highlights by obtaining similar abstract
highlight pairs from Faiss vector stores. One variant of the vector store utilizes sentence-transformer
embeddings for BART and T5, whereas another uses Specter2 embeddings for SciBART to facilitate
similarity matching via Faiss.</p>
      <p>
        We evaluate both approaches using standard summarization metrics ROUGE [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] and METEOR [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ].
By combining domain-specific constraints with LLM-based summarization and exploring
retrievalaugmented alternatives, this work contributes frameworks that balance accuracy, eficiency, and
scalability in processing the ever-expanding corpus of scientific knowledge.
      </p>
    </sec>
    <sec id="sec-2">
      <title>2. Literature Review</title>
      <p>
        The field of automatic text summarization has undergone a significant transformation over the past
decades, evolving from simple rule-based extraction to sophisticated neural generation systems. The
earliest approaches, as illustrated by Kupiec et al. [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], focused on extractive summarization using
statistical features to identify and rank important sentences within documents. However, these methods
operated on surface-level features such as sentence position and word frequency, with designs that
did not account for semantic relationships or domain-specific linguistic properties. Moreover, while
computationally eficient, they were limited by their inability to generate novel text or adapt content to
specific summarization requirements.
      </p>
      <p>
        The researchers then began exploring abstractive summarization methods capable of generating novel
text rather than merely extracting sentences. Nallapati et al. [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] applied attentional encoder-decoder
Recurrent Neural Networks to abstractive summarization, proposing novel architectural variants to
address critical challenges such as modeling keywords, capturing hierarchical sentence structure, and
handling rare or unseen words. This foundational work established sequence-to-sequence models as a
viable approach for abstractive text generation beyond simple extractive methods.
      </p>
      <p>
        See et al. [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] proposed a hybrid pointer-generator network architecture that augments the standard
sequence-to-sequence attentional model. This architecture addresses two shortcomings in neural
abstractive summarization: (i) inaccurate reproduction of factual details and handling of out-of-vocabulary
words through a hybrid mechanism that can copy words from the source text via pointing while
retaining the ability to generate novel words from the vocabulary, and (ii) repetition in generated text through
a coverage mechanism that maintains a coverage vector tracking the sum of attention distributions
over previous decoder timesteps. This hybrid approach balances extractive and abstractive capabilities
within a unified framework.
      </p>
      <p>
        The integration of pre-trained language models brought significant advances to scientific text
processing. Beltagy et al. [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] introduced SciBERT, a BERT-based language model trained on a large corpus
of scientific publications from computer science and biomedical domains with a domain-specific
vocabulary constructed from scientific text. This architecture design addresses the challenge of processing
specialized scientific vocabulary and domain-specific language, which difer substantially from general
domain corpora on which standard BERT is trained. SciBERT’s design is particularly relevant for
research highlight generation, where understanding specialized scientific vocabulary and terminology
is necessary for accurate processing of domain-specific content.
      </p>
      <p>
        Specialized research on highlights generation has emerged as researchers recognize the unique
requirements of condensing scientific papers into key findings. Rehman et al. initiated systematic
exploration of this task with foundational work [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] establishing pointer-generator networks with coverage
mechanisms for automatic generation of research highlights from scientific abstracts, using general word
embeddings (GloVe) and seq2seq architectures with BiLSTM encoders. Building on this architecture,
subsequent work [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] explored the integration of Named Entity Recognition to treat multi-word entities
as single tokens, addressing the challenge of preventing fragmentation of domain-relevant terms during
generation. In parallel, analysis of pre-trained summarization models [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] compared the efectiveness
of models like PEGASUS, T5, and BART across multiple datasets. The progression continued with [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ]
investigation of ELMo contextual embeddings as semantic representations, moving beyond general
embeddings to context-sensitive word meanings while maintaining the pointer-generator and coverage
framework. This methodological progression led to [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] the combination of SciBERT domain-specific
embeddings with pointer-generator networks and coverage mechanisms, enabling the model to
probabilistically decide between generating novel words from the vocabulary and copying source terms
via attention-based pointing. This architecture combines contextual embeddings from domain-specific
language models with hybrid abstractive-extractive mechanisms. Most recently, comprehensive
evaluation frameworks have been proposed [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] to assess highlight generation quality through multiple
metrics and study the factual consistency of neural summaries. Collectively, these works demonstrate a
systematic progression of architectural refinements from basic pointer-generator mechanisms with
general embeddings toward hybrid architectures that integrate domain-specific embeddings (ELMo,
then SciBERT) and explicit entity-aware tokenization.
      </p>
      <p>Our work extends this progression by introducing two complementary approaches that address
current limitations in factual grounding and domain-specific control. We propose explicit entity and
keyword constraints derived from fine-tuned domain models, combined with reference-aligned filtering
to ensure that generated highlights accurately reflect key scientific concepts. Additionally, we explore
retrieval-augmented generation paradigms that leverage semantically similar examples to guide the
generation process, ofering an alternative pathway for improving highlight quality and relevance.</p>
    </sec>
    <sec id="sec-3">
      <title>3. Entity and Keyword Guided Highlight Generation</title>
      <p>This section describes how our model produces research highlights from scientific abstracts using four
integrated components: Named Entity Recognition with a fine-tuned SciBERT, Keyword extraction using
KeyBERT and sentence embeddings, Sentence ranking combined with token budgeting and Supervised
ifne-tuning of LLaMA. Together, these steps identify key concepts, select the most informative sentences
within length limits, and train the model to generate concise, accurate summaries.</p>
      <sec id="sec-3-1">
        <title>3.1. Dataset &amp; Preprocessing</title>
        <p>
          We use the MixSub dataset [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ], a multi-disciplinary corpus containing 19,785 scientific research papers
from ScienceDirect (published in 2020) with author-written highlights. The dataset spans diverse
scientific disciplines, with each example consisting of an abstract paired with highlights. The average
abstract length is 148 words, while highlights average 57 words, with 72% of papers having highlights
at least 1.5 times shorter than their abstracts.
        </p>
        <p>We apply a simple text cleaning process to prepare the abstracts. We begin by converting all text
to lowercase for consistency, then removing standard punctuation and common English stop words
using NLTK’s stopword list. Short words with fewer than three characters are also filtered out, as
these typically don’t contribute meaningful information to our analysis. We also perform an additional
cleaning step that removes unwanted characters while preserving essential punctuation like commas
and periods, which helps maintain the text’s readability and structure.</p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Named Entity Recognition using Fine-Tuned SciBERT</title>
        <p>
          We have fine-tuned the SciBERT model ( scivocab-uncased) on a combination of scientific NER
datasets-including SciERC (SciIE) [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ], BC5DR [
          <xref ref-type="bibr" rid="ref16">16</xref>
          ], JNLPBA, and NCBI-Disease [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ], to extract
domainspecific entities from scientific abstracts. This multi-dataset fine-tuning has improved the model’s ability
to recognize a wide spectrum of entity types commonly found in scientific literature, namely: [Method,
Task, Entity, OtherScientificTerm, Material, Metric, Generic, protein, cell_type, Disease, cell_line, DNA,
and RNA]. We have ranked these entity types according to a manually predefined priority schema
tailored to the scientific domain. This ranking has reflected the characteristics of the MixSub-SciHigh
dataset, which primarily consists of scientific abstracts.
        </p>
        <p>Because SciBERT imposes a 512-token input limit, we have segmented each abstract into overlapping
chunks of 500 tokens with a 50-token overlap to ensure that all relevant information has been captured
while maintaining contextual continuity across chunks. From these chunks, we have extracted entities
and removed duplicates.</p>
        <p>Next, we have ranked the extracted entities based on the priority schema and initially selected 20
unique entities per abstract. To ensure that the entity constraints provided to the model have been
grounded in the reference output, we have applied a filtering step that retains only those entities
explicitly present in the corresponding author-written highlights. We have retained the top five-ranked
entities and used them to train the model with the entity constraints. For the validation set, however,
we have omitted this filtering step. Figure 2 illustrates this complete NER pipeline.</p>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. Keyword Extraction with KeyBERT and Sentence Embeddings</title>
        <p>
          To extract semantically rich bigram keyphrases from scientific abstracts, we employ KeyBERT, a
lightweight yet efective keyphrase extraction framework [
          <xref ref-type="bibr" rid="ref18">18</xref>
          ]. KeyBERT begins by embedding both
the full abstract and its candidate keyphrases into the same high-dimensional semantic space. In our
implementation, we use the all-MiniLM-L6-v2 model from the SentenceTransformers library to generate
these contextualized embeddings, as it produces compact vectors that accurately capture the meaning
of short text spans. Figure 3 illustrates the overall keyword extraction pipeline. This process has three
main stages as given below:
1. Candidate Generation: We apply a CountVectorizer over the abstract to form all possible bigram
phrases. This yields a set of candidates  = {1, 2, . . . , }.
2. Semantic Scoring: Each candidate  and the abstract  receive embeddings in the embedding
spaceR, denoted
        </p>
        <p>∈ R ,  ∈ R .</p>
        <p>We then compute cosine similarities to measure relevance to the document and redundancy
between candidates,</p>
        <p>(, ) = cos(, ), (,  ) = cos(,  ).</p>
        <p>relevance while minimizing redundancy:
3. MaxSum Selection: The goal is to select a subset  ⊆ , with || = , that maximizes document
 =</p>
        <p>arg max
′⊆ , |′|= ∈′
︂[ ∑︁ (, ) −</p>
        <p>∑︁
,∈′
&lt;
(,  ) ,
︂]
(1)
where  ≥ 0 controls the trade-of between relevance and redundancy.</p>
        <p>KeyBERT first ranks all bigram candidates by their similarity to the abstract and retains the top 20 as
initial choices. It then applies the MaxSum strategy internally to select the final top five keyphrases. For
training data, we apply the filtering strategy that retains only keyphrases appearing in the author-written
highlights, and this filtering is not applied to validation data.</p>
        <p>These keyphrases, each a concise, semantically aligned representation of the abstract’s core concepts
and entities, are passed on as constraints along with the prompt to guide the subsequent highlight
generation stage.</p>
      </sec>
      <sec id="sec-3-4">
        <title>3.4. Sentence Ranking and Token Budgeting</title>
        <p>
          LLMs generally have strict input length constraints, and we further face computational resource
limitations. We train on Kaggle’s T4 GPU, which imposes a 512-token sequence length limit per input
to avoid CUDA out-of-memory errors. Consequently, we feed only the most relevant portions of
each abstract into the model. To achieve this, we implement a token-budgeting strategy based on
sentence ranking with SPECTER embeddings [
          <xref ref-type="bibr" rid="ref19">19</xref>
          ]. This approach ensures that we preserve contextually
important sentences while adhering to strict input size constraints.
        </p>
        <sec id="sec-3-4-1">
          <title>3.4.1. Token Budget Allocation</title>
          <p>Let the maximum allowed token length be denoted as max = 512. This budget is divided among
the prompt, the abstract content, and the reserved space for generated highlights. The prompt and
constraints together have a length of approximately prompt ≈
also referred to as the completion, has a length of completion = 128 tokens. Consequently, the number
120 tokens. The generated highlight,
of tokens available for the abstract can be calculated as</p>
          <p>abstract = max − prompt − completion ≈ 264
This means that, after accounting for the prompt and the generated highlight, about 264 tokens remain
for composing the abstract.</p>
        </sec>
        <sec id="sec-3-4-2">
          <title>3.4.2. Sentence Embedding and Similarity Scoring</title>
          <p>Each abstract is split into individual sentences using the NLTK sentence tokenizer function. Let the set
of abstract sentences be denoted as:
Using the SPECTER model, each sentence  is embedded into a vector e ∈ R. The overall abstract
embedding e¯ is computed as the mean of all sentence embeddings:
 = {1, 2, . . . , }
¯=
1 ∑︁ 
 =1
We then compute the cosine similarity between each sentence and the abstract mean:
similarity() = cos(¯, ) =</p>
          <p>¯ · 
‖¯‖ · ‖ ‖
(2)
(3)
(4)
(5)</p>
        </sec>
        <sec id="sec-3-4-3">
          <title>3.4.3. Keyword and Entity Boosting</title>
          <p>To improve factual alignment, we further boost sentence scores based on the presence of extracted
keywords or named entities. The final sentence importance score is calculated as:</p>
          <p>score() = sim() +  · keyword() +  · entity()
where keyword() equals 1 if  contains a keyword and 0 otherwise, and entity() equals 1 if  contains
a named entity and 0 otherwise, with  =  = 1.5.</p>
        </sec>
        <sec id="sec-3-4-4">
          <title>3.4.4. Token-Constrained Sentence Selection</title>
          <p>Sentences are sorted in descending order of their final score. Let  () denote the token length of
sentence . The sentence subset * ⊆  is selected greedily such that:
∑︁  () ≤ abstract
∈*
Selected sentences are then reordered to match their original sequence in the abstract to preserve
narrative flow and coherence.</p>
          <p>This approach allows us to compress abstracts efectively while maintaining coverage of important
ideas and terminology.</p>
          <p>Boosting based on keywords and named entities ensures that the model’s inputs align with the
focus of the target highlights. The use of a hard token budget avoids truncation at the tokenizer level,
which might otherwise cut of relevant context mid-sentence. By combining semantic importance (via
SPECTER) and factual constraints (via entity/keywords), our token budgeting mechanism contributes
to both the factuality and eficiency of model training under limited GPU resources.</p>
        </sec>
      </sec>
      <sec id="sec-3-5">
        <title>3.5. Supervised Fine-Tuning</title>
        <p>
          We generate research highlights from scientific abstracts using supervised fine-tuning of the
LLaMA-27B-chat model [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ]. The objective is to train the model to produce concise, factually grounded highlights
similar to author-written highlights based on instruction-following prompts.
        </p>
        <p>Each training sample consists of an input prompt containing the abstract (trimmed using token
budgeting), along with a set of constraints(top-ranked keywords and named entity phrases). The
target output (completion) is the human-written research highlight. We concatenate the prompt and
completion into a single training instance as required by the LLaMA instruction format.</p>
        <p>
          We apply QLoRA [
          <xref ref-type="bibr" rid="ref21">21</xref>
          ] to enable memory-eficient fine-tuning of the model. QLoRA reduces model
size through 4-bit quantization and updates only a small set of parameters via LoRA adapters, allowing
eficient training [
          <xref ref-type="bibr" rid="ref22">22</xref>
          ] without requiring high-end GPUs. The base model is loaded in 4-bit precision
using the bitsandbytes library, while computations are performed in float16.
        </p>
        <p>For training, we use a LoRA rank of 16, a LoRA alpha of 32, and a dropout rate of 0.1. The model
is trained for one epoch with 1 batch per GPU and an accumulation step size of 8 for gradients. We
optimize using the PagedAdamW optimizer with a learning rate of 2 × 10− 4, a cosine scheduler, 3%
warm-up, and gradient clipping with a max norm of 0.3. The maximum sequence length is fixed at 512
tokens. Mixed-precision training is disabled due to hardware limitations on the Kaggle T4 GPU.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Prompt-Driven Retrieval-Augmented Generation Pipeline</title>
      <p>
        As an alternative method, we implement a retrieval-augmented generation (RAG) approach [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ] that
makes use of similar abstract-highlight pairs stored in Faiss vector stores, one utilizing
sentencetransformer embeddings for BART and T5, and another using Specter2 embeddings for SciBART
to facilitate the generation process. This method integrates semantic retrieval of the top-k nearest
examples with fine-tuned sequence-to-sequence models (BART, T5, and SciBART), creating prompts
that incorporate the new abstract along with the retrieved examples to produce research highlights.
      </p>
      <p>Prior to building the retrieval pipeline, we performed basic preprocessing of the dataset using the
Stanza NLP package. This phase involves tokenization, splitting sentences, and normalization to achieve
a uniform text representation throughout the abstracts and highlights.</p>
      <sec id="sec-4-1">
        <title>4.1. Semantic Embedding and FAISS Indexing</title>
        <p>
          To retrieve semantically similar samples, we use Sentence-BERT [
          <xref ref-type="bibr" rid="ref24">24</xref>
          ] and Specter2 to convert abstracts
and highlights in the training set into dense vector embeddings. These embeddings are indexed using
Facebook AI Similarity Search (FAISS) [
          <xref ref-type="bibr" rid="ref25">25</xref>
          ], an eficient search library for high-dimensional data, and
separate FAISS indices are built for the Sentence-BERT and Specter2 embeddings. These indices are
used during both training and inference to retrieve the top- similar abstract-highlight pairs.
        </p>
        <p>Let an abstract  be a sequence of tokens:
The Sentence-BERT encoder SBERT(· ) generates a dense embedding:
 = {1, 2, . . . , }
v = SBERT() ∈ R
where  is the embedding dimension.</p>
        <p>Let  = {(v1, ℎ1), (v2, ℎ2), . . . , (v , ℎ )} be the set of embedded abstract-highlight pairs. For
a new query abstract embedding v, we retrieve the top- similar samples by maximizing cosine</p>
        <p>TopK(v) = arg top-
∈
︂(</p>
        <p>v · v )︂
‖v‖‖v ‖
(6)</p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Retrieval-Augmented Prompt Construction</title>
        <p>
          For each new abstract, whether in training or validation, we retrieve the top- most similar examples
from the FAISS index. These retrieved pairs are formatted into a template-style prompt inspired by
incontext learning approaches [
          <xref ref-type="bibr" rid="ref26">26</xref>
          ]. The prompt presents three example abstract-summary pairs, followed
by the new abstract to summarize. This strategy helps the model understand the summarization context
by observing relevant examples before generating its output.
        </p>
      </sec>
      <sec id="sec-4-3">
        <title>4.3. Model Fine-Tuning with Teacher Forcing</title>
        <p>
          We fine -tune the BART model [
          <xref ref-type="bibr" rid="ref27">27</xref>
          ], which is a transformer-based sequence-to-sequence framework
that has been pre-trained using a denoising autoencoding approach, for the purpose of generating
highlights from scientific abstracts. Additionally, we utilize the same retrieval-augmented method
for the domain-specialized SciBART and the general-purpose T5 model [28]. To provide contextual
examples to the models, we create a prompt-based, retrieval-augmented training dataset; in this dataset,
each abstract from the original training set is utilized as a new abstract, with its corresponding highlight
acting as the target summary.
        </p>
        <p>To enhance the input, we retrieve the top- semantically similar abstract–summary pairs using FAISS
indices built on Sentence-BERT embeddings for BART and T5, as well as Specter2 embeddings for
SciBART, adjusting  to evaluate how the quantity of examples influences the quality of generation.
From these, we exclude the current abstract if it is included in the retrieved set and employ the resulting
pairs as contextual examples. The chosen examples are then organized into a structured input prompt
using a consistent natural language template as follows:</p>
        <p>Abstract1:
...</p>
        <p>Summary1:
...</p>
        <p>Abstract2:
...</p>
        <p>Summary2:
...</p>
        <p>This prompt serves as the model’s input, while the original highlight becomes the target output. All
input-target pairs are stored in a structured CSV file and used for supervised fine-tuning of the model.
The training employs teacher forcing, wherein the ground truth summary tokens are supplied during
decoding to stabilize learning and accelerate convergence. We utilize the
sentence-transformers/allMiniLM-L6-v2 model and tokenizer from the HuggingFace Transformers library for BART and T5, and
the allenai/ specter2-base model with AutoTokenizer for SciBART. This strategy enables the model
to leverage semantically relevant examples while learning to generate coherent and context-aware
summaries tailored to scientific texts.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Results</title>
      <p>In the Entity and Keyword guided Highlight Generation approach, to understand the impact of diferent
input configurations on highlight generation quality, we evaluate six variants (V1–V6) of our model.
These configurations vary by abstract length (complete vs. trimmed), inclusion of named entity phrases
and keywords, and whether a filtering step is applied to retain only those entity phrases and keywords
present in the reference highlights. Table 1 summarizes the ROUGE and METEOR scores for each
variant.</p>
      <p>Our baseline, V1, uses the complete abstract without any entity or keyword guidance. While this
provides the model with full contextual information, it also introduces practical limitations. Since the
maximum input length during training is capped at 512 tokens, the absence of trimming means that the
output space reserved for generating highlights is sometimes pushed beyond the token limit, leading</p>
      <sec id="sec-5-1">
        <title>Model</title>
        <p>Complete
Trimmed
Trimmed
Trimmed
Trimmed
Trimmed
No
No
Yes
No
Yes
Yes</p>
      </sec>
      <sec id="sec-5-2">
        <title>Model</title>
        <p>BART
SciBART
BART
BART
T5
T5
to partial or truncated highlight generations. This may impact learning, especially in cases where the
target output is not fully visible. Despite this, V1 achieves a ROUGE-1 score of 30.17, ROUGE-2 score
of 7.28, ROUGE-L score of 18.35 and a METEOR score of 25.33, making it a good starting point for
comparison.</p>
        <p>V2 uses a trimmed abstract but no entities, keywords, or filtering. It slightly outperforms V1 across
all metrics, achievinging ROUGE-1 score of 30.53, ROUGE-2 score of 07.55, ROUGE-L score of 18.83 and
METEOR score of 25.71, likely because trimming helps prioritize key content while ensuring enough
space for highlight generation. However, with no additional guidance, the model relies entirely on
the trimmed abstract, and the improvement can be attributed to better token management rather than
semantic direction.</p>
        <p>The V6 configuration demonstrates consistent improvement with ROUGE-1 increasing to 32.03,
ROUGE-2 to 09.25, ROUGE-L to 20.33, and METEOR to 27.31. Overall, V6 emerges as the most performant
and reliable configuration in terms of factual consistency and generation quality.</p>
        <p>In the Prompt-driven Retrieval Augmented approach, we evaluate the efectiveness of the
retrievalaugmented pipeline by comparing the performance of BART, SciBART, and T5 models under diferent
retrieval configurations. Specifically, we examine how varying the number of retrieved examples (  = 3,
 = 5, and  = 7) influences the quality of the generated highlights. Table 2 reports the ROUGE-1,
ROUGE-2, ROUGE-L, and METEOR scores for all settings.</p>
        <p>In this setup, all models are fine-tuned to generate highlights for scientific abstracts using the same
retrieval-augmented prompting strategy. For each input abstract, we retrieve the top- most similar
abstract-highlight pairs using FAISS indices built on all-MiniLM-L6-v2 embeddings for BART and T5,
and on specter2-base embeddings for SciBART, ensuring a fair comparison between models.</p>
        <p>BART achieves the strongest overall performance, with its best results at top-3 retrievals (ROUGE-1:
22.21, ROUGE-2: 5.21, ROUGE-L: 15.74, METEOR: 13.82). SciBART, though competitive, lags behind
BART under the same setting (ROUGE-1: 17.44, ROUGE-2: 1.61, ROUGE-L: 11.52, METEOR: 12.82). For
BART, increasing  from 3 to 5 or 7 leads to reduced performance, due to longer, less focused prompts. In
contrast, T5 shows improvement when moving from  = 3 (ROUGE-L: 07.03) to  = 5 (ROUGE-L:10.07),
indicating that it gains from having more context, although its results are still considerably lower than
those of BART.</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>6. Discussion</title>
      <sec id="sec-6-1">
        <title>6.1. Qualitative Error Analysis</title>
        <p>Qualitative analysis of model-generated highlights reveals systematic error patterns that provide deeper
insights into the strengths and limitations of our approach. We analyzed a representative sample to
identify recurring failure modes and understand their underlying causes.</p>
        <p>Our analysis reveals numerical discrepancies in model-generated highlights. For example, while
the source abstract reports "36.4% experienced stress," the corresponding generated highlight exhibits
precision degradation, producing "36.5% experienced stress." According to Shah et al. [29], such
numerical inconsistencies arise from fundamental limitations in how LLMs encode numerical information,
particularly when numbers are tokenized and processed through attention mechanisms that may lose
precise numerical relationships.</p>
        <p>Beyond numerical errors, we observed over-abstraction in cases where model-generated highlights
replace domain-specific terminology with more generic language, despite our entity and keyword-guided
constraints. For instance, in a caregiver mental health study, the source abstract emphasizes specific
intervention-related barriers: "negative perception of home care therapy is associated with higher strain"
and "not using tele-rehabilitation and perception of it being a poor medium." However, the generated
highlights abstract these to generalized pandemic-related barriers-"caregivers reported an increase in
strain, particularly in the areas of social isolation, financial strain, and childcare responsibilities." While
the reference highlights preserve intervention-specific context (home care therapy, tele-rehabilitation
adoption), the generated highlights disconnect from the study’s focus on rehabilitation service barriers.
This over-abstraction reflects the model’s tendency to prioritize high-frequency generic language
patterns over domain-specific terminology during generation, even when such terms are successfully
extracted through our entity and keyword guidance pipeline.</p>
      </sec>
      <sec id="sec-6-2">
        <title>6.2. Performance Analysis</title>
        <p>The performance comparison across six variants in the entity and keyword guided highlight generation
approach demonstrates that simply providing more information or constraints does not guarantee
better outcomes. Rather, the quality and relevance of guidance play a very important role.</p>
        <p>Three critical design choices contribute to V6’s superior performance: (1) Trimmed Abstracts - using
sentence ranking and token budgeting, we select the most relevant 260–264 tokens from the abstract as
input. This preserves the full 128-token space for highlight generation, ensuring that the completion is
not cut of midway and stabilizing training. (2) Guided Constraints - V6 includes both named entity
phrases and keywords, which help the model focus on core concepts and terminology relevant to
the paper’s contributions. (3) Reference-Aligned Filtering - The most significant gain comes from a
ifltering step that retains only those entity phrases and keywords explicitly present in the
authorwritten highlights during training. This is in contrast to V5, which includes the same types of guidance
but without filtering. V5 underperforms, suggesting that unfiltered guidance may introduce noise by
highlighting irrelevant or overly specific content from the abstract.</p>
        <p>The filtering mechanism in V6 plays a crucial role in reducing hallucinations, a well-known challenge
in abstractive summarization. By grounding the model with only validated entity phrases and keywords,
V6 avoids fabricating unsupported content and stays focused on what actually matters. Overall, the
improvements observed in V6 show that efective highlight generation is not just about adding more
guidance, but about adding the right, reference-aligned guidance.</p>
        <p>The results from prompt-driven retrieval augmented approach indicate that retrieval-augmented
generation can enhance highlight generation when combined with strong sequence-to-sequence models
such as BART. Among the configurations evaluated in this methodology, BART with top-3 retrieval
achieves the best overall performance, suggesting that a concise and relevant context benefits its
generation abilities the most.</p>
        <p>SciBART performs reasonably well under top-3 retrievals but still does not match BART’s performance,
suggesting that while domain-specific pretraining is useful, the model benefits less from added retrieval
context. In contrast, T5 shows better outcomes with top-5 retrievals compared to top-3, suggesting
that it requires a larger number of examples to efectively utilize the retrieved context. Still, even with
this improvement, T5 outputs remain less accurate and fluent than those of BART. For both BART and
SciBART, increasing the number of retrieved examples beyond 3 tends to reduce performance, as excess
context dilutes prompt relevance and coherence.</p>
        <p>Overall, these findings highlight that both model selection and retrieval context size play a critical
role in designing efective retrieval-augmented summarization pipelines. Optimizing these factors
is essential to balance informativeness and focus, thereby producing high-quality, concise research
highlights.</p>
      </sec>
    </sec>
    <sec id="sec-7">
      <title>7. Conclusion</title>
      <p>We present a structured approach for automatically generating research highlights from scientific
abstracts using fine-tuned LLaMA. Our method integrates named entity recognition, keyword
extraction, and sentence-level importance ranking to guide highlight generation under strict computational
constraints.</p>
      <p>Our evaluation across six input configurations demonstrates that optimal results are achieved when
inputs are carefully curated through reference-aligned filtering. The V6 configuration, combining
trimmed abstracts, guided constraints, and reference-aligned filtering, achieves the highest performance,
confirming that efective highlight generation requires contextually relevant guidance rather than
simply more constraints.</p>
      <p>Additionally, we explore a retrieval-augmented generation approach that employs BART, SciBART,
and T5 models with FAISS-indexed abstract-highlight pairs as contextual examples. Although BART with
top-3 retrieval achieves the best performance in this configuration, and SciBART performs competitively
under similar conditions, the constrained fine-tuning approach proves more efective overall for scientific
highlight generation.</p>
      <p>One key limitation in our current setup was the 512-token input constraint, which limited how
much of the abstract and constraints could be passed to the model. With access to higher-end GPUs,
future experiments can extend the input length to 1024 tokens or more, allowing for richer context and
potentially more coherent outputs. Additionally, the entity extraction component can be improved by
training our SciBERT model on a broader set of scientific NER datasets. This could enhance the quality
and coverage of extracted entities, leading to even better guidance during generation.</p>
    </sec>
    <sec id="sec-8">
      <title>Declaration on Generative AI</title>
      <p>During the preparation of this work, the author(s) used Grammarly in order to: Grammar and spelling
check, Plagiarism detection. After using these tool(s)/service(s), the author(s) reviewed and edited the
content as needed and take(s) full responsibility for the publication’s content.</p>
    </sec>
    <sec id="sec-9">
      <title>Acknowledgments</title>
      <p>The work presented in this report is carried out as part of our internship under the
ANRF-SERBCRG Project titled “A Deep Explainable Framework for Semantically Similar Document Retrieval and
Summarization of Legal Text” (CRG/2023/007688) at the Department of Information Technology, National
Institute of Technology Karnataka (NITK), Surathkal.
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, Association for Computational Linguistics, Online, 2020, pp. 7871–7880.
doi:10.18653/v1/2020.acl-main.703.
[28] C. Rafel, N. Shazeer, A. Roberts, K. Lee, S. Narang, M. Matena, Y. Zhou, W. Li, P. J. Liu, Exploring
the limits of transfer learning with a unified text-to-text transformer, Journal of Machine Learning
Research 21 (2020) 1–67.
[29] R. S. Shah, V. Marupudi, R. Koenen, K. Bhardwaj, S. Varma, Numeric magnitude comparison efects
in large language models, in: Findings of the Association for Computational Linguistics: ACL
2023, Association for Computational Linguistics, Toronto, Canada, 2023, pp. 6147–6161. URL: https:
//doi.org/10.18653/v1/2023.findings-acl.383. doi: 10.18653/v1/2023.findings-acl.383.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Hanson</surname>
          </string-name>
          , P. G. Barreiro,
          <string-name>
            <given-names>P.</given-names>
            <surname>Crosetto</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Brockington</surname>
          </string-name>
          ,
          <source>The strain on scientific publishing, Quantitative Science Studies</source>
          <volume>5</volume>
          (
          <year>2024</year>
          )
          <fpage>823</fpage>
          -
          <lpage>843</lpage>
          . URL: https://doi.org/10.1162/qss_a_00327. doi:
          <volume>10</volume>
          . 1162/qss_a_
          <fpage>00327</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>T.</given-names>
            <surname>Rehman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. K.</given-names>
            <surname>Sanyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Chattopadhyay</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P. K.</given-names>
            <surname>Bhowmick</surname>
          </string-name>
          ,
          <string-name>
            <surname>P. P. Das</surname>
          </string-name>
          ,
          <article-title>Generation of highlights from research papers using pointer-generator networks and SciBERT embeddings</article-title>
          ,
          <source>IEEE Access 11</source>
          (
          <year>2023</year>
          )
          <fpage>91358</fpage>
          -
          <lpage>91374</lpage>
          . doi:
          <volume>10</volume>
          .1109/ACCESS.
          <year>2023</year>
          .
          <volume>3292300</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>H.</given-names>
            <surname>Touvron</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Lavril</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Izacard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Martinet</surname>
          </string-name>
          , M.
          <article-title>-</article-title>
          <string-name>
            <surname>A. Lachaux</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Lacroix</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <string-name>
            <surname>Rozière</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Goyal</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          <string-name>
            <surname>Hambro</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Azhar</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Rodriguez</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Joulin</surname>
          </string-name>
          , E. Grave, G. Lample,
          <article-title>LLaMA: Open and eficient foundation language models</article-title>
          ,
          <source>arXiv preprint arXiv:2302.13971</source>
          ,
          <year>2023</year>
          . URL: https://arxiv.org/abs/ 2302.13971.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>C.-Y.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <surname>ROUGE:</surname>
          </string-name>
          <article-title>A package for automatic evaluation of summaries, in: Text Summarization Branches Out, Association for Computational Linguistics</article-title>
          , Barcelona, Spain,
          <year>2004</year>
          , pp.
          <fpage>74</fpage>
          -
          <lpage>81</lpage>
          . URL: https://aclanthology.org/W04-1013/.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>A.</given-names>
            <surname>Lavie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Agarwal</surname>
          </string-name>
          ,
          <string-name>
            <surname>METEOR:</surname>
          </string-name>
          <article-title>An automatic metric for MT evaluation with high levels of correlation with human judgments</article-title>
          ,
          <source>in: Proceedings of the Second Workshop on Statistical Machine Translation, Association for Computational Linguistics</source>
          , Prague, Czech Republic,
          <year>2007</year>
          , pp.
          <fpage>228</fpage>
          -
          <lpage>231</lpage>
          . URL: https://aclanthology.org/W07-0734/.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>J.</given-names>
            <surname>Kupiec</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. O.</given-names>
            <surname>Pedersen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <article-title>A trainable document summarizer</article-title>
          ,
          <source>in: Proceedings of the 18th Annual International ACM SIGIR Conference on Research and Development in Information Retrieval</source>
          , ACM Press, Seattle, Washington, USA,
          <year>1995</year>
          , pp.
          <fpage>68</fpage>
          -
          <lpage>73</lpage>
          . URL: https://doi.org/10.1145/ 215206.215333. doi:
          <volume>10</volume>
          .1145/215206.215333.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>R.</given-names>
            <surname>Nallapati</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <surname>C. N. dos Santos</surname>
          </string-name>
          , Ç. Gülçehre,
          <string-name>
            <given-names>B.</given-names>
            <surname>Xiang</surname>
          </string-name>
          ,
          <article-title>Abstractive text summarization using sequence-to-sequence RNNs and beyond</article-title>
          ,
          <source>in: Proceedings of the 20th SIGNLL Conference on Computational Natural Language Learning (CoNLL)</source>
          ,
          <source>Association for Computational Linguistics</source>
          , Berlin, Germany,
          <year>2016</year>
          , pp.
          <fpage>280</fpage>
          -
          <lpage>290</lpage>
          . URL: https://aclanthology.org/K16-1028/. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>K16</fpage>
          -1028.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>A.</given-names>
            <surname>See</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P. J.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. D.</given-names>
            <surname>Manning</surname>
          </string-name>
          ,
          <article-title>Get to the point: Summarization with pointer-generator networks, in: Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (ACL), Association for Computational Linguistics</article-title>
          , Vancouver, Canada,
          <year>2017</year>
          , pp.
          <fpage>1073</fpage>
          -
          <lpage>1083</lpage>
          . URL: https://aclanthology.org/P17-1099/. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>P17</fpage>
          -1099.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>I.</given-names>
            <surname>Beltagy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lo</surname>
          </string-name>
          ,
          <string-name>
            <surname>A</surname>
          </string-name>
          . Cohan,
          <article-title>SciBERT: A pretrained language model for scientific text</article-title>
          ,
          <source>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)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Hong Kong, China,
          <year>2019</year>
          , pp.
          <fpage>3613</fpage>
          -
          <lpage>3618</lpage>
          . URL: https: //aclanthology.org/D19-1371/. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>D19</fpage>
          -1371.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>T.</given-names>
            <surname>Rehman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. K.</given-names>
            <surname>Sanyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Chattopadhyay</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P. K.</given-names>
            <surname>Bhowmick</surname>
          </string-name>
          ,
          <string-name>
            <surname>P. P. Das</surname>
          </string-name>
          ,
          <article-title>Automatic generation of research highlights from scientific abstracts</article-title>
          ,
          <source>in: Proceedings of the 2nd Workshop on Extraction and Evaluation of Knowledge Entities from Scientific Documents (EEKE</source>
          <year>2021</year>
          ),
          <article-title>CEUR-WS</article-title>
          .org, Online,
          <year>2021</year>
          , pp.
          <fpage>69</fpage>
          -
          <lpage>70</lpage>
          . URL: https://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>3004</volume>
          /paper10.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>T.</given-names>
            <surname>Rehman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. K.</given-names>
            <surname>Sanyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Majumder</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Chattopadhyay</surname>
          </string-name>
          ,
          <article-title>Named entity recognition based automatic generation of research highlights</article-title>
          ,
          <source>in: Proceedings of the Third Workshop on Scholarly Document Processing (SDP@COLING</source>
          <year>2022</year>
          ),
          <article-title>Association for Computational Linguistics</article-title>
          , Gyeongju, Republic of Korea,
          <year>2022</year>
          , pp.
          <fpage>163</fpage>
          -
          <lpage>169</lpage>
          . URL: https://aclanthology.org/
          <year>2022</year>
          .sdp-
          <volume>1</volume>
          .
          <fpage>18</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>T.</given-names>
            <surname>Rehman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Das</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. K.</given-names>
            <surname>Sanyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Chattopadhyay</surname>
          </string-name>
          ,
          <article-title>An analysis of abstractive text summarization using pre-trained models</article-title>
          ,
          <source>arXiv preprint arXiv:2303.12796</source>
          (
          <year>2023</year>
          ). URL: https://doi.org/10.48550/ arXiv.2303.12796. doi:
          <volume>10</volume>
          .48550/arXiv.2303.12796.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>T.</given-names>
            <surname>Rehman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. K.</given-names>
            <surname>Sanyal</surname>
          </string-name>
          , S. Chattopadhyay,
          <article-title>Research highlight generation with ELMo contextual embeddings</article-title>
          ,
          <source>Scalable Computing: Practice and Experience</source>
          <volume>24</volume>
          (
          <year>2023</year>
          )
          <fpage>181</fpage>
          -
          <lpage>190</lpage>
          . URL: https://doi. org/10.12694/scpe.v24i2.2238. doi:
          <volume>10</volume>
          .12694/scpe.v24i2.
          <fpage>2238</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>T.</given-names>
            <surname>Rehman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Chattopadhyay</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. K.</given-names>
            <surname>Sanyal</surname>
          </string-name>
          ,
          <article-title>Abstractive summarization of scientific documents: Models and evaluation techniques, in: Proceedings of the 15th Annual Meeting of the Forum for Information Retrieval Evaluation (FIRE 2023)</article-title>
          , ACM, Panjim, India,
          <year>2023</year>
          , pp.
          <fpage>121</fpage>
          -
          <lpage>124</lpage>
          . URL: https://doi.org/10.1145/3632754.3632771. doi:
          <volume>10</volume>
          .1145/3632754.3632771.
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>Q.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Pan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Caragea</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. J.</given-names>
            <surname>Latecki</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. C.</given-names>
            <surname>Dragut</surname>
          </string-name>
          ,
          <string-name>
            <surname>SciER:</surname>
          </string-name>
          <article-title>An entity and relation extraction dataset for datasets, methods, and tasks in scientific documents</article-title>
          ,
          <source>in: Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing (EMNLP)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Miami, FL, USA,
          <year>2024</year>
          , pp.
          <fpage>13083</fpage>
          -
          <lpage>13100</lpage>
          . URL: https://aclanthology.org/
          <year>2024</year>
          .emnlp-main.
          <volume>726</volume>
          /. doi:
          <volume>10</volume>
          .18653/v1/
          <year>2024</year>
          .emnlp-main.
          <volume>726</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>J.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. J.</given-names>
            <surname>Johnson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Sciaky</surname>
          </string-name>
          ,
          <string-name>
            <surname>C.-H. Wei</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Leaman</surname>
            ,
            <given-names>A. P.</given-names>
          </string-name>
          <string-name>
            <surname>Davis</surname>
            ,
            <given-names>C. J.</given-names>
          </string-name>
          <string-name>
            <surname>Mattingly</surname>
            ,
            <given-names>T. C.</given-names>
          </string-name>
          <string-name>
            <surname>Wiegers</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          <string-name>
            <surname>Lu</surname>
          </string-name>
          ,
          <article-title>BioCreative V CDR task corpus: A resource for chemical disease relation extraction</article-title>
          ,
          <year>Database 2016</year>
          (
          <year>2016</year>
          )
          <article-title>baw068</article-title>
          . URL: https://doi.org/10.1093/database/baw068. doi:
          <volume>10</volume>
          .1093/database/ baw068.
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>S.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>A neural multi-task learning framework to jointly model medical named entity recognition and normalization</article-title>
          ,
          <source>in: Proceedings of the Thirty-Third AAAI Conference on Artificial Intelligence</source>
          , AAAI Press, Honolulu, Hawaii, USA,
          <year>2019</year>
          , pp.
          <fpage>817</fpage>
          -
          <lpage>824</lpage>
          . doi:
          <volume>10</volume>
          .1609/aaai.v33i01.
          <fpage>3301817</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>B.</given-names>
            <surname>Issa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. B.</given-names>
            <surname>Jasser</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H. N.</given-names>
            <surname>Chua</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hamzah</surname>
          </string-name>
          ,
          <article-title>A comparative study on embedding models for keyword extraction using KeyBERT method</article-title>
          ,
          <source>in: Proceedings of the 13th IEEE International Conference on System Engineering and Technology (ICSET)</source>
          , IEEE,
          <string-name>
            <surname>Shah</surname>
            <given-names>Alam</given-names>
          </string-name>
          , Malaysia,
          <year>2023</year>
          , pp.
          <fpage>40</fpage>
          -
          <lpage>45</lpage>
          . doi:
          <volume>10</volume>
          .1109/ICSET59111.
          <year>2023</year>
          .
          <volume>10295108</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>A.</given-names>
            <surname>Cohan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Feldman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I.</given-names>
            <surname>Beltagy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Downey</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. S.</given-names>
            <surname>Weld</surname>
          </string-name>
          ,
          <article-title>SPECTER: Document-level representation learning using citation-informed transformers, in: Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics (ACL), Association for Computational Linguistics</article-title>
          , Online,
          <year>2020</year>
          , pp.
          <fpage>2270</fpage>
          -
          <lpage>2282</lpage>
          . URL: https://aclanthology.org/
          <year>2020</year>
          .acl-main.
          <volume>207</volume>
          /. doi:
          <volume>10</volume>
          .18653/ v1/
          <year>2020</year>
          .acl-main.
          <volume>207</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>V.</given-names>
            <surname>Nivethitha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Verma</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Bokadia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Jaju</surname>
          </string-name>
          ,
          <article-title>Fine-tuning LLaMA-2-7B model for conversation summarization</article-title>
          ,
          <source>in: Proceedings of the 15th International Conference on Computing Communication and Networking Technologies (ICCCNT)</source>
          , IEEE, Kamand, India,
          <year>2024</year>
          , pp.
          <fpage>1</fpage>
          -
          <lpage>7</lpage>
          . doi:
          <volume>10</volume>
          .1109/ICCCNT61001.
          <year>2024</year>
          .
          <volume>10724909</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Xie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Gu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Tian</surname>
          </string-name>
          , QA-LoRA:
          <article-title>Quantization-aware low-rank adaptation of large language models</article-title>
          ,
          <source>in: Proceedings of the Twelfth International Conference on Learning Representations (ICLR)</source>
          ,
          <article-title>OpenReview</article-title>
          .net, Vienna, Austria,
          <year>2024</year>
          . URL: https://openreview.net/forum?id=
          <fpage>WvFoJccpo8</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>X.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Ji</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Fu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Du</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Tang</surname>
          </string-name>
          , P-tuning v2:
          <article-title>Prompt tuning can be comparable to ifne-tuning universally across scales and tasks</article-title>
          ,
          <source>arXiv preprint arXiv:2110.07602</source>
          (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>P.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Perez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Piktus</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Petroni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Karpukhin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <surname>H. K</surname>
          </string-name>
          <article-title>"uttler</article-title>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lewis</surname>
          </string-name>
          , W.-t. Yih,
          <string-name>
            <surname>T. Rockt</surname>
          </string-name>
          <article-title>"aschel, S</article-title>
          . Riedel,
          <string-name>
            <given-names>D.</given-names>
            <surname>Kiela</surname>
          </string-name>
          ,
          <article-title>Retrieval-augmented generation for knowledge-intensive NLP tasks</article-title>
          ,
          <source>in: Advances in Neural Information Processing Systems</source>
          <volume>33</volume>
          , Curran Associates Inc.,
          <string-name>
            <surname>Red</surname>
            <given-names>Hook</given-names>
          </string-name>
          ,
          <string-name>
            <surname>NY</surname>
          </string-name>
          , USA,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>N.</given-names>
            <surname>Reimers</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Gurevych</surname>
          </string-name>
          , Sentence-BERT:
          <article-title>Sentence embeddings using siamese BERT-networks</article-title>
          ,
          <source>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)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Hong Kong, China,
          <year>2019</year>
          , pp.
          <fpage>3980</fpage>
          -
          <lpage>3990</lpage>
          . doi:
          <volume>10</volume>
          .18653/ v1/
          <fpage>D19</fpage>
          -1410.
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>M.</given-names>
            <surname>Douze</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Guzhva</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Deng</surname>
          </string-name>
          , J. Johnson, G. Szilvasy, P.-E. Mazar'e,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lomeli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Hosseini</surname>
          </string-name>
          ,
          <string-name>
            <surname>H.</surname>
          </string-name>
          <article-title>J'egou, The faiss library</article-title>
          ,
          <source>arXiv preprint arXiv:2401.08281</source>
          (
          <year>2024</year>
          ). doi:
          <volume>10</volume>
          .48550/arXiv.2401. 08281.
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>A.</given-names>
            <surname>Voronov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Wolf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ryabinin</surname>
          </string-name>
          ,
          <article-title>Mind your format: Towards consistent evaluation of in-context learning improvements, Findings of the Association for Computational Linguistics</article-title>
          ,
          <string-name>
            <surname>ACL</surname>
          </string-name>
          <year>2024</year>
          , Bangkok, Thailand and virtual meeting,
          <source>August 11-16</source>
          ,
          <year>2024</year>
          (
          <year>2024</year>
          )
          <fpage>6287</fpage>
          -
          <lpage>6310</lpage>
          . doi:
          <volume>10</volume>
          .18653/V1/
          <year>2024</year>
          .FINDINGS-ACL.
          <year>375</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>M.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ghazvininejad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Mohamed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Levy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Stoyanov</surname>
          </string-name>
          , L. Zettlemoyer,
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>