Your new experience awaits. Try the new design now and help us make it even better

ORIGINAL RESEARCH article

Front. Big Data, 25 September 2025

Sec. Data Science

Volume 8 - 2025 | https://doi.org/10.3389/fdata.2025.1648730

Structure and dynamics mapping of illicit firearms trafficking using artificial intelligence models

  • Orion Integrated Biosciences Inc., Manhattan, KS, United States

Illicit firearms trafficking imposes severe social and economic costs, eroding public safety, distorting markets, and weakening state capacity while affecting vulnerable populations. Despite its profound consequences for global health, trade, and security, the network structure and dynamics of illicit firearms trafficking are one of the most elusive dimensions of transnational organized crime. News reports documenting these events are fragmented across countries, languages, and outlets with different levels of quality and bias. Motivated by the disproportionate impact in Latin America, this study operationalizes the International Classification of Crime for Statistical Purposes (ICCS) to convert multilingual news into structured and auditable indicators through a three-part analytic pipeline using BERT architecture and zero-shot prompts for entity resolution. This analytical approach generated outputs enriched with named entities, geocodes, and timestamps and stored as structured JSON, enabling reproducible analysis. The results of this implementation identified 8,171 firearms trafficking reports published from 2014 through July 2024. The number of firearms-related reports rose sharply over the decade. Incidents increase roughly tenfold, and the geographic footprint expands from about twenty to more than eighty countries, with a one hundred fifty five percent increase from 2022 to 2023. Correlation analysis links firearms trafficking to twelve other ICCS Level 1 categories, including drug trafficking, human trafficking, homicide, terrorism, and environmental crimes. Entity extraction and geocoding show a clear maritime bias; ports are referenced about six times more often than land or air routes. The analysis yielded eighty-five distinct points of entry or exit and forty-one named transnational criminal organizations, though attribution appears in only about forty percent of reports. This is the first automated and multilingual application of ICCS to firearms trafficking using modern language technologies. The outputs enable early warning through signals associated with ICCS categories, cross-border coordination focused on recurrent routes and high-risk ports, and evaluation of interventions. In short, embedding ICCS in a reproducible pipeline transforms fragmented media narratives into comparable evidence for strategic, tactical, and operational environments.

1 Introduction

Illicit firearms trafficking is a major driver of violence worldwide, enabling criminal and terrorist groups to weaken state authority, undermine international humanitarian law, and disproportionately impact vulnerable populations. The secretive nature of this trade allows transnational criminal networks to solidify territorial control through violence, confront rival groups, and infiltrate legitimate commercial and logistics networks, leading to consequences that go well beyond national borders. The issue is especially severe in Latin America, a region that, despite making up only 8% of the global population, accounts for roughly 30% of the world's intentional homicides, with about 60% involving firearms. Despite its serious effects on global health, trade, and security, the structure and operational methods of illicit firearms trafficking remain among the most difficult aspects of transnational organized crime to understand.

News reports are a valuable source for understanding the structure and dynamics of firearms trafficking. Articles providing real-time, high-resolution insights into fast-changing developments and crime patterns across diverse geographies (Kazemi et al., 2017; Patil et al., 2022; Wang S. et al., 2023). Despite their potential to improve situational awareness and reveal emerging trafficking trends, combining these reports at a global scale is often vulnerable to misinterpretation due to cognitive biases, translation inaccuracies, and the challenge of contextualizing complex events where multiple crimes frequently occur simultaneously (Muise et al., 2022). To address this challenge, Large Language Models (LLMs) transformer-based deep learning with self-attention mechanisms, have been successfully used to capture relationships between words, phrases, and the context of vast text data (Wang S. et al., 2023; Minaee et al., 2020). Recent advances in domain-adapted LLMs pretrained on extensive multilingual corpora, such as BERT and its variants, DistilBERT, RoBERTa, amBERT, XLM-R, LaBSE, and AraBERT, have demonstrated significant effectiveness in processing information for security-oriented applications and across diverse linguistic environments such as Arabic, Pashto, and Spanish (Yang, 2024; Wang H. et al., 2023).

