<!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>
      <issn pub-type="ppub">1613-0073</issn>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>Knowledge-graphs⋆</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Pranav Kasela</string-name>
          <email>pranav.kasela@unimib.it</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Gabriella Pasi</string-name>
          <email>gabriella.pasi@unimib.it</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Rafaele</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Perego</string-name>
          <email>raffaele.perego@isti.cnr.it</email>
        </contrib>
        <contrib contrib-type="author">
          <string-name>ISTI-CNR</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Italy</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Workshop</string-name>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>University of Milano-Bicocca</institution>
          ,
          <country country="IT">Italy</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Academic Search is a search task aimed to manage and retrieve scientific documents like journal articles and conference papers. Personalization in this context meets individual researchers' needs by leveraging, through user profiles, the user related information (e.g. documents authored by a researcher), to improve search efectiveness and to reduce the information overload. While citation graphs are a valuable means to support the outcome of recommender systems, their use in personalized academic search (with, e.g. nodes as papers and edges as citations) is still under-explored.</p>
      </abstract>
      <kwd-group>
        <kwd>Personalized information retrieval</kwd>
        <kwd>Knowledge graphs</kwd>
        <kwd>Neural information retrieval</kwd>
        <kwd>Dense retrieval</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>https://pkasela.github.io/ (P. Kasela); http://raffaele.isti.cnr.it/ (R. Perego)
CEUR</p>
      <p>ceur-ws.org</p>
    </sec>
    <sec id="sec-2">
      <title>2. PARK Architecture</title>
      <sec id="sec-2-1">
        <title>Retrieval Model</title>
        <p>QUERY</p>
        <sec id="sec-2-1-1">
          <title>USER</title>
        </sec>
        <sec id="sec-2-1-2">
          <title>Search</title>
        </sec>
        <sec id="sec-2-1-3">
          <title>Engine</title>
          <p>Top-k</p>
        </sec>
        <sec id="sec-2-1-4">
          <title>Documents</title>
          <p>Neural LM
Top-k</p>
        </sec>
        <sec id="sec-2-1-5">
          <title>Authors</title>
          <p>Query Embedding</p>
          <p>Doc Embeddings
Top Authors Embeddings
DenseScSoimreilarity</p>
          <p>First Stage</p>
          <p>Score
User Similarity</p>
          <p>Score
KG Embedding</p>
          <p>User Embedding</p>
        </sec>
      </sec>
      <sec id="sec-2-2">
        <title>User Model</title>
        <p>Final Score</p>
        <p>The neural bi-encoder model is trained by minimizing the distance between the query representation
and the associated relevant document representations while increasing the distance between the query
representation and the non relevant documents representations using the Triplet Margin Loss [16].
The final score for each document is given by a weighted combination of:
• BM25(, ) : lexical similarity.
• Dense(, ) : semantic similarity from the neural model.
• UserSim(,   ): cosine similarity between the user embedding and the authors of document  in
the knowledge graph embedding.</p>
        <p>(, ) = 
1 ⋅ BM25(, ) + 
2 ⋅ Dense(, ) + 
3 ⋅ UserSim(,   )
(1)
with  1 +  2 +  3 = 1 and   are optimized on a validation split.</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. User Modeling with Knowledge Graphs</title>
      <p>PARK encodes the authors in a vector space shared with the language model in order to capture both
bibliographic structure and textual semantics.</p>
      <p>Academic Knowledge Graph Construction Starting from a citation graph (papers as nodes;
citations as directed edges), we build a heterogeneous Knowledge Graph (KG) with four node types and
ifve relations:
• Nodes: Author (user), Document (paper), Venue (conference or journal), and Afiliation
(institution)
• Relations: wrote: Author → Document, cited: Document → Document, co_author: Author ↔
Author, in_venue: Document → Venue, and afiliated: Author → Afiliation</p>
      <p>DocAuumthoernt1</p>
      <p>Ve.n.ue
Cited</p>
      <p>Cited
DocAuumthoernt2 Cited DocAuumthoernt3</p>
      <p>Ve.n.ue Ve.n.ue</p>
      <p>Venue2
Affiliation2</p>
      <p>In_Venue
