<!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>Geographical distribution of</journal-title>
      </journal-title-group>
      <issn pub-type="ppub">1613-0073</issn>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>with LLMs: Accuracy and Speed Optimizations</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Xuke Hu</string-name>
          <email>Xuke.Hu@dlr.de</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Jens Kersten</string-name>
          <email>Jens.Kersten@dlr.de</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Friederike Klan</string-name>
          <email>Friederike.Klan@dlr.de</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Workshop</string-name>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Institute of Data Science, German Aerospace Center</institution>
          ,
          <addr-line>Jena, 07745</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>1856</year>
      </pub-date>
      <volume>83</volume>
      <issue>365</issue>
      <fpage>0000</fpage>
      <lpage>0002</lpage>
      <abstract>
        <p>Toponym resolution plays a crucial role in geoparsing. While recent approaches leveraging lightweight LLMs, such as Mistral 7B, have shown promise, they still sufer from ineficiency and suboptimal accuracy. In this work, we propose an improved method that enhances both inference speed and resolution accuracy. Instead of processing toponyms individually, our approach resolves multiple toponyms simultaneously within the same text, leveraging contextual relationships among toponyms to refine predictions while reducing inference time. Furthermore, we integrate Retrieval-Augmented Generation (RAG) to incorporate candidate locations retrieved from GeoNames during inference, providing additional geographic context and improving disambiguation. To further accelerate processing, we adopt vLLM as an optimized inference engine. Experimental results on seven public datasets with 83,365 toponyms demonstrate that our solution increases accuracy from 0.90 to 0.93 and is seven times faster than previous LLM-based methods using the same base model.</p>
      </abstract>
      <kwd-group>
        <kwd>geoparsing</kwd>
        <kwd>toponym resolution</kwd>
        <kwd>large language model</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>Italy
∗Corresponding author.</p>
      <p>CEUR</p>
      <p>ceur-ws.org</p>
      <p>However, the LLM-based approach still has two key limitations. First, it processes each toponym
individually, even when multiple toponyms appear in the same text, which may cause the LLM to
overlook important contextual relationships between the toponyms. Additionally, geographic knowledge is
utilized only after inference, leaving the LLM without crucial disambiguation cues in inference. Second,
resolving toponyms individually requires multiple inference passes, which increases computational
cost.</p>
      <p>To address these issues, we propose a parallel inference approach that resolves multiple toponyms
simultaneously, enhancing both accuracy and computational eficiency. We further integrate RAG to
incorporate candidate locations for toponyms from GeoNames during inference, and utilize vLLM [21]
to accelerate processing.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Proposed Approach</title>
      <p>Our approach, illustrated in Figure 1, consists of two phases: training (fine-tuning) and inference.
For training, we use the LGL dataset [22], the same as in our previous work [20], which is the
LocalGlobal Lexicon (LGL) corpus. This corpus contains 588 human-annotated news articles with 5,088
toponyms from 78 local newspapers. We employ Mistral-7B-v0.2 as the base model and apply Low-Rank
Adaptation (LoRA) [23] for model fine-tuning.</p>
      <p>Figure 3 in the Appendix presents a training example. In Instruction, we specify the toponyms
to be resolved. The char_index in «START:char_index» indicates the starting character index of the
toponym in the text, which helps distinguish between multiple occurrences of the same name. Candidate
locations for each toponym are retrieved from GeoNames and ranked in two steps: first grouped into
exact (matching the primary or alternative names) and non-exact matches, then ranked by population
within each group. The top candidates from the exact group are selected first; if fewer than 17 are found,
the highest-ranked non-exact matches are added to complete the Top-17. They are then included in
Instruction. In Input, the target toponyms are marked within the original text. The Output consists
of unambiguous references for all the toponyms.</p>
      <p>During inference, candidate locations are queried and ranked using the same strategy, and the Top-17