Models such as DarkBERT (Jin et al., 2023), CyberBERT, BERTimbau (Souza et al., 2020), BERTweet (Nguyen et al., 2020), and CT-BERT (Müller et al., 2023) have been deployed to analyze content from social media and dark web communities, with particular emphasis on firearm-related violence, civil unrest, and emerging health risks. These implementations have facilitated the creation of advanced crime-monitoring frameworks, including AI4Crime, CEASEFIRE, and INSPECT (Cani et al., 2024), which integrate natural language processing techniques such as named entity recognition, geotagging, and relation extraction. Collectively, these systems and other approaches illustrate the potential of transformer-based architectures to uncover latent patterns in illicit activities and to enhance the situational awareness of law enforcement and public policy institutions (Fares and Abd Elaziz, 2025; Zhang and Lu, 2025). However, while tools using LLMs often achieve over 90% accuracy and have significantly enhanced the capacity of analysts and law enforcement agencies, most implementations lack a standardized and interoperable framework for classifying and interpreting crime-related outputs, particularly when integrating data across multiple languages, jurisdictions, and information sources. Existing systems rely on custom taxonomies or informal, keyword-based categories (e.g., “drug trafficking,” “terrorism,” “cybercrime”), which can lead to inconsistencies in threat labeling and category duplication.

The International Classification of Crime for Statistical Purposes (ICCS), developed by the United Nations Office on Drugs and Crime (UNODC), provides a standardized framework for classifying criminal offenses across countries and over time. Structured as a four-level taxonomy that covers 11 broad crime categories at Level 1 to more than 230 detailed categories at Level 4, the ICCS enables both broad aggregation and fine-grained analysis of crime data (Bisogno et al., 2015). While originally designed to harmonize official statistics, its potential, and the objective of this work is to explore its broader potential as a tool for structuring unstructured, multilingual crime-related information drawn from the news. Media reports often rely on heterogeneous and ambiguous terminology, complicating systematic analysis. By embedding ICCS codes into automated analysis pipelines, large language models (LLMs) can map journalistic accounts of crime onto a globally recognized taxonomy, reducing ambiguity, enhancing comparability, and enabling coherent cross-national monitoring of emerging threats. Applied to phenomena such as illicit firearms trafficking, this approach offers a structured lens for tracing actors, networks, and geographic patterns in near real time, bridging the gap between fragmented media narratives and standardized international crime statistics.

2 Methods

2.1 Data acquisition, preprocessing, and classification

We built a Python-based ingestion pipeline that issues targeted queries to public and subscription application programming interfaces and to RSS feeds to gather news articles. The system collected relevant reporting published from 2014 through 2024 under the platform's terms of service. For processing, we captured the article's full text together with source metadata, language tags when available, and timestamps; the narrative prose was not persisted after processing. We cleaned and normalized text (Unicode normalization and lowercasing) and removed exact and near duplicate articles. We used the model's native tokenizer and did not remove stop words or other tokens before modeling; SpaCy tokenization was used only for named entity recognition. Articles in languages other than English were machine-translated to English with Google Translate to standardize downstream classification (Johnson et al., 2016). For the transformer classifier, we used a three-step classification approach (Figure 1):

Figure 1
Flowchart illustrating a process starting with query-based news retrieval, followed by translation. News is classified by TopicBERT into categories like security, pests, diseases, and others. Then, ICCS RoBERTa performs crime classification, depicted with various crime icons. The process continues with natural language processing for contextualization, disambiguation, integration, and verification, culminating in reporting.

Figure 1. Workflow of the multilingual crime analysis pipeline. News articles are retrieved and translated before being classified by TopicBERT into thematic domains (Security, Pests, Diseases, Other). Security-related texts are further categorized by ICCS–RoBERTa using the UN International Classification of Crime for Statistical Purposes (ICCS). Outputs are contextualized through NLP modules for disambiguation, integration, and verification, and then aggregated into structured reports for trend analysis and monitoring.

a) Topic Classification: As the first analytic step, we applied topic modeling to the preprocessed corpus to surface three dominant themes. Using BERTopic with sentence embeddings from all MPNet Base V2, a unigram vocabulary (n-gram range 1,1), and min_topic_size = 10, the model produced coarse clusters that we interpreted as pests, diseases, and security. We used these topic assignments only for triage: articles in the security theme were routed to the next categorical classification stage. At the same time, non-security items were excluded from downstream crime analysis.

b) ICCS Classification: Crime categorization using the ICCS hierarchical architecture used a single-label RoBERTa base uncased focused exclusively on security-related new events, performing hierarchical categorization in accordance with Levels 1 and 2 of the International Classification of Crime for Statistical Purposes (ICCS), as established by the United Nations Office on Drugs and Crime (UNODC) (Bisogno et al., 2015; Sanh et al., 2019). These categories included 0901 Acts involving weapons, explosives, and other destructive materials, and their subcategories 090121 trafficking of firearms and ammunition, 090122 trafficking of other weapons or explosives, and 090129 other weapon-related trafficking. We instantiated RobertaForSequenceClassification with hidden and attention dropout of 0.10 and tokenized with byte-level BPE, applying truncation and padding to a maximum of 256 tokens. Optimization used AdamW with a learning rate of 2.0 × 10−5, weight decay 0.01, a linear schedule with 10 percent warmup, gradient clipping at 1.0, mixed precision, and batch sizes of 16 for training and 32 for evaluation. Training ran for up to five epochs with early stopping after one epoch without improvement on development macro F1. Class imbalance was handled with class-weighted cross-entropy with weights from inverse class frequency; when a minority class fell below 25 percent in the training split, we enabled minority up-sampling in the data loader. Model selection used development macro F1, and any decision thresholding was tuned on the development portion and then applied unchanged to the held-out split in each fold.

2.2 Geospatial resolution and entity linking

During processing, we retained only factual elements in structured JSON: named entities (organizations, locations, commodities, ports, airports), event timestamps, security labels with model scores, geocodes, and source identifiers. This data minimization kept less than five percent of each article by character count, enabling efficient spatiotemporal retrieval and aligning with fair use and platform terms. Entities, especially geographic references and criminal organizations, were extracted with SpaCy multilingual NER and a fine-tuned Flair tagger to improve accuracy across languages and regions; geographic mentions were geocoded with GeoNames. Organizational resolution used zero-shot classification with GPT 3, prompted by hypotheses such as “[ENTITY] is a known transnational criminal organization,” with disambiguation aided by country context and frequent co-occurrences. We built a monthly incident time series from publication dates and internal timestamps for each ICCS category co-reported with firearms trafficking. Pairwise Pearson correlations were computed between categories, and converted these to a distance matrix as 1 – r and performed hierarchical clustering in Genesis with the options Average linkage WPGMA, cluster genes (rows, ICCS categories), and cluster experiments (columns, ICCS categories) (Sturn et al., 2002). The heat map displays correlation values on a −1 to 1 scale (green to red) with row and column dendrograms determining order.

3 Results

3.1 Model performance

The ICCS provides a hierarchical taxonomy, starting with 11 broad crime categories at Level 1, followed by 47 subcategories at Level 2, approximately 162 categories at Level 3, and culminating in 230 specific categories at Level 4. In our evaluation, the classification model achieved a precision of 0.89, a recall of 0.85, and an F1-score of 0.87 at Level 1, and a micro-F1 score of 0.79 across 47 Level 2 categories.

3.2 Illicit firearms trafficking structure and dynamics

Between March 2014 and July 2024, our analysis classified 8,171 news reports of ilicit firearms trafficking (Figure 2A). In 2014, 20 countries were mentioned in the reports; by 2024, this number had risen to more than 80 (Figure 2B). News reports from Latin America (4,575) frequently referenced other locations operationally linked to the region, including North America (2,458), Europe (1,678), Asia (456), Africa (82), and Oceania (22). Between 2022 and 2023, the average number of news reports on illicit firearms trafficking increased by 155% (Table 1). The leading countries in both South and North America reporting illicit firearms trafficking incidents were Colombia (2,040), the United States (892), Mexico (808), Brazil (544), Ecuador (329), Paraguay (302), Chile (299), Peru (195), Argentina (136), Canada (118), Venezuela (87), Haiti (81), Bolivia (71), and the Dominican Republic (63). In Europe, Spain reported the highest number of incidents (496), followed by France (228), Italy (122), Ireland (121), the United Kingdom (120), and Belgium (82). Firearms trafficking reports mentioned 71 ports of entry or exit in 21 countries. Movements skew toward exits (39) over entries (32) and by mode are 33 maritime, 21 air, and 17 land. Exits concentrate in the United States (17) and Spain (7), while entries cluster in Colombia (6), Peru (6), and Brazil (5), with a maritime bias at gateways like Buenaventura, Santa Marta, Callao, and Porto Velho (Table 2). The NER analysis identified that firearms and ammunition seizures were linked to 41 known transnational polycriminal organizations operating across multiple countries (Table 3). However, these organizations accounted for only 40% of the reported cases, with the remaining reports lacking specific details on the responsible entities.

Figure 2
Panel A shows a bar graph of the number of events from 2014 to 2024, with a substantial increase peaking in 2023. Panel B displays a bar graph of the number of countries over the same period, with noticeable growth, peaking in 2023 before slightly decreasing in 2024. Both graphs use blue bars and have years on the x-axis.