In_Venue</p>
      <p>Affliliated
Venue1</p>
      <p>Co_author Wrote
Knowledge Graph</p>
      <p>Affiliation1
In_Venue Affiliated</p>
      <p>USER1</p>
      <p>Cited Document1
USER2 Wrote</p>
      <p>Document2
Venue1 Venue2</p>
      <p>User1
Afiliation1 User2</p>
      <p>Afiliation2</p>
      <p>
        We embed the KG into the same  -dimensional latent space as our neural
1. Document nodes are initialized with fixed embeddings from the pre-trained MiniLM encoder.
2. Other nodes (authors, venues, afiliations) and all relations are jointly embedded using: TransE
[
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] for PARK-E, TransH [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] for PARK-H
Fixing document embeddings preserves their semantic features, while TransE/TransH learn to position
authors and entities relative to these fixed points, aligning structural properties of KG with the textual
signals from the retrieval model.
      </p>
      <p>User Embeddings &amp; Scoring Each author  is represented by their learned KG embedding. At query
time, we compute the user similarity score as the cosine similarity between the user embeddings of the
query issuer and the authors of the documents being scored. The score reflects the alignment of the
research profiles and interests of the user issuing the query and the authors of the paper being scored.
This score is integrated into our final ranking formula (Eq. 1).</p>
    </sec>
    <sec id="sec-4">
      <title>4. Evaluation</title>
      <p>
        The system is evaluated on four datasets specifically designed for evaluating model in the context
of personalized academic search (Computer Science, Political Science, Psychology, and Physics) [17].
We compare against the following baselines: BM25 [14], MiniLM [15], Mean [17], Attention [18],
Self Citation, CrossEncRA [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], CTRLIt [19], PageRank [20], POP (Popularity) [17]. We evaluate with
MAP@100, MRR@10, and NDCG@10. A convex sum of normalized scores ensures fair comparison
across models. The code is made publicly available1.
      </p>
      <p>PARK outperforms all baselines in Political Science, Psychology, and Physics (Table 1). In Computer
Science, the POP baseline remains competitive due to the high predictive value of citation counts.
Overall, PARK demonstrates robust efectiveness across diverse disciplines.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Ablation Study</title>
      <p>To understand the contribution of node types in the knowledge graph, we conduct an ablation study
using PARK-H (Table 2). The goal was to evaluate the efect of each node type (user, venue, and
afiliation) and their associated relations on the model’s retrieval performance. Results in Table 2
indicate:</p>
      <p>• Using only user nodes yields substantial gains over baseline.
1https://github.com/pkasela/PARK-Personalized_Academic_Retrieval_with_Knowledge-graphs
Efectivess of PARK-E and PARK-H compared to the competing methods on the four datasets. The best-performing
model is highlighted in boldface. Symbol * indicates a statistically significant diference over the
second-bestperforming model.
Computer Science</p>
      <p>Political Science</p>
      <p>Psychology
0.123
0.193
0.199
0.201
0.213
0.213
0.238*
0.228
0.230</p>
      <p>BM25
MiniLM</p>
      <p>Mean</p>
      <p>Attention
Self Citation</p>
      <p>CTRLIt
CrossEncRA
PageRank</p>
      <p>POP
PARK-E</p>
      <p>PARK-H</p>
    </sec>
    <sec id="sec-6">
      <title>6. Discussion and Future Work</title>
      <p>PARK demonstrates how knowledge graph-based user embeddings, when aligned with neural document
encoders, can improve personalized academic search. By representing academic entities in a unified
latent space, PARK captures both explicit citation relationships and latent author-topic patterns.</p>
      <p>While PARK performs well across most domains, limitations remain. The use of fixed document
embeddings may limit adaptability, and citation coverage biases could afect robustness. Future work
will explore: softening constraints on document embeddings; integrating popularity-based priors for
domains like CS; and adapting to open-world or streaming academic corpora.</p>
      <p>Overall, PARK advances the state-of-the-art in personalized academic search by combining structured
knowledge with dense text representations.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgments</title>
      <p>This work was supported by the European Union – Next Generation EU within the project NRPP M4C2,
Investment 1.,3 DD. 341–15 march 2022 – FAIR – Future Artificial Intelligence Research – Spoke 4
PE00000013 - D53C22002380006.</p>
      <p>This work was partially supported by the Spoke “Human-centered AI” of the M4C2 - Investimento 1.3,
Partenariato Esteso PE00000013 - “FAIR - Future Artificial Intelligence Research”, the “Extreme Food
Risk Analytics” (EFRA) project, Grant no. 101093026, funded by European Union – NextGenerationEU.</p>
    </sec>
    <sec id="sec-8">
      <title>Declaration on Generative AI</title>
      <p>During the preparation of this work, the author(s) used GPT-4 in order to: Grammar and spelling check,
Paraphrase and reword. 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>
      <p>Ablation study results for each node type on four datasets.
Proceedings of the AAAI Conference on Artificial Intelligence 28 (2014). doi: 10.1609/aaai.v28i1.
8870.
[14] S. E. Robertson, S. Walker, S. Jones, M. Hancock-Beaulieu, M. Gatford, Okapi at TREC-3, in: D. K.</p>
      <p>Harman (Ed.), Proceedings of The Third Text REtrieval Conference, TREC 1994, Gaithersburg,
Maryland, USA, November 2-4, 1994, volume 500-225 of NIST Special Publication, National Institute
of Standards and Technology (NIST), 1994, pp. 109–126. URL: http://trec.nist.gov/pubs/trec3/
papers/city.ps.gz.
[15] W. Wang, F. Wei, L. Dong, H. Bao, N. Yang, M. Zhou, Minilm: Deep self-attention distillation for
task-agnostic compression of pre-trained transformers, in: H. Larochelle, M. Ranzato, R. Hadsell,
M. Balcan, H. Lin (Eds.), Advances in Neural Information Processing Systems, volume 33, Curran
Associates, Inc., 2020, pp. 5776–5788. URL: https://proceedings.neurips.cc/paper_files/paper/2020/
file/3f5ee243547dee91fbd053c1c4a845aa-Paper.pdf.
[16] V. Balntas, E. Riba, D. Ponsa, K. Mikolajczyk, Learning local feature descriptors with triplets and
shallow convolutional neural networks., in: Bmvc, volume 1, 2016, p. 3.
[17] E. Bassani, P. Kasela, A. Raganato, G. Pasi, A multi-domain benchmark for personalized search
evaluation, in: Proceedings of the 31st ACM International Conference on Information &amp; Knowledge
Management, CIKM ’22, Association for Computing Machinery, New York, NY, USA, 2022, p.
3822–3827. doi:10.1145/3511808.3557536.
[18] J. Jiang, T. Wu, G. Roumpos, H. Cheng, X. Yi, E. Chi, H. Ganapathy, N. Jindal, P. Cao, W. Wang,
End-to-end deep attentive personalized item retrieval for online content-sharing platforms, in:
WWW ’20: The Web Conference 2020, Taipei, Taiwan, April 20-24, 2020, ACM / IW3C2, 2020, pp.
2870–2877.
[19] S. Mysore, G. Dhanania, K. Patil, S. Kallumadi, A. McCallum, H. Zamani, Memory augmented
cross-encoders for controllable personalized search, 2024. URL: https://arxiv.org/abs/2411.02790.
arXiv:2411.02790.
[20] L. Page, S. Brin, R. Motwani, T. Winograd, The PageRank Citation Ranking: Bringing Order to the
Web., Technical Report 1999-66, Stanford InfoLab, 1999. URL: http://ilpubs.stanford.edu:8090/422/,
previous number = SIDL-WP-1999-0120.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>P.</given-names>
            <surname>Kasela</surname>
          </string-name>
          , G. Pasi,
          <string-name>
            <given-names>R.</given-names>
            <surname>Perego</surname>
          </string-name>
          , Park:
          <article-title>Personalized academic retrieval with knowledge-graphs, Information Systems (</article-title>
          <year>2025</year>
          )
          <article-title>102574</article-title>
          . URL: https://www.sciencedirect.com/science/article/pii/ S0306437925000584. doi:https://doi.org/10.1016/j.is.
          <year>2025</year>
          .
          <volume>102574</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>E.</given-names>
            <surname>Bassani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Kasela</surname>
          </string-name>
          , G. Pasi,
          <article-title>Denoising attention for query-aware user modeling</article-title>
          , in: K. Duh,
          <string-name>
            <given-names>H.</given-names>
            <surname>Gomez</surname>
          </string-name>
          , S. Bethard (Eds.),
          <source>Findings of the Association for Computational Linguistics: NAACL</source>
          <year>2024</year>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Mexico City, Mexico,
          <year>2024</year>
          , pp.
          <fpage>2368</fpage>
          -
          <lpage>2380</lpage>
          . URL: https://aclanthology.org/
          <year>2024</year>
          .findings-naacl.
          <volume>153</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>A.</given-names>
            <surname>Salemi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Mysore</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bendersky</surname>
          </string-name>
          , H. Zamani,
          <article-title>LaMP: When large language models meet personalization</article-title>
          , in: L.
          <string-name>
            <surname>-W. Ku</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Martins</surname>
          </string-name>
          , V. Srikumar (Eds.),
          <source>Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume</source>
          <volume>1</volume>
          :
          <string-name>
            <surname>Long</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          , Bangkok, Thailand,
          <year>2024</year>
          , pp.
          <fpage>7370</fpage>
          -
          <lpage>7392</lpage>
          . URL: https://aclanthology. org/
          <year>2024</year>
          .
          <article-title>acl-long</article-title>
          .
          <volume>399</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2024</year>
          .
          <article-title>acl-long</article-title>
          .
          <volume>399</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>B.</given-names>
            <surname>Tan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Shen</surname>
          </string-name>
          ,
          <string-name>
            <surname>C.</surname>
          </string-name>
          <article-title>Zhai, Mining long-term search history to improve search accuracy</article-title>
          , in: T.
          <string-name>
            <surname>Eliassi-Rad</surname>
            ,
            <given-names>L. H.</given-names>
          </string-name>
          <string-name>
            <surname>Ungar</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Craven</surname>
          </string-name>
          , D. Gunopulos (Eds.),
          <source>Proceedings of the Twelfth ACM SIGKDD International Conference on Knowledge Discovery and Data Mining</source>
          , Philadelphia, PA, USA,
          <year>August</year>
          20-
          <issue>23</issue>
          ,
          <year>2006</year>
          , ACM,
          <year>2006</year>
          , pp.
          <fpage>718</fpage>
          -
          <lpage>723</lpage>
          . URL: https://doi.org/10.1145/1150402.1150493. doi:
          <volume>10</volume>
          .1145/1150402.1150493.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>P.</given-names>
            <surname>Kasela</surname>
          </string-name>
          , G. Pasi,
          <string-name>
            <given-names>R.</given-names>
            <surname>Perego</surname>
          </string-name>
          ,
          <article-title>Se-pef: a resource for personalized expert finding</article-title>
          ,
          <source>in: Proceedings of the Annual International ACM SIGIR Conference on Research and Development in Information Retrieval in the Asia Pacific Region, SIGIR-AP '23</source>
          ,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computing Machinery, New York, NY, USA,
          <year>2023</year>
          , p.
          <fpage>288</fpage>
          -
          <lpage>309</lpage>
          . URL: https://doi.org/10.1145/3624918.3625335. doi:
          <volume>10</volume>
          .1145/ 3624918.3625335.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>K.</given-names>
            <surname>Bi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Metrikov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Byun</surname>
          </string-name>
          ,
          <article-title>Leveraging user behavior history for personalized email search</article-title>
          ,
          <source>in: Proceedings of The Web Conference</source>
          <year>2021</year>
          ,
          <year>2021</year>
          , pp.
          <fpage>3526</fpage>
          -
          <lpage>3537</lpage>
          . URL: https://doi.org/10.1145/ 3442381.3450110.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Q.</given-names>
            <surname>Ai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. N.</given-names>
            <surname>Hill</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. V. N.</given-names>
            <surname>Vishwanathan</surname>
          </string-name>
          , W. B.
          <string-name>
            <surname>Croft</surname>
          </string-name>
          ,
          <article-title>A zero attention model for personalized product search</article-title>
          , in: W. Zhu,
          <string-name>
            <given-names>D.</given-names>
            <surname>Tao</surname>
          </string-name>
          , X. Cheng, P. Cui,
          <string-name>
            <given-names>E. A.</given-names>
            <surname>Rundensteiner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Carmel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. X.</given-names>
            <surname>Yu</surname>
          </string-name>
          (Eds.),
          <source>Proceedings of the 28th ACM International Conference on Information and Knowledge Management</source>
          ,
          <string-name>
            <surname>CIKM</surname>
          </string-name>
          <year>2019</year>
          , Beijing, China, November 3-
          <issue>7</issue>
          ,
          <year>2019</year>
          , ACM,
          <year>2019</year>
          , pp.
          <fpage>379</fpage>
          -
          <lpage>388</lpage>
          . URL: https://doi.org/10.1145/3357384.3357980. doi:
          <volume>10</volume>
          .1145/3357384.3357980.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>P.</given-names>
            <surname>Kasela</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Braga</surname>
          </string-name>
          , G. Pasi,
          <string-name>
            <given-names>R.</given-names>
            <surname>Perego</surname>
          </string-name>
          ,
          <article-title>Se-pqa: Personalized community question answering</article-title>
          ,
          <source>in: Companion Proceedings of the ACM Web Conference</source>
          <year>2024</year>
          , WWW '24,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computing Machinery, New York, NY, USA,
          <year>2024</year>
          , p.
          <fpage>1095</fpage>
          -
          <lpage>1098</lpage>
          . URL: https://doi.org/10.1145/3589335.3651445. doi:
          <volume>10</volume>
          .1145/3589335.3651445.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>M.</given-names>
            <surname>Braga</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Kasela</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Raganato</surname>
          </string-name>
          , G. Pasi,
          <article-title>Synthetic data generation with large language models for personalized community question answering</article-title>
          ,
          <source>in: 2024 IEEE/WIC International Conference on Web Intelligence and Intelligent Agent Technology (WI-IAT)</source>
          ,
          <year>2024</year>
          , pp.
          <fpage>360</fpage>
          -
          <lpage>366</lpage>
          . doi:
          <volume>10</volume>
          .1109/ WI-IAT62293.
          <year>2024</year>
          .
          <volume>00057</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>S.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Dou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Xiong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.-R.</given-names>
            <surname>Wen</surname>
          </string-name>
          ,
          <article-title>Knowledge enhanced personalized search</article-title>
          ,
          <source>in: Proceedings of the 43rd International ACM SIGIR Conference on Research and Development in Information Retrieval</source>
          , SIGIR '20,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computing Machinery, New York, NY, USA,
          <year>2020</year>
          , p.
          <fpage>709</fpage>
          -
          <lpage>718</lpage>
          . URL: https://doi.org/10.1145/3397271.3401089. doi:
          <volume>10</volume>
          .1145/3397271.3401089.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>M.</given-names>
            <surname>Braga</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Raganato</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Pasi</surname>
          </string-name>
          , et al.,
          <article-title>Personalization in bert with adapter modules and topic modelling</article-title>
          ,
          <source>in: Proceedings of the 13th Italian Information Retrieval Workshop (IIR</source>
          <year>2023</year>
          ). Pisa, Italy,
          <year>2023</year>
          , pp.
          <fpage>24</fpage>
          -
          <lpage>29</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>A.</given-names>
            <surname>Bordes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Usunier</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Garcia-Duran</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Weston</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Yakhnenko</surname>
          </string-name>
          ,
          <article-title>Translating embeddings for modeling multi-relational data</article-title>
          , in: C.
          <string-name>
            <surname>Burges</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Bottou</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Welling</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          <string-name>
            <surname>Ghahramani</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          Weinberger (Eds.),
          <source>Advances in Neural Information Processing Systems</source>
          , volume
          <volume>26</volume>
          ,
          <string-name>
            <surname>Curran</surname>
            <given-names>Associates</given-names>
          </string-name>
          , Inc.,
          <year>2013</year>
          , p.
          <fpage>1</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Feng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <article-title>Knowledge graph embedding by translating on hyperplanes,</article-title>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>