ArtificialIntelligence.io

The Signal

Everything that matters in AI, with our take.

Updated through the day. Every headline links straight to the source. The two lines underneath are ours.

arXiv cs.CLPaper

Automated Identification of Competing Narratives in Political Discourse on Social Media

Political narrative analysis via LLM pipelines is becoming standard toolkit. The German case study is narrow, and the paper offers little evidence that the method outperforms simpler baselines or offers insights that matter to policy. It's technically competent but incremental—useful for academic discourse analysis, less useful for builders.

arXiv cs.LGPaper

Enabling Knowledge Graph Understanding at Scale with the EXplore Your Graphs ENgine (EXYGEN)

Text-to-SPARQL is the bridge problem between natural language and structured knowledge graph queries. The paper shows that off-the-shelf LLMs plus good prompt context (schemas, samples) can hit 41.9% exact-match on execution without fine-tuning, which is meaningful. For builders adding conversational KG access to products, this is a usable baseline. The finding that larger general-purpose models outperform code-specialized ones is worth noting.

arXiv cs.CLPaper

TransClean: A Benchmark for Detecting and Extracting Clean Translations from Large Language Model Outputs

LLM translation noise is a real problem: outputs often include language labels, explanations, or bilingual repetitions that break downstream pipelines. TransClean gives you a systematic way to audit and extract. If you're deploying LLMs for translation, this benchmark clarifies the cost of not post-processing. Build extraction into your pipeline.

arXiv cs.AIPaper

Bag of Tricks or Bag of Myths? Reducing Modeling Complexity with Task Knowledge in Explainable Suicide Risk Assessment

This is methodological skepticism applied to a high-stakes problem. Most standard tricks (scaling, synthetic data, reweighting) don't help when class imbalance is severe and examples are scarce. The takeaway is domain-specific: suicide risk prediction requires task-grounded approaches, not technique stacking. For teams working on clinical NLP at small scale, read the paper to see which tricks actually work in your regime.

arXiv cs.CLPaper

Improving Language Identification for Code-Switched Utterances with Integer Linear Programming

Code-switching breaks LLM tokenizers and training pipelines, and underrepresented in training data means poor performance in multilingual systems. The ILP formulation is cleaner and more interpretable than neural approaches. For anyone building multilingual systems, especially in regions where code-switching is common, this solves a real bottleneck. The code is released for reproducibility.

arXiv cs.CLPaper

Typological Feature Prediction with Large Language Models: An In-Context Learning Approach

This is solid academic work on a real problem in multilingual NLP, but it's incremental. The core finding, that in-context learning beats baselines when you add the right features, is useful for researchers building multilingual systems. The interpretability angle is nice, but the practical impact is narrow: you need URIEL+ and Glottolog data, and you're predicting discrete linguistic properties, not generating novel capabilities.

arXiv cs.CLPaper

Inspicio: Open-Vocabulary, LLM-Based Sense Retrieval for Historical Languages

This is specialized and useful for a specific problem: word sense disambiguation when you don't have bilingual resources. The pipeline is sensible (translate, get definitions, retrieve, rank) but the application is narrow. For most builders, this is academically solid but not actionable. For researchers in historical linguistics or low-resource NLP, it's a real tool.