Simon Willison is ignoring his X replies because… · M&A 🤖
| View this email in your browser |
![]() Models & AgentsDaily AI models, agents, and practical developments.
|
🎧 Today's episode Episode 162 · Simon Willison is ignoring his X replies because AI-generated slop is wasting everyone's time. 2026-09-03 ▶ Listen now |
What You Need to Know: Simon Willison called out automated scripts that post pointless questions on X, noting they trick people into spending mental energy on answers nobody cares about. He added that AI slop replies have made him stop reading most of his notifications. Builders should prioritize output quality and real utility over volume when deploying models in public spaces. Top StorySimon Willison posted two threads on X highlighting how AI-generated questions and replies degrade online interaction. He described automated scripts that post questions with no real audience, forcing responders to expend effort on meaningless exchanges. In a follow-up he noted that the flood of low-value AI replies has led him to largely stop reading notifications on the platform. The posts underscore a practical problem for anyone building public-facing AI tools: volume without intent pollutes shared spaces and erodes trust. Watch for similar complaints from other high-profile builders as agent-driven posting increases. Source: x.com Model UpdatesMemeCULT-1K: Benchmarking South Asian Cultural Context and Humor Understanding of Multimodal Models — arXiv NLP The new benchmark contains 1,000 South Asian memes across Bengali, English, and Hindi, each paired with cultural context notes and human explanations plus 54 additional Bengali dialect memes. Thirteen vision-language models were tested in meme-only and context-aware settings; adding minimal cultural context lifted mean SBERT similarity from 44.6 to 56.4 and LLM-as-a-Judge scores from 2.57 to 3.43. Closed-source models mainly failed on entity identification while open-source models struggled with broader cultural gaps. Builders working on culturally grounded multimodal applications should test against this set before deployment. Source: arxiv.org VakyArth: Evaluating Pragmatic Competence in LLMs across Indic Languages — arXiv NLP VakyArth introduces the first pragmatic benchmark for Hindi, Punjabi, Tamil, and Malayalam covering deixis, speech acts, implicature, social pragmatics, and coherence. Native-speaker-authored items show consistent model failures on Indic conventions, with MCQ accuracy exceeding NLI accuracy across families and sizes. Translation performance does not reliably track pragmatic understanding, and Indo-Aryan languages show an advantage over Dravidian ones. Teams building Indic-language dialogue systems should add this diagnostic to their evaluation suite. Source: arxiv.org TalkFa: A Unified Benchmark for Farsi Dialogue Generation and Understanding — arXiv NLP TalkFa supplies three human-reviewed datasets totaling over 12,000 Farsi dialogues for knowledge-grounded generation, dialogue-act annotation, and sentiment-labeled theatrical exchanges. LoRA fine-tuning on Llama and Mistral models recovered over 90 percent of final performance with only 25-50 percent of the training data. FABERT led dialogue-act classification while LORA-MISTRAL-7B performed best on emotion recognition. Developers targeting Farsi conversational applications now have a native benchmark with verified data quality. Source: arxiv.org How Output Format Confounds Data Quality and Capability in Instruction Tuning — arXiv NLP Gradient-signature experiments across 12 tasks and three model families demonstrate that output interface rotation leaves spectral statistics invariant while carrying the actual quality signal in the update direction. A skill that raises accuracy more than 40 points under the training format can become nearly invisible under any other interface. The work shows that both data-quality metrics and measured capability are conditioned on the surface format used during evaluation. Source: arxiv.org Selective Knowledge Edit Reversal via Gated Singular Vector Shrinkage — arXiv NLP The method locates edit-sensitive components inside the dominant singular subspace of edited weights and reverses only targeted facts while preserving unrelated edits. Experiments confirm that different edits remain separable when the total number of edits stays moderate. Teams maintaining long-lived edited models now have a spectral tool for selective rollback. Source: arxiv.org Do Cantonese-Adapted Language Models Better Predict Cantonese Reading? A Cross-Model Eye-Tracking Evaluation — arXiv NLP Lexical surprisal and a joint four-metric model favored the extensively continued-pretrained CantoneseLLM-7B over its base Qwen2.5-7B, while entropy reduction favored the lighter CKIP model. The results indicate that more extensive variety-specific training can improve psycholinguistic fit, though rankings shift with the chosen information-theoretic measure. Source: arxiv.org Agent & Tool DevelopmentsOBJECTION! Lawyer Agents Mitigate Guilty Bias in Legal Judgment Prediction — arXiv NLP OBJECTION inserts an adversarial lawyer agent into each step of a three-stage offense-unlawfulness-culpability reasoning pipeline, challenging presumptions of guilt with defense arguments. On a new Natural Innocent dataset of 3.4k real-world cases the approach cut the false guilty rate from 82.93 percent to 16.69 percent. The pipeline requires no retraining and works at inference time. Legal-tech teams should evaluate it when building judgment-support systems. Source: arxiv.org HyGRAIL: Cost-Aware and Evidence-Grounded Scientific Hypothesis Discovery over Knowledge Graphs — arXiv NLP HyGRAIL routes only graph-uncertain candidates from a GNN triage step to an LLM reviewer that receives naturalized multi-hop paths from the knowledge graph. On MatKG it reached 0.429 F1 while cutting LLM calls by 54.36 percent versus exhaustive review. The framework supplies a practical cost-control pattern for hypothesis generation over incomplete scientific graphs. Source: arxiv.org AVERT: Audio-Verified Adjudication for Spoken Dialogue State Tracking — arXiv NLP AVERT combines cross-turn agreement scoring with an audio-conditioned verifier and applies three targeted operators—vote, add, swap—only on slots where each error type is common. On SpokenWOZ it lifted joint goal accuracy from 38.34 to 40.13 without retraining the underlying speech-LLM. The approach shows how lightweight verification layers can correct persistent ASR-induced state errors. Source: arxiv.org A Tri-Agent Framework for Evaluating and Aligning Question Clarification Capabilities of Large Language Models — arXiv NLP The framework uses a Question Clarifying Agent under test, a Respondent Agent that can give irrelevant or challenging replies, and an Evaluator Agent that scores ambiguity handling, question quality, and final intent alignment. Synthetic supply-chain data generation plus native-speaker validation provides a repeatable test harness for clarification behavior. Teams shipping conversational systems can adopt the structure to measure and improve clarification performance. Source: arxiv.org NS-Copilot: An LLM-Driven Agent System for Autonomous Neuroscience Analysis — arXiv NLP NS-Copilot orchestrates specialized agents for planning, adaptive control, code generation, and result synthesis while routing to pre-trained models for EEG and spike data. Across eight trials on Alzheimer's, Parkinson's, and working-memory benchmarks it consistently outperformed strong baselines on primary metrics. Neuroscience labs gain an end-to-end natural-language interface that removes dataset-specific heuristics. Source: arxiv.org Practical & CommunityPRO-Step: Step-level Process Reward Optimization for Retrieval-Augmented Generation — arXiv NLP PRO-Step trains a generative process reward model that scores both logical validity and evidential grounding at each retrieval-reasoning step, then uses PRM-guided value tree search to build preference pairs for step-level DPO. The method achieved the best average EM and F1 across five single- and multi-hop QA benchmarks, with code, models, and training data released. RAG teams facing error propagation in multi-hop settings should examine the released artifacts. Source: arxiv.org How Do Prompt Variations Affect Energy Consumption in On-Device LLMs? — arXiv NLP A broad study across models, devices, and datasets separates prefill and decode energy and shows cognitive load mainly affects energy per token while phrasing pattern acts through token count. The work supplies phase-level profiling scripts and a public energy-quality frontier for model-aware prompt design. Developers targeting on-device inference should incorporate these measurements when optimizing prompts. Source: arxiv.org Cite or Decline: A Strict Course-Grounded Chatbot for STEM Lecture Videos — arXiv NLP VideoPoints retrieves only from the active course, uses chapter summaries for transcript ranking, and returns timestamped citations or declines when no evidence matches. In a semester-long deployment 70.5 percent of 833 messages included citations and none crossed course boundaries. Course-platform teams now have a concrete pattern for citation-enforced, course-isolated chatbots. Source: arxiv.org text2ql: Multi-Target Natural Language Querying via a Language-Agnostic Intermediate Representation — arXiv NLP text2ql supplies a seven-stage detection pipeline and pluggable renderers that target both SQL and GraphQL from a single QueryIR representation. The deterministic zero-LLM mode delivered 100 percent execution accuracy at 3.2 ms median latency with no API cost. Schema-aware prompting contributed an 18.4-point exact-match gain. Developers building natural-language database interfaces can adopt the open-source Python package immediately. Source: arxiv.org Under the Hood: Dimension-Level Conditioning in Activation SteeringEveryone talks about activation steering as if you simply add one vector and the model behaves. In practice the technique is a set of selectivity decisions that trade precision against overhead. The core move is to decide not only when to steer but which hidden dimensions actually carry the target concept. GAPS implements this with a static separability gate that keeps only neurons showing reliable concept information via AUROC and a dynamic posterior gate that steers a neuron only when its current activation is better explained by the undesired concept under a Gaussian model. The two gates add O(D) work per token yet measurably improve the capability–behavior tradeoff; on toxicity mitigation with Gemma-3-4B the combined DSAS+GAPS pipeline dropped toxicity from 6.52 percent to 0.48 percent while staying inside the same capability budget. The practical decision rule is straightforward: if your steering vector is dense and you observe capability regression, add dimension-level gating before you increase steering strength or switch to a heavier model. Things to Try This Week
On the Horizon
```claims [] |
💬 Reply to this email — Patrick reads every one. Share: X · LinkedIn · WhatsApp Forwarded this email? Subscribe here — it's free. |
📺 Watch on YouTube · 📝 Read the blog · 🖼 Free image gallery (CC BY-SA) · 📊 Data Hub & Story Trackers · 🧭 Start Here Nerra Network · AI-narrated voice (Grok TTS) · Editorial by Patrick You're receiving this because you subscribed to Models & Agents on nerranetwork.com. |
| Issue #162 · Models & Agents · Sep 3, 2026 |