candidates are retained. Given the context that includes the target toponyms and their candidate
locations, the model generates an unambiguous reference for each toponym. This reference consists
of the toponym’s full name along with its higher-level administrative divisions (e.g., country, state,
or province) necessary to uniquely identify the location. Each reference is sequentially queried in
GeoNames and, if necessary, in Nominatim to obtain geographic coordinates. GeoNames is deployed
locally, while Nominatim is queried online as a fallback, mainly for fine-grained locations such as points
of interest. Most references are resolved by GeoNames, with only a small fraction requiring Nominatim.
A caching mechanism is also employed to ensure fast query performance.</p>
      <p>Training dataset</p>
      <p>Fine-tuning</p>
      <p>Toponym &amp; context
I am in &lt;START:8&gt;
Glasgow &lt;END&gt;, a city in
&lt;START:27&gt;Mont&lt;END&gt;.</p>
      <p>GMloanstgow ;</p>
      <p>Estimate unambiguous reference
unraemfebreignucoeus GMloanstgaonwa,, MUSontana, US;
1. Montana, US;
2. Oblast Montana, Bulgaria;
…
1. Glasgow, Scotland, UK;
2. Glasgow, Montana, US;
...</p>
      <p>Query
GeoNames</p>
      <sec id="sec-2-1">
        <title>Training</title>
      </sec>
      <sec id="sec-2-2">
        <title>Inference</title>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Experiments and Evaluation</title>
      <sec id="sec-3-1">
        <title>3.1. Experimental Settings</title>
        <p>For LoRA, we set the attention dimension, scaling parameter, and dropout rate to 16, 16, and 0.1,
respectively. We used the AdamW optimizer for fine-tuning with a learning rate of 0.003, over 300
epochs, and a batch size of 16. This fine-tuning process was performed on an NVIDIA Tesla V100 GPU,
utilizing approximately 14 GB of GPU memory.</p>
        <p>
          For testing, we employed the seven public datasets: TR-News [24], GeoWebNews [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ], GeoCorpora
[25], WikToR [26], WOTR [27], CLDW [28], and NCEN [29], which together contain a total of 83,365
toponyms. The geographical distribution of the toponyms in the test datasets is shown in Figure 4 in
the Appendix. We evaluated the accuracy using Accuracy@161km [30], which measures geocoding
precision within 161 km (100 miles).
        </p>
        <p>
          We compared our approach with 10 representative methods, including transformer-based entity
linkers (BLINK [31], GENRE [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ]), rule-based toponym resolution approaches (CLAVIN1, CHF [24]),
deep learning-based classification (CamCoder [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ]), and the voting-based ensemble method [18] that
integrates seven individual approaches. We also included our previous LLM-based solution [20], which
infers each toponym independently and does not incorporate candidate locations during inference. This
solution was applied across four models, including Mistral (7B), referred to as FT-Mistral (7B).
        </p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Experimental Results</title>
        <p>Figure 2 demonstrates that the new solution based on the Mistral-7B-v0.2 model improves the accuracy
of the previous solution [20] using the same base model from 0.9 to 0.93. This performance matches
that of the previous solution using the Llama2-70B model. Compared with non–LLM-based approaches,
the new method improves the voting ensemble by 11% and GENRE, the best individual approach, by
15%. Moreover, the new solution is seven times faster than our previous implementation using the same
base model, achieving performance that is comparable to—or even exceeds—that of traditional deep
learning– and rule-based methods such as CHF and CamCoder.</p>
        <p>BLINK
GENRE
CLAVIN</p>
        <p>CHF
CamCoder</p>
        <p>Voting
FT−Baichuan2 (7B)
FT−Mistral (7B)−v0.2</p>
        <p>FT−Mistral (7B)
FT−Llama2 (70B)</p>
        <p>Ours
0.00
0.25 0.50
Accuracy@161km 0.75
0.4</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Conclusion</title>
      <p>In this work, we presented an improved approach for toponym resolution based on a light-weight LLM,
leveraging parallel inference, RAG, and faster inference engines to enhance both accuracy and eficiency.
Our experiments on seven public datasets demonstrate that the proposed solution outperforms previous
1https://github.com/Novetta/CLAVIN
LLM-based methods, achieving higher accuracy and significantly faster processing times. One limitation
of the approach lies in the candidate ranking algorithm, which currently considers only string similarity
and population. This may result in the correct candidate being excluded from the Top-17 list. In future
work, we will propose a more robust ranking strategy that considers the spatial relationships among
toponyms within the same text.</p>
    </sec>
    <sec id="sec-5">
      <title>Declaration on Generative AI</title>
      <p>
        The authors employed ChatGPT and Mistral to polish the text. Following this, the manuscript underwent
a thorough review and necessary modifications by the authors, who assume complete responsibility for
the final content.
[15] Z. Yan, C. Yang, L. Hu, J. Zhao, L. Jiang, J. Gong, The integration of linguistic and geospatial
features using global context embedding for automated text geocoding, ISPRS International Journal
of Geo-Information 10 (2021) 572.
[16] J. Devlin, M.-W. Chang, K. Lee, K. Toutanova, Bert: Pre-training of deep bidirectional transformers
for language understanding, arXiv preprint arXiv:1810.04805 (2018).
[
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] N. De Cao, G. Izacard, S. Riedel, F. Petroni, Autoregressive entity retrieval, in: International
Conference on Learning Representations, 2021. URL: https://openreview.net/forum?id=5k8F6UU39V.
[18] X. Hu, Y. Sun, J. Kersten, Z. Zhou, F. Klan, H. Fan, How can voting mechanisms improve the
robustness and generalizability of toponym disambiguation?, International Journal of Applied
Earth Observation and Geoinformation 117 (2023) 103191.
[19] A. Q. Jiang, A. Sablayrolles, A. Mensch, C. Bamford, D. S. Chaplot, D. d. l. Casas, F. Bressand,
      </p>
      <p>G. Lengyel, G. Lample, L. Saulnier, et al., Mistral 7b, arXiv preprint arXiv:2310.06825 (2023).
[20] X. Hu, J. Kersten, F. Klan, S. M. Farzana, Toponym resolution leveraging lightweight and
opensource large language models and geo-knowledge, International Journal of Geographical
Information Science (2024) 1–28.
[21] W. Kwon, Z. Li, S. Zhuang, Y. Sheng, L. Zheng, C. H. Yu, J. E. Gonzalez, H. Zhang, I. Stoica, Eficient
memory management for large language model serving with pagedattention, in: Proceedings of
the ACM SIGOPS 29th Symposium on Operating Systems Principles, 2023.
[22] M. D. Lieberman, H. Samet, J. Sankaranarayanan, Geotagging with local lexicons to build indexes
for textually-specified spatial data, in: 2010 IEEE 26th international conference on data engineering
(ICDE 2010), IEEE, 2010, pp. 201–212.
[23] E. J. Hu, Y. Shen, P. Wallis, Z. Allen-Zhu, Y. Li, S. Wang, L. Wang, W. Chen, Lora: Low-rank
adaptation of large language models, arXiv preprint arXiv:2106.09685 (2021).
[24] E. Kamalloo, D. Rafiei, A coherent unsupervised model for toponym resolution, in: Proceedings
of the 2018 World Wide Web Conference, 2018, pp. 1287–1296.
[25] J. O. Wallgrün, M. Karimzadeh, A. M. MacEachren, S. Pezanowski, Geocorpora: building a corpus
to test and train microblog geoparsers, International Journal of Geographical Information Science
32 (2018) 1–29.
[26] M. Gritta, M. T. Pilehvar, N. Limsopatham, N. Collier, What’s missing in geographical parsing?,</p>
      <p>Language Resources and Evaluation 52 (2018) 603–623.
[27] G. DeLozier, B. Wing, J. Baldridge, S. Nesbit, Creating a novel geolocation corpus from historical
texts, in: Proceedings of the 10th Linguistic Annotation Workshop held in conjunction with ACL
2016 (LAW-X 2016), 2016, pp. 188–198.
[28] P. Rayson, A. Reinhold, J. Butler, C. Donaldson, I. Gregory, J. Taylor, A deeply annotated testbed
for geographical text analysis: The corpus of lake district writing, in: Proceedings of the 1st ACM
SIGSPATIAL Workshop on Geospatial Humanities, 2017, pp. 9–15.
[29] M. C. Ardanuy, D. Beavan, K. Beelen, K. Hosseini, J. Lawrence, K. McDonough, F. Nanni, D. van
Strien, D. C. Wilson, A dataset for toponym resolution in nineteenth-century english newspapers,
Journal of Open Humanities Data 8 (2022).
[30] M. Gritta, M. T. Pilehvar, N. Collier, A pragmatic guide to geoparsing evaluation, Language
resources and evaluation 54 (2020) 683–712.
[31] L. Wu, F. Petroni, M. Josifoski, S. Riedel, L. Zettlemoyer, Zero-shot entity linking with dense entity
retrieval, in: EMNLP, 2020.</p>
      <p>Instruction: Given the following toponyms, marked with unique identifiers in the text, estimate their
full addresses or unambiguous references. The full address should include the toponym’s formal name
followed by its higher-level administrative units, such as city, state/province, and country.
Input Toponyms: ‘Hurricane’ marked with «START:23»«END»; ‘Hurricane’ marked with
«START:372»«END»; ‘Putnam County’ marked with «START:398»«END»
Reference Information: Below are candidate addresses for each toponym. While these are valid options,
the correct address might not be included among them. Use your geographic knowledge, along with
these candidates, to infer the most accurate address.</p>
      <p>Partial candidate locations of ‘Hurricane’:
1. Hurricane, Washington County, Utah, United States;
2. Hurricane, Putnam County, West Virginia, United States;
...
17. Lac Hurricane, Mauricie, Quebec, Canada;
Input: Sherif’s deputies and «START:23» Hurricane «END» police found the two.‘The guys were down
in the area for about 10 minutes when they found them near the tracks,’ the dispatcher said. Neither of
the teenagers were hurt and both are safe, the dispatcher said. Keya Phillips and Seth Pettry, both 14,
were found Monday after a tip came in that the two were hiding under a railroad bridge in «START:372»
Hurricane «END» , according to a «START:398» Putnam County «END» dispatcher.</p>
      <p>Output: («START:23»Hurricane, Putnam County, West Virginia, United States «END»)
(«START:372»Hurricane, Putnam County, West Virginia, United States «END»)
(«START:398»Putnam County, West Virginia, United States «END»)</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>I.</given-names>
            <surname>Gregory</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Donaldson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Murrieta-Flores</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rayson</surname>
          </string-name>
          , Geoparsing, gis, and
          <article-title>textual analysis: current developments in spatial humanities research</article-title>
          ,
          <source>International Journal of Humanities and Arts Computing</source>
          <volume>9</volume>
          (
          <year>2015</year>
          )
          <fpage>1</fpage>
          -
          <lpage>14</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>R. S.</given-names>
            <surname>Purves</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Clough</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. B.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. H.</given-names>
            <surname>Hall</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Murdock</surname>
          </string-name>
          ,
          <article-title>Geographic information retrieval: Progress and challenges in spatial search of text</article-title>
          ,
          <source>Foundations and Trends in Information Retrieval</source>
          <volume>12</volume>
          (
          <year>2018</year>
          )
          <fpage>164</fpage>
          -
          <lpage>318</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Y.</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>Zheng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>Extracting the location of flooding events in urban systems and analyzing the semantic risk using social sensing data</article-title>
          ,
          <source>Journal of Hydrology</source>
          <volume>603</volume>
          (
          <year>2021</year>
          )
          <fpage>127053</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Hu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Mai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Cundy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Choi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Lao</surname>
          </string-name>
          , W. Liu, G. Lakhanpal,
          <string-name>
            <given-names>R. Z.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Joseph</surname>
          </string-name>
          ,
          <article-title>Geoknowledge-guided gpt models improve the extraction of location descriptions from disasterrelated social media messages</article-title>
          ,
          <source>International Journal of Geographical Information Science</source>
          <volume>37</volume>
          (
          <year>2023</year>
          )
          <fpage>2289</fpage>
          -
          <lpage>2318</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>X.</given-names>
            <surname>Hu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kersten</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Klan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Fan</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          <article-title>Wiegmann, GazPNE2: A general place name extractor for microblogs fusing gazetteers and pretrained transformer models</article-title>
          ,
          <source>IEEE Internet of Things Journal</source>
          <volume>9</volume>
          (
          <year>2022</year>
          )
          <fpage>16259</fpage>
          -
          <lpage>16271</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>X.</given-names>
            <surname>Hu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Hu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Gu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kersten</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Fan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Klan</surname>
          </string-name>
          ,
          <article-title>Location reference recognition from texts: A survey and comparison</article-title>
          ,
          <source>ACM Computing Surveys</source>
          <volume>56</volume>
          (
          <year>2023</year>
          )
          <fpage>1</fpage>
          -
          <lpage>37</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>E.</given-names>
            <surname>Aldana-Bobadilla</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Molina-Villegas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I.</given-names>
            <surname>Lopez-Arevalo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Reyes-Palacios</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Muñiz-Sanchez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Arreola-Trapala</surname>
          </string-name>
          ,
          <article-title>Adaptive geoparsing method for toponym recognition and resolution in unstructured text</article-title>
          ,
          <source>Remote Sensing</source>
          <volume>12</volume>
          (
          <year>2020</year>
          )
          <fpage>3041</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>A.</given-names>
            <surname>Molina-Villegas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Muñiz-Sanchez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Arreola-Trapala</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Alcántara</surname>
          </string-name>
          ,
          <article-title>Geographic named entity recognition and disambiguation in mexican news using word embeddings</article-title>
          ,
          <source>Expert Systems with Applications</source>
          <volume>176</volume>
          (
          <year>2021</year>
          )
          <fpage>114855</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>D.</given-names>
            <surname>Weissenbacher</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Tahsin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Beard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Figaro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Rivera</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Scotch</surname>
          </string-name>
          , G. Gonzalez,
          <article-title>Knowledgedriven geospatial location resolution for phylogeographic models of virus migration</article-title>
          ,
          <source>Bioinformatics</source>
          <volume>31</volume>
          (
          <year>2015</year>
          )
          <fpage>i348</fpage>
          -
          <lpage>i356</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>X.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Ma</surname>
          </string-name>
          , H. Zheng, C. Liu,
          <string-name>
            <given-names>P.</given-names>
            <surname>Xie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Si</surname>
          </string-name>
          , Dm_nlp at semeval
          <article-title>-2018 task 12: A pipeline system for toponym resolution</article-title>
          ,
          <source>in: Proceedings of the 13th International Workshop on Semantic Evaluation</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>917</fpage>
          -
          <lpage>923</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>D.</given-names>
            <surname>Gomes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. S.</given-names>
            <surname>Purves</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Volpi</surname>
          </string-name>
          ,
          <article-title>Fine-tuning transformers for toponym resolution: A contextual embedding approach to candidate ranking</article-title>
          ., in: GeoExT@ ECIR,
          <year>2024</year>
          , pp.
          <fpage>43</fpage>
          -
          <lpage>51</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , S. Bethard,
          <article-title>Improving toponym resolution with better candidate generation, transformerbased reranking, and two-stage resolution</article-title>
          ,
          <source>arXiv preprint arXiv:2305.11315</source>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>M.</given-names>
            <surname>Gritta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Pilehvar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Collier</surname>
          </string-name>
          ,
          <article-title>Which melbourne? augmenting geocoding with maps (</article-title>
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>S.</given-names>
            <surname>Kulkarni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Jain</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. J.</given-names>
            <surname>Hosseini</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Baldridge</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Ie</surname>
          </string-name>
          ,
          <string-name>
            <surname>L. Zhang,</surname>
          </string-name>
          <article-title>Spatial language representation with multi-level geocoding</article-title>
          , arXiv preprint arXiv:
          <year>2008</year>
          .
          <volume>09236</volume>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          1.
          <string-name>
            <given-names>Putnam</given-names>
            <surname>County</surname>
          </string-name>
          , New York, United States;
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          2.
          <string-name>
            <given-names>Putnam</given-names>
            <surname>County</surname>
          </string-name>
          , West Virginia, United States; ...
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Putnam</surname>
            <given-names>County</given-names>
          </string-name>
          , Indiana, United States;
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>