Figure 2. (A) Cumulative illicit firearms trafficking reports (2014–2024). (B) Geographic coverage over time.

Table 1
www.frontiersin.org

Table 1. Annual variation of firearms trafficking incidents per country.

Table 2
www.frontiersin.org

Table 2. POEs with incidents of firearms trafficking.

Table 3
www.frontiersin.org

Table 3. TCO and main trafficking activities, in addition to firearms trafficking.

3.3 Illicit firearms trafficking dynamics and correlation with other crimes

News reports about firearms show seasonal differences, with peaks from March to May (Figure 3a). This pattern persists across countries, as indicated by data from 2021 to 2023 (Figure 3b). Kendall correlations among UN crime categories, extracted from reports from 2021 to 2023, identified strong positive correlations between weapons-related offenses (UN ICCS code 0901) and unlawful acts involving controlled drugs or precursors (UN ICCS code 0661), with a correlation coefficient of 0.75. Similarly, acts under universal jurisdiction (UN ICCS code 1101), including crimes against humanity, show high correlations with intentional homicides (UN ICCS code 0101) (0.74) and drug offenses (UN ICCS code 0661) (0.79), indicating a significant overlap in their occurrence with ilicit firearms trafficking. Intentional homicides also correlate strongly with human trafficking (UN ICCS code 0704) (0.79), highlighting potential interconnections within criminal networks. Conversely, environmental crimes (UN ICCS code 0804) exhibit lower correlations with firearms trafficking and other crimes but a strong correlation with human trafficking. No significant negative correlations were observed, implying that these crimes do not typically inversely relate (Figure 4).

Figure 3
a. A line graph showing the number of incidents per month, with peaks in March and April, a decline from May to September, and a rise in December. b. A line graph comparing incident numbers by month for five countries: Colombia, Mexico, United States, Spain, and Ecuador. Spain shows the highest incidents, peaking around March and April, while Ecuador has the lowest.

Figure 3. (a) Monthly average of events reporting firearms trafficking from 2014–2023. (b) Monthly average of incidents reporting firearms trafficking during 2021–2023.

Figure 4
Heatmap displaying various acts and crimes categorized along the axes. Each square represents an act, color-coded for intensity, with red indicating higher frequency and green indicating lower frequency. The dendrogram clusters related activities, showing patterns of related categories. Descriptive labels on both axes specify the types of acts analyzed.

Figure 4. Correlation cluster of ICCS crime categories co-reported with firearms trafficking (2021–2023).

4 Discussion

This study presents the first known application of the International Classification of Crime for Statistical Purposes (ICCS) as a foundational taxonomy for training large language models to classify and analyze multilingual news articles on firearms trafficking. By incorporating the ICCS into the LLMs training and analysis workflow, these artificial intelligence systems overcome language barriers, minimize regional disparities in media reporting, and reduce the influence of cognitive biases in news reporting. This enables a structured and interpretable analysis of illicit firearms trafficking across Latin America. The results provided a tempo-spatial quantitative assessment of firearms-related criminal activity, providing detailed insights into the geographic and temporal dimensions of this transnational threat. However, future work requires benchmarking this approach against traditional linear models trained on TF-IDF features and alternative transformer encoders (e.g., BERT-base, XLM-R) under a common training and evaluation protocol to quantify trade-offs in accuracy and efficiency.

This analysis of news reports identified a significant surge of illicit firearms trafficking that parallels recent country-specific studies of firearms related to the violence, drug trafficking, and other criminal activities exerted by TCOs' expansion (Vásquez et al., 2023; Dressler and Wolff, 2024; UNODC, 2023; Gandilhon, 2024; Llorente et al., 2024; Le Cour Grandmaison et al., 2024; Álvarez, 2024b; Mires-Agip and Solís-Castillo, 2024; Fabre et al., 2023; Medina, 2020). The cumulative data from 2021 to 2023 patterns and a consistent spike from February to May suggest a seasonal nature to firearms trafficking across several countries. These temporal patterns might be associated with multiple factors, particularly the coca harvesting season, which highlights potential periods for targeted interventions by law enforcement. Although 41 TCOs and 85 POEs were identified in firearms trafficking crimes, 60% of incidents were unattributed to any specific organization, highlighting the complexity and challenges associated with mapping this type of transnational crime. However, the analysis uncovered that although firearms are trafficked via land, sea, and air, maritime ports of entry and exit POEs are cited six times more frequently than airports and land crossings. These quantitative results agree with previous observations about maritime crime (Gandilhon, 2024; Sosnowski et al., 2024). Although further analyses are required to determine primary or secondary POEs, establish the extent of TCOs penetration in transportation networks, and determine the volume of firearms trafficked in hundreds of illegal crossing points through rivers, tunnels, and land crossings. At the same time, we can establish hot spots of firearms trafficking beyond Latin America (Figure 5). Nonetheless, the results of embedding ICCS in a reproducible pipeline transform fragmented media narratives into comparable evidence for strategic, tactical, and operational environments.

Figure 5
Map showing blue dots indicating locations across parts of North America, Central America, South America, and parts of Europe and North Africa. Clusters are notably dense in Europe and Brazil.

Figure 5. Geolocation of incidents reporting firearms trafficking events.

Overall, the patterns of firearms trafficking anecdotally reveal three pivotal factors driving the surge in the illicit arms trade in Latin America: the expanding criminal diversification of TCOs, the militarization of TCOs, and the quasi-political transformation of TCOs.

4.1 The diversification of TOC

Analyzed news co-reported transnational firearm trafficking with 60 out of 230 other criminal categories defined by the ICCS. Of these, 12 crime categories have strong positive correlations with firearms trafficking, underscoring the deeply intertwined diversity of criminal activities and the need for multidimensional approaches to counter crime that simultaneously impact global health, trade, and security. While human trafficking moderately correlated with firearms trafficking, this crime had a strong correlation with environmental crimes like illicit wildlife, logging, and natural resources trafficking. Firearms trafficking often involves the use of falsified documentation, disguised cargo, and complex transshipment routes that exploit legitimate businesses. Once in circulation, these firearms are utilized to assert control over agricultural supply chains, leading to violent land grabs, displacement of communities, and domination of transport and distribution networks. Specifically, intricate supply routes associated with commodities like fruits, vegetables, timber, salmon, and shrimp are penetrated to covertly transport drugs in exchange for money, drug precursors, and additional firearms (Murillo-Sandoval et al., 2023).

4.2 The professionalization of TOCs

Illicit firearms trafficking news reports increasingly highlight the involvement of active and former military and police personnel, as well as ex-combatants from criminal and terrorist organizations. Driven by economic incentives or coercion, these individuals bring specialized expertise in intelligence, counterintelligence, military logistics, combat tactics, and weaponry skills to criminal organizations. Their involvement significantly enhances criminal operations, diversifies their activities, and challenges the integrity and morale of law enforcement and military personnel (Taer and Christenson, 2024; Escobar-Jiménez, 2024; Briceño-León, 2023). This is also one of the main drivers of diverting legally acquired weapons from armed forces and security corporations into the ilicit market.

The militarization of TCOs with more powerful and sophisticated firearms escalates violent disputes of vast territories across various countries and military challenge to armed government forces (Torres, 2024; Gómez-Vega, 2024; Álvarez, 2024a). This is sparking an arms race, not only among criminal groups but also among law enforcement agencies striving to regain regions overrun by organized crime. Due to weak state authority and insufficient law enforcement capabilities, local security and vigilante groups have emerged in Mexico, Colombia, Ecuador, Peru, Haiti, and Brazil. These militias have even forged alliances with criminal organizations to procure firearms, blurring even further the lines between community defense and collaboration with illicit actors.

4.3 The quasi-political transformation of TOCs

The firearms trafficking news reports indicate that TCOs continue to gain territorial control and exploit weaknesses of law enforcement, judicial, port, border, and correctional authorities (Briceño-León, 2023). As with terrorist groups, the firepower of TCOs forces governments at the local, regional, and national levels to enter into tacit or formal peace agreements that are profoundly reshaping the security landscape across Colombia, Mexico, Haiti, Ecuador, Brazil, Venezuela, and Bolivia (Llorente et al., 2024; Jański, 2022; Guarin, 2020). During this quasi-political transformation, TCOs accumulate more firearms to challenge the government but face a heightened risk of internal fragmentation and violent territorial disputes influenced by national and international partners or competitors. In some regions, TCOs are increasingly perceived by local civilian populations as de facto authorities, providing essential services and enforcing their justice systems. Criminal governance leads to the perception that official state laws impose only moderate penalties with minimal enforcement. In contrast, the punishments meted out by TCOs are much harsher and almost certain to be enforced. This level of coercion heightened the control of TCOs over local communities and political influence at the regional and national levels.

5 Conclusions

ICCS-trained AI models overcome language barriers, regional reporting disparities, and potential cognitive biases to provide a tempo-spatial quantitative analysis of illicit firearms trafficking in Latin America. The results of this analysis show an escalating trend of news reports related to firearms trafficking, with a 155% rise in incidents between 2022 and 2023. While 41 criminal organizations were linked to firearms trafficking, they accounted for only 40% of the cases in new reports. The regional structure and dynamics of illegal firearms trafficking events appear to be driven by the criminal diversification of TCOs into new illicit activities, the militarization of their operations through the acquisition of more sophisticated weaponry, and their pseudo-politicization, which increasingly leverage firepower to influence political negotiations with the government. Correlations between illicit firearms trafficking and diverse crimes, including homicides and human and drug trafficking, point to the convergence of criminal activities with significant implications for global health, trade, and security.

Data availability statement

The raw data supporting the conclusions of this article will be made available by the authors, without undue reservation.

Author contributions

WV-G: Conceptualization, Visualization, Funding acquisition, Formal analysis, Investigation, Writing – review & editing, Writing – original draft.

Funding

The author(s) declare that financial support was received for the research and/or publication of this article. This research was funded by the U.S. Department of Homeland Security, Science and Technology Directorate, through the Center of Excellence for Criminal Network Investigations.

Acknowledgments

The author is grateful to B.N. for supporting the analysis of this publication.

Conflict of interest

WV-G was employed by Orion Integrated Biosciences Inc.

Generative AI statement

The author(s) declare that Gen AI was used in the creation of this manuscript. I used AI to improve the grammar of the manuscript.

Any alternative text (alt text) provided alongside figures in this article has been generated by Frontiers with the support of artificial intelligence and reasonable efforts have been made to ensure accuracy, including review by the authors wherever possible. If you identify any issues, please contact us.

Publisher's note

All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article, or claim that may be made by its manufacturer, is not guaranteed or endorsed by the publisher.

References

Álvarez, C. (2024a). Firearms Trafficking and Violence in Ecuador. Global Initiative Against Transnational Organized Crime.

Google Scholar

Álvarez, C. (2024b). Paradise Lost? Firearms, Trafficking and Violence in Ecuador, Global Initiative Against Transnational Organized, Crime.

Google Scholar

Bisogno, E., Dawson-Faber, J., and Jandl, M. (2015). The International classification of crime for statistical purposes: a new instrument to improve comparative criminological research. Eur. J. Criminol. 12, 535–550. doi: 10.1177/1477370815600609

Crossref Full Text | Google Scholar

Briceño-León, R. (2023). Gramática Social de la Violencia, Editorial Alfa, Caracas, Venezuela.

Google Scholar

Cani, J., Mademlis, I., Mancuso, M., Paternoster, C., Adamakis, E., and Margetis, G. (2024). CEASEFIRE: An AI-Powered System for Combating Illicit Firearms Trafficking, 2024 IEEE International Conference on Big Data (BigData), IEEE, pp. 2697-2705. doi: 10.1109/BigData62323.2024.10825989

Crossref Full Text | Google Scholar

Dressler, E., and Wolff, J. (2024). FROM POLITICAL INSTABILITY TO “INTERNAL ARMED CONFLICT”: ECUADOR'S MULTIPLE CRISIS. Revista de ciencia política. 44, 269–293. doi: 10.4067/s0718-090x2024005000107

PubMed Abstract | Crossref Full Text | Google Scholar

Escobar-Jiménez, C. (2024). Estructuras internacionales del narcotráfico y factores socioeconómicos de la violencia en Ecuador. URVIO - Revista Latinoamericana de Estudios de Seguridad. 39, 8–28. doi: 10.17141/urvio.39.2024.6164

Crossref Full Text | Google Scholar

Fabre, A. S., Florquin, N., Karp, A., and Schroeder, M. (2023). Weapons Compass: The Caribbean Firearms, Study. Small Arms, Survey, Geneva, Switzerland.

Google Scholar

Fares, I. A., and Abd Elaziz, M. (2025). Explainable TabNet transformer-based on google vizier optimizer for anomaly intrusion detection system. Knowledge-Based Syst. 316:113351. doi: 10.1016/j.knosys.2025.113351

Crossref Full Text | Google Scholar

Gandilhon, M. (2024). World cocaine market: is the phenomenon underestimated? Int. J. Criminol. 11:6. doi: 10.18278/ijc.11.1.4

Crossref Full Text | Google Scholar

Gómez-Vega, R. (2024). De Perú a Ecuador: la frontera porosa de Tumbes abastece de armas a las mafias que pusieron en jaque al país, El País América.

Google Scholar

Guarin, P. J. (2020). FARC-Hezbollah: the success of Venezuela-Iran proxy groups and their convergence in the Americas. Sec. Defence Quart. 31, 117–134. doi: 10.35467/sdq/130934

Crossref Full Text | Google Scholar

Jański, K. (2022). Primeiro comando da capital and comando vermelho: genesis, evolution and their impact through narco-culture. Ad Americam 23, 5–27. doi: 10.12797/AdAmericam.23.2022.23.01

Crossref Full Text | Google Scholar

Jin, Y., Jang, E., Cui, J., Chung, J.-W., Lee, Y., and Shin, S. (2023). Darkbert: a language model for the dark side of the internet. arXiv [Preprint]. arXiv:2305.08596. doi: 10.18653/v1/2023.acl-long.415

PubMed Abstract | Crossref Full Text | Google Scholar

Johnson, M., Schuster, M., Le, Q., Krikun, M., Wu, Y., Chen, Y. N., et al. (2016). Google's multilingual neural machine translation system: enabling zero-shot, translation. Trans. Assoc. Comput. Linguis. 5, 339–351. doi: 10.1162/tacl_a_00065

Crossref Full Text | Google Scholar

Kazemi, D,. M., Borsari, B., Levine, M. J., and Dooley, B. (2017). Systematic review of surveillance by social media platforms for illicit drug use. J. Public Health 39, 763–776. doi: 10.1093/pubmed/fdx020

PubMed Abstract | Crossref Full Text | Google Scholar

Le Cour Grandmaison, R., Oliveira, A. P., and Herbert, M. (2024). A Critical Moment: Haiti's Gang Crisis and International Responses, Global Initiative Against Transnational Organized Crime Switzerland.

Google Scholar

Llorente, M. V., Preciado, A., and Cajiao, A. (2024). Total Peace: Armed Groups Win Head and Shoulders, Fundación Ideas para la Paz, Colombia.

Google Scholar

Medina, F. (2020). Radiografía del tráfico ilícito de armas en México. Revista Mexicana de Política Exterior. 181–192.

Google Scholar

Minaee, S., Kalchbrenner, N., Cambria, E., Nikzad, N., Chenaghlu, M., and Gao, J. (2020). Deep learning based text classification: a comprehensive review. ACM Comput. Surv. 54, 1–40. doi: 10.1145/3439726

Crossref Full Text | Google Scholar

Mires-Agip, D. J., and Solís-Castillo, J. C. (2024). La dinámica del comercio ilegal de armas de fuego en Lima, Perú. Revista Criminalidad. 66, 11–23. doi: 10.47741/17943108.555

PubMed Abstract | Crossref Full Text | Google Scholar

Muise, D., Hosseinmardi, H., Howland, B., Mobius, M., Rothschild, D., and Watts, D. J. (2022). Quantifying partisan news diets in Web and TV audiences. Sci Adv 8:eabn0083. doi: 10.1126/sciadv.abn0083

PubMed Abstract | Crossref Full Text | Google Scholar

Müller, M., Salathé, M., and Kummervold, P. E. (2023). COVID-Twitter-BERT: a natural language processing model to analyse COVID-19 content on Twitter. Front. Artif. Intell. 6:1023281. doi: 10.3389/frai.2023.1023281

PubMed Abstract | Crossref Full Text | Google Scholar

Murillo-Sandoval, P. J., Kilbride, J., Tellman, E., Wrathall, D., Van Den Hoek, J., and Kennedy, R. E. (2023). The post-conflict expansion of coca farming and illicit cattle ranching in Colombia. Sci. Rep. 13:1965. doi: 10.1038/s41598-023-28918-0

PubMed Abstract | Crossref Full Text | Google Scholar

Nguyen, D. Q., Vu, T., and Nguyen, A. T. (2020). BERTweet: a pre-trained language model for English Tweets. Association for Computational Linguistics, Online, 9–14. doi: 10.18653/v1/2020.emnlp-demos.2

PubMed Abstract | Crossref Full Text | Google Scholar

Patil, R., Patil, R. D., Kanase, S., Bhegade, N., Chavan, V., and Kashetwar, S. (2022). “System for Analyzing Crime News by Mining Live Data Streams with Preserving Data Privacy,” in Sentimental Analysis and Deep Learning, eds. S. Shakya, V. E. Balas, S. Kamolphiwong, and K.-L. Du, (Singapore: Springer) 799–811. doi: 10.1007/978-981-16-5157-1_63

Crossref Full Text | Google Scholar

Sanh, V., Debut, L., Chaumond, J., and Wolf, T. (2019). DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter. arXiv [Preprint]. arXiv abs/1910.01108.

PubMed Abstract | Google Scholar

Sosnowski, M., Petrossian, G., Nunphong, T., and Piza, E. (2024). Crimes at sea: exploring the nexus of maritime crimes across global EEZs. Marine Policy 166:106161. doi: 10.1016/j.marpol.2024.106161

Crossref Full Text | Google Scholar

Souza, F., Nogueira, R., and Lotufo, R. (2020). BERTimbau: Pretrained BERT Models for Brazilian Portuguese. Cham: Springer International Publishing. doi: 10.1007/978-3-030-61377-8_28

PubMed Abstract | Crossref Full Text | Google Scholar

Sturn, A., Quackenbush, J., and Trajanoski, Z. (2002). Genesis: cluster analysis of microarray data. Bioinformatics 18, 207–8. doi: 10.1093/bioinformatics/18.1.207

PubMed Abstract | Crossref Full Text | Google Scholar

Taer, J., and Christenson, J. (2024). Hundreds of suspected cartel drones, some with explosives, are flying near the southern border. The New York Post.

Google Scholar

Torres, A. (2024). Una red de marinos vende información a narcos en Colombia y Ecuador, Primicias.

Google Scholar

UNODC. (2023). UNODC Global Report on Cocaine, 2023: Local, Dynamics, Global, C.hallenges, United Nations Office on Drugs and Crime, Vienna.

Google Scholar

Vásquez, A., Alvarado, R., Tillaguango, B., Işik, I., and Murshed, M. (2023). Impact of social and institutional indicators on the homicide rate in ecuador: an analysis using advanced time series techniques. Soc. Ind. Res. 169, 1–22. doi: 10.1007/s11205-023-03150-5

Crossref Full Text | Google Scholar

Wang, H., Li, J., Wu, H., Hovy, E., and Sun, Y. (2023). Pre-trained language models and their applications. Engineering 25, 51–65. doi: 10.1016/j.eng.2022.04.024

Crossref Full Text | Google Scholar

Wang, S., Ren, D., and Lyu, X. (2023). “Core Issues and Key Arguments of ChatGPT: Topic Mining and Sentiment Analysis Based on U.S. News Reports,” in Image and Graphics, eds. H. Lu, W. Ouyang, H. Huang, J. Lu, R. Liu, J. Dong, and M. Xu (Cham: Springer Nature Switzerland) 176–185. doi: 10.1007/978-3-031-46314-3_14

Crossref Full Text | Google Scholar

Yang, Q. (2024). Performance analysis of k-Nearest Neighbors classification on Reuters news article datasets. Appl. Computat. Eng. 55, 184–189. doi: 10.54254/2755-2721/55/20241444

Crossref Full Text | Google Scholar

Zhang, H., and Lu, Y. (2025). Web 3.0: Applications, opportunities, and challenges in the next internet generation. Syst. Res. Behav. Sci. 42, 996–1015. doi: 10.1002/sres.3151

Crossref Full Text | Google Scholar

Keywords: firearms trafficking, ICCS, BERT, zero-shot prompts, entity resolution, named entities, geocodes, timestamps

Citation: Valdivia-Granda WA (2025) Structure and dynamics mapping of illicit firearms trafficking using artificial intelligence models. Front. Big Data 8:1648730. doi: 10.3389/fdata.2025.1648730

Received: 08 July 2025; Accepted: 01 September 2025;
Published: 25 September 2025.

Edited by:

A.M. Elsawah, Beijing Normal–Hong Kong Baptist University, China

Reviewed by:

Ibrahim A. Fares, Zagazig University, Egypt
Yang Lu, Beijing Technology and Business University, China

Copyright © 2025 Valdivia-Granda. This is an open-access article distributed under the terms of the Creative Commons Attribution License (CC BY). The use, distribution or reproduction in other forums is permitted, provided the original author(s) and the copyright owner(s) are credited and that the original publication in this journal is cited, in accordance with accepted academic practice. No use, distribution or reproduction is permitted which does not comply with these terms.

*Correspondence: Willy A. Valdivia-Granda, d2lsbHkudmFsZGl2aWFAb3Jpb25iaW8uY29t

Disclaimer: All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article or claim that may be made by its manufacturer is not guaranteed or endorsed by the publisher.