When Do LLMs Replace Fine-Tuned NLU? A Decision Framework for Intent Detection in Production Conversational Systems

arXiv cs.CL Papers

Summary

The paper evaluates when zero-shot LLMs can replace fine-tuned NLU classifiers for intent detection in production, highlighting LLM advantages in out-of-scope detection, ASR robustness, and dynamic schemas, and offers a decision framework for practitioners.

arXiv:2608.20371v1 Announce Type: new Abstract: A common claim is that zero-shot large language models (LLMs) can replace fine-tuned NLU classifiers for intent detection. We test this claim head-to-head and find that the honest answer is: it depends on the intent space. On full ATIS and CLINC150 we compare a fine-tuned RoBERTa, a TF-IDF+logistic-regression baseline, sentence-embedding kNN, and Claude Haiku zero-shot, reporting bootstrap 95% confidence intervals and paired significance tests. When abundant in-domain labels exist, fine-tuned RoBERTa is as good or better and three orders of magnitude cheaper and faster: on ATIS it beats Claude zero-shot by 11.8 points (95.9 vs. 84.1, p<0.001). On the broad 150-intent CLINC150 schema the two are statistically tied (89.1 vs. 88.5, p=0.24): the LLM matches a fully supervised model with no training data. The LLM's advantages appear in three production-relevant regimes: out-of-scope detection (OOS recall 85.6 vs. 58.1 for RoBERTa); robustness to realistic ASR noise via a controlled text-to-speech to noise to Whisper pipeline (92.5 vs. 80.0 at 0 dB); and dynamic per-deployment schemas, where a classifier trained on one app's intents scores 0% on a new app's intents while the schema-prompted LLM serves both at ~94% with zero retraining. We distill these findings into a decision framework for practitioners.
Original Article
View Cached Full Text

Cached at: 08/24/26, 04:14 AM

# When Do LLMs Replace Fine-Tuned NLU? A Decision Framework for Intent Detection in Production Conversational Systems
Source: [https://arxiv.org/html/2608.20371](https://arxiv.org/html/2608.20371)
###### Abstract

A common claim is that zero\-shot large language models \(LLMs\) can replace fine\-tuned NLU classifiers for intent detection\. We test this claim head\-to\-head and find that the honest answer is*it depends on the intent space*\. On full ATIS and CLINC150 we compare a fine\-tuned RoBERTa, a TF\-IDF\+logistic\-regression baseline, sentence\-embeddingkkNN, and Claude Haiku zero\-shot, reporting bootstrap 95% confidence intervals and paired significance tests\. When abundant in\-domain labels exist, fine\-tuned RoBERTa is as good or better and three orders of magnitude cheaper and faster: on ATIS it beats Claude zero\-shot by11\.811\.8points \(95\.995\.9vs\.84\.184\.1,p<10−3p<10^\{\-3\}\)\. On the broad 150\-intent CLINC150 schema the two are*statistically tied*\(89\.189\.1vs\.88\.588\.5,p=0\.24p=0\.24\): the LLM matches a fully supervised model with no training data\. The LLM’s advantages appear in three production\-relevant regimes\. The first is out\-of\-scope detection \(OOS recall85\.685\.6vs\.58\.158\.1for RoBERTa\)\. The second is robustness to realistic ASR noise, using a controlled text\-to\-speech→\\rightarrownoise→\\rightarrowWhisper pipeline \(92\.592\.5vs\.80\.080\.0at 0 dB\)\. The third, and most consequential, is*dynamic per\-deployment schemas*: a classifier trained on one app’s intents scores0%0\\%on a new app’s intents, while the schema\-prompted LLM serves both at∼94%\{\\sim\}94\\%with zero retraining\. We distill these findings into a decision framework for practitioners\.

When Do LLMs Replace Fine\-Tuned NLU? A Decision Framework for Intent Detection in Production Conversational Systems

Carson RodriguesCelabecarson@celabe\.comOysturn VasUniversity of Waterlooovas@uwaterloo\.ca

## 1Introduction

In task\-oriented dialogue, intent detection maps an utterance to an action:“what’s my balance?”→\\rightarrowaccount\_balance\. Fine\-tuned BERT/RoBERTa classifiers have been the standard solution since 2019Devlin et al\. \([2019](https://arxiv.org/html/2608.20371#bib.bib7)\); Liu et al\. \([2019](https://arxiv.org/html/2608.20371#bib.bib14)\); Chen et al\. \([2019](https://arxiv.org/html/2608.20371#bib.bib5)\), and recent work shows instruction\-tuned LLMs are competitive zero\-shotWei et al\. \([2021](https://arxiv.org/html/2608.20371#bib.bib19)\); Zhong et al\. \([2023](https://arxiv.org/html/2608.20371#bib.bib22)\); Arora et al\. \([2024](https://arxiv.org/html/2608.20371#bib.bib2)\)\. This has produced a recurring practitioner question, and a recurring overclaim:*can we drop the fine\-tuned model and just prompt an LLM?*

We argue the question is under\-specified, and we answer the specific version that matters in production:*when*does each approach win, on*which*axis \(accuracy, latency, cost, robustness, adaptability\), and*under what*properties of the intent space? Our perspective comes from operating a production voice\-AI platform where each customer application deploys its own set of UI actions, i\.e\. a new intent schema per deployment, typically with little or no labeled data\.

We make three contributions:

1. 1\.Arigorous head\-to\-headof fine\-tuned RoBERTa, TF\-IDF\+LR, sentence\-embeddingkkNN, and Claude Haiku zero\-shot on full ATIS \(893 test\) and CLINC150 \(5,500 test\), with bootstrap 95% CIs and paired\-bootstrap/McNemar significance tests, rather than single\-run point estimates on a handful of examples\.
2. 2\.Threeproduction\-relevant stress teststhat isolate where the LLM’s value actually lies: explicit out\-of\-scope detection, realistic WER\-stratified ASR robustness, and adynamic\-schema experimentin which a fine\-tuned model and an LLM are confronted with a previously unseen application schema\.
3. 3\.Adecision frameworkthat maps intent\-space properties to the right tool, including the regime where fine\-tuned models are not merely worse but*inapplicable*\.

Our headline finding runs against the prevailing narrative: on a stable, data\-rich, narrow domain \(ATIS\) the LLM is significantly*worse*and far more expensive than a fine\-tuned classifier\. Its value is real but*conditional*\. It dominates when the intent space is open, dynamic, or label\-scarce, and when out\-of\-scope handling matters\.

## 2Related Work

#### Fine\-tuned NLU\.

Bag\-of\-words classifiersLiu and Lane \([2016](https://arxiv.org/html/2608.20371#bib.bib13)\)gave way to BERT\-based intent classifiersDevlin et al\. \([2019](https://arxiv.org/html/2608.20371#bib.bib7)\); Chen et al\. \([2019](https://arxiv.org/html/2608.20371#bib.bib5)\), which remain state of the art on ATISHemphill et al\. \([1990](https://arxiv.org/html/2608.20371#bib.bib9)\)and SNIPSCoucke et al\. \([2018](https://arxiv.org/html/2608.20371#bib.bib6)\)\.Larson et al\. \([2019](https://arxiv.org/html/2608.20371#bib.bib10)\)introduced CLINC150 with an explicit out\-of\-scope class, isolating the recognized weakness of closed\-set classifiers\. Few\-shot methodsZhang et al\. \([2021](https://arxiv.org/html/2608.20371#bib.bib21)\); Yehudai and Bendel \([2024](https://arxiv.org/html/2608.20371#bib.bib20)\)reduce but do not remove the dependence on per\-intent labels;Yehudai and Bendel \([2024](https://arxiv.org/html/2608.20371#bib.bib20)\)further show that with many classes, LLM in\-context learning becomes impractical and∼1\{\\sim\}1ms encoders remain attractive\.

#### LLMs for intent detection\.

Wei et al\. \([2021](https://arxiv.org/html/2608.20371#bib.bib19)\)andBrown et al\. \([2020](https://arxiv.org/html/2608.20371#bib.bib4)\)established strong zero/few\-shot classification\.Zhong et al\. \([2023](https://arxiv.org/html/2608.20371#bib.bib22)\)compared ChatGPT against fine\-tuned BERT on NLU benchmarks \(competitive zero\-shot, below fine\-tuned in full\-data regimes\)\. Closest to us,Arora et al\. \([2024](https://arxiv.org/html/2608.20371#bib.bib2)\)study LLM intent detection at scale and find OOS quality is governed by the size and scope of the label space, and that uncertainty\-based routing recovers most LLM accuracy at half the latency\. We differ by \(i\) testing the*dynamic per\-deployment schema*regime directly, \(ii\) measuring*realistic*ASR robustness rather than synthetic character noise, and \(iii\) framing the result as a deployment decision rather than a benchmark ranking\.

#### Dynamic schemas and OOS\.

The schema\-guided dialogue paradigmRastogi et al\. \([2020](https://arxiv.org/html/2608.20371#bib.bib17)\)and its robustness benchmark SGD\-XLee et al\. \([2022](https://arxiv.org/html/2608.20371#bib.bib11)\)formalize intents supplied as natural\-language schemas at inference, precisely the per\-app setting we study\. We operationalize it as a disjoint\-schema transfer test\.

#### Latency and ASR\.

Sub\-second response is the conversational barLevinson and Torreira \([2015](https://arxiv.org/html/2608.20371#bib.bib12)\); Anyscale \([2024](https://arxiv.org/html/2608.20371#bib.bib1)\), and prompt compression trades tokens for latencyPan et al\. \([2024](https://arxiv.org/html/2608.20371#bib.bib15)\)\. For robustness we synthesize speech, inject graded noise, and transcribe with WhisperRadford et al\. \([2023](https://arxiv.org/html/2608.20371#bib.bib16)\); SLURPBastianelli et al\. \([2020](https://arxiv.org/html/2608.20371#bib.bib3)\)is the real\-audio alternative we discuss in Limitations\.

## 3Datasets and Methods

### 3\.1Datasets

We use two public benchmarks at full scale\.ATISHemphill et al\. \([1990](https://arxiv.org/html/2608.20371#bib.bib9)\): 4,978 train / 893 test over the standard 26\-intent label space \(22 intents occur in the training split; the test set is≈71%\{\\approx\}71\\%flight\), a narrow, heavily skewed flight domain\.CLINC150\(plusconfiguration\)Larson et al\. \([2019](https://arxiv.org/html/2608.20371#bib.bib10)\): 15,250 train / 5,500 test across 150 in\-scope intents in 10 domains, plus 1,000 explicit out\-of\-scope test utterances\. ATIS represents the stable, narrow, data\-rich regime; CLINC150 the broad\-schema regime with a built\-in OOS axis\.

### 3\.2Systems

TF\-IDF\+LR: word/bigram TF\-IDF with class\-balanced logistic regression, our on\-device floor\.ST\+kkNN:all\-MiniLM\-L6\-v2sentence embeddingsReimers and Gurevych \([2019](https://arxiv.org/html/2608.20371#bib.bib18)\)with cosinekkNN; we also report a 5\-shot variant \(1\-NN\) as the low\-data deployment competitor\.RoBERTa\-ft:roberta\-baseLiu et al\. \([2019](https://arxiv.org/html/2608.20371#bib.bib14)\)fine\-tuned for four epochs, our supervised ceiling\.Claude Haiku\(claude\-haiku\-4\-5\): zero\-shot, prompted with the intent label set and a JSON output schema; bulk evaluation uses the Anthropic Message Batches API\.

### 3\.3Statistical protocol

Every accuracy is reported with a percentile bootstrap 95% CI \(10,00010\{,\}000resamples\)Efron and Tibshirani \([1986](https://arxiv.org/html/2608.20371#bib.bib8)\); macro\-F1 accompanies accuracy because ATIS is highly imbalanced\. System comparisons on identical test items use a paired bootstrap on the accuracy difference and McNemar’s test\. This directly addresses the small\-sample, no\-variance critique of single\-run point estimates\.

### 3\.4Out\-of\-scope protocol

On CLINC150 we report in\-scope accuracy together with OOS recall, precision, and F1, treating the explicitoosclass as the positive classLarson et al\. \([2019](https://arxiv.org/html/2608.20371#bib.bib10)\)\. The LLM is permitted to answeroos; the classifiers learn it from theplustraining split\.

### 3\.5Dynamic\-schema \(schema\-swap\) protocol

To model onboarding a new application, we deterministically partition CLINC150’s 150 in\-scope intents into two disjoint app schemas, A and B \(75 intents each\)\. A*locked*RoBERTa is fine\-tuned on App A only; its classification head can physically emit only App A labels\. We then evaluate each model on each app\. A schema\-driven LLM receives*only*the relevant app’s label list at inference\.

### 3\.6ASR\-robustness pipeline

Instead of synthetic character substitutions, we build a controlled pipeline with known ground truth: 120 CLINC utterances are synthesized with a commercial neural TTS voice, degraded with additive white noise at \{clean, 20, 10, 5, 0\} dB SNR, and transcribed with Whisper\-baseRadford et al\. \([2023](https://arxiv.org/html/2608.20371#bib.bib16)\)\. Word error rate \(jiwer, punctuation/case normalized\) defines the strata; the degraded transcripts are then classified\.

## 4Results

### 4\.1In\-domain accuracy: the data\-rich regime favors fine\-tuning

Table[1](https://arxiv.org/html/2608.20371#S4.T1)reports accuracy \(with 95% CI\) and macro\-F1\. OnATIS, fine\-tuned RoBERTa \(95\.9\) and even TF\-IDF\+LR \(95\.2\) clearly beat Claude zero\-shot \(84\.1\); the paired bootstrap puts the RoBERTa−\-Claude gap at\+11\.8\+11\.8points \(CI\[9\.2,14\.4\]\[9\.2,14\.4\],p=2×10−4p=2\\times 10^\{\-4\}; McNemarp=2\.5×10−16p=2\.5\\times 10^\{\-16\}\)\. Part of this gap is ATIS\-specific: its idiosyncratic compound intents \(e\.g\.flight\+airfare\) are awkward to express as a flat label list, and the zero\-shot model often returns plausible but non\-canonical combinations, which also depresses its macro\-F1 \(42\.4\)\. The broader point holds regardless: on a narrow, stable, well\-labeled domain the LLM is significantly worse, and as §[4\.5](https://arxiv.org/html/2608.20371#S4.SS5)shows it is roughly103×10^\{3\}\\timesslower and costlier\. OnCLINC150the difference is only0\.60\.6points \(95% CI\[−0\.4,\+1\.7\]\[\-0\.4,\+1\.7\],p=0\.24p=0\.24\): RoBERTa \(89\.1\) and Claude \(88\.5\) are statistically indistinguishable, and the LLM reaches this with*zero*training data\. The CLINC150 accuracies in Table[1](https://arxiv.org/html/2608.20371#S4.T1)include the 1,000 out\-of\-scope test items, which every system partly misses; in\-scope\-only accuracy is reported separately in Table[2](https://arxiv.org/html/2608.20371#S4.T2)\. The original premise that ATIS “favors LLMs” is in fact false; the earlier appearance of a large LLM advantage was an artifact of a tiny \(N=56N\{=\}56\) training split for the baseline\.

Table 1:Intent\-detection accuracy \(%, bootstrap 95% CI\) and macro\-F1 on full ATIS \(893 test\) and CLINC150 \(5,500 test, including 1,000 out\-of\-scope items\)\. Macro\-F1 is far below accuracy on ATIS because the test set is 71%flight; the zero\-shot LLM is hit hardest on the long tail of compound classes\.
### 4\.2Out\-of\-scope detection: the LLM abstains far better

On CLINC150’s explicit OOS task \(Table[2](https://arxiv.org/html/2608.20371#S4.T2)\), Claude reaches OOS recall85\.685\.6and F185\.085\.0, versus58\.158\.1/73\.073\.0for RoBERTa and36\.436\.4/51\.751\.7for TF\-IDF, at comparable in\-scope accuracy\. Knowing when an utterance falls outside the schema, the central requirement for safe deployment, is where the LLM’s world knowledge helps most\.

Table 2:Out\-of\-scope detection on CLINC150 \(oosas positive class\)\.
### 4\.3Dynamic schemas: the fine\-tuned model cannot transfer

Table[3](https://arxiv.org/html/2608.20371#S4.T3)is the core of the deployment argument\. The locked RoBERTa is excellent on its own schema \(App A, 96\.8\) but scores*exactly*0%0\\%on App B: its head cannot emit a label it never trained on, so no accuracy improvement can help\. The schema\-driven LLM, given only the relevant app’s labels, serves*both*apps at∼94%\{\\sim\}94\\%with no retraining\. The gap here is categorical rather than incremental, separating “works” from “is not an option at all\.”

Table 3:Dynamic\-schema transfer: accuracy \(%\) on CLINC150 split into disjoint app schemas A/B \(75 intents each\)\. Bootstrap 95% CIs span±1\{\\pm\}1point \(e\.g\. App A: RoBERTa\[96\.0,97\.5\]\[96\.0,97\.5\], Claude\[93\.3,95\.2\]\[93\.3,95\.2\]\)\.
### 4\.4ASR robustness: the LLM degrades more gracefully

Across the WER strata \(Table[4](https://arxiv.org/html/2608.20371#S4.T4)\), both systems are strong on clean speech, but as SNR falls the lexical classifier degrades faster: at 0 dB \(mean WER28\.9%28\.9\\%\) TF\-IDF drops to80\.080\.0while Claude holds92\.592\.5\. The LLM’s tolerance of the misspellings and phonetic corruptions that are endemic in real ASR output is a measurable advantage, not a hypothetical one\.

Table 4:Intent accuracy \(%\) vs\. acoustic SNR on the TTS→\\rightarrownoise→\\rightarrowWhisper corpus \(120 utts/condition\)\.
### 4\.5Latency and cost

Table[5](https://arxiv.org/html/2608.20371#S4.T5)measures latency over 1,000 calls \(not a handful\)\. The on\-device classifiers respond in microseconds\-to\-milliseconds at zero marginal cost; the LLM’s median is 981 ms, with ap95p\_\{95\}of 1,787 ms, above the 500 ms conversational bar\. The $0\.25/1K figure is the Claude Haiku list price at the observed prompt/completion token counts; the on\-device models have zero marginal cost\. For a stable, high\-QPS, latency\-critical path the fine\-tuned model is the obvious choice; the LLM’s cost is justified only where its adaptability or OOS handling is required\.

Table 5:Per\-request latency \(1,000 calls\) and marginal cost\.

## 5A Decision Framework

Our results refute a single ranking and support a conditional one\. The right tool is a function of the intent space, not of benchmark leaderboards:

- •Stable schema, abundant labels, latency\-/cost\-critical\(e\.g\. a mature single\-domain assistant\):*use a fine\-tuned encoder*\. It matches or beats the LLM \(ATIS:\+11\.8\+11\.8pts\) at∼103×\{\\sim\}10^\{3\}\\timeslower latency and zero marginal cost\.
- •Broad schema, moderate labels:*either works*; the LLM removes the training pipeline at parity \(CLINC150: tie\), so the choice reduces to latency/cost budget\.
- •Dynamic / per\-deployment schema, little or no labeled data\(our production setting\):*use a schema\-prompted LLM*\. A fine\-tuned model is not merely worse here; it scores0%0\\%on an unseen app schema and requires a fresh annotation and training cycle per deployment\.
- •Out\-of\-scope handling is safety\-critical:*favor the LLM*\(OOS recall85\.685\.6vs\.58\.158\.1\), or add LLM\-based OOS routing on top of a fast classifier\.
- •Noisy ASR front\-end: the LLM degrades more gracefully \(\+12\.5\+12\.5pts at 0 dB\); a*hybrid*\(a fast classifier on the clean path with LLM fallback when confidence is low or WER is high\) captures most of the benefit, consistent withArora et al\. \([2024](https://arxiv.org/html/2608.20371#bib.bib2)\)\.

## 6Limitations

We evaluate English ATIS and CLINC150; multilingual and multi\-intent/multi\-turn settings are out of scope\. The ASR study uses controlled TTS\+additive\-noise rather than a fully natural spoken corpus such as SLURPBastianelli et al\. \([2020](https://arxiv.org/html/2608.20371#bib.bib3)\), which exceeded our storage budget; while the noise is synthetic, the resulting transcripts are produced by a real ASR model and stratified by measured WER\. We report the LLM zero\-shot, the realistic condition when a new deployment has no labeled data; few\-shot in\-context prompting would likely narrow the ATIS gap and is a natural extension, though it reintroduces a \(small\) labeling requirement\. We evaluate one LLM \(Claude Haiku\) and one encoder \(RoBERTa\-base\); larger models would shift absolute numbers but not the conditional structure of the framework\. The dynamic\-schema test uses a clean intent partition; production schemas may overlap, which would soften but not eliminate the locked\-classifier ceiling\.

## 7Ethical Considerations

Experiments use public benchmarks \(ATIS, CLINC150\) and synthesized speech; no human\-subjects or proprietary user data are released\. The deployment context is a commercial voice\-AI platform; no customer\-identifying information or proprietary system details are disclosed\. LLM API calls were billed to the authors\. We report negative results \(the LLM losing on ATIS\) to counter publication bias toward LLM superiority\.

## 8Conclusion

The question is not whether LLMs beat fine\-tuned NLU, but*when*\. With abundant labels and a stable schema, fine\-tuned encoders win decisively on accuracy, latency, and cost\. The LLM earns its place where the intent space is dynamic or label\-scarce, where out\-of\-scope detection is critical, and where ASR noise is heavy, and above all when each deployment introduces a new schema, a regime in which a fine\-tuned classifier cannot operate at all\. We release the resulting decision framework and the full evaluation harness so that practitioners can choose deliberately rather than by default\.

## References

- Anyscale \(2024\)Anyscale\. 2024\.[Llm performance metrics: Latency and throughput](https://www.anyscale.com/blog/llm-performance-metrics)\.Technical report, Anyscale\.
- Arora et al\. \(2024\)Gaurav Arora, Shreya Jain, and Srujana Merugu\. 2024\.Intent detection in the age of LLMs\.*arXiv preprint arXiv:2410\.01627*\.
- Bastianelli et al\. \(2020\)Emanuele Bastianelli, Andrea Vanzo, Pawel Swietojanski, and Verena Rieser\. 2020\.SLURP: A spoken language understanding resource package\.In*Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing \(EMNLP\)*\.
- Brown et al\. \(2020\)Tom B\. Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, and 1 others\. 2020\.[Language models are few\-shot learners](https://arxiv.org/abs/2005.14165)\.*Preprint*, arXiv:2005\.14165\.
- Chen et al\. \(2019\)Qian Chen, Zhu Zhuo, and Wen Wang\. 2019\.BERT for joint intent classification and slot filling\.*arXiv preprint arXiv:1902\.10909*\.
- Coucke et al\. \(2018\)Alice Coucke, Alaa Saade, Adrien Ball, Théodore Bluche, Alexandre Caulier, David Leroy, Clément Doumouro, Thibault Gisselbrecht, Francesco Caltagirone, Thibaut Lavril, and 1 others\. 2018\.[Snips voice platform: an embedded spoken language understanding system for private\-by\-design voice interfaces](https://arxiv.org/abs/1805.10190)\.*Preprint*, arXiv:1805\.10190\.
- Devlin et al\. \(2019\)Jacob Devlin, Ming\-Wei Chang, Kenton Lee, and Kristina Toutanova\. 2019\.[BERT: Pre\-training of deep bidirectional transformers for language understanding](https://arxiv.org/abs/1810.04805)\.In*Proceedings of NAACL\-HLT 2019*, pages 4171–4186\.
- Efron and Tibshirani \(1986\)Bradley Efron and Robert Tibshirani\. 1986\.Bootstrap methods for standard errors, confidence intervals, and other measures of statistical accuracy\.*Statistical Science*, 1\(1\):54–75\.
- Hemphill et al\. \(1990\)Charles T\. Hemphill, John J\. Godfrey, and George R\. Doddington\. 1990\.The atis spoken language systems pilot corpus\.In*Proceedings of the DARPA Speech and Natural Language Workshop*, pages 96–101\.
- Larson et al\. \(2019\)Stefan Larson, Anish Mahendran, Joseph J\. Peper, Christopher Clarke, Andrew Lee, Parker Hill, Jonathan K\. Kummerfeld, Kevin Leach, Michael A\. Laurence, and Chengwei Yu\. 2019\.An evaluation dataset for intent classification and out\-of\-scope prediction\.In*Proceedings of EMNLP\-IJCNLP 2019*, pages 1311–1316\.
- Lee et al\. \(2022\)Harrison Lee, Raghav Gupta, Abhinav Rastogi, Yuan Cao, Bin Zhang, and Yonghui Wu\. 2022\.SGD\-X: A benchmark for robust generalization in schema\-guided dialogue systems\.In*Proceedings of the AAAI Conference on Artificial Intelligence*\.
- Levinson and Torreira \(2015\)Stephen C\. Levinson and Francisco Torreira\. 2015\.[Timing in turn\-taking and its implications for processing models of language](https://doi.org/10.3389/fpsyg.2015.00731)\.*Frontiers in Psychology*, 6:731\.
- Liu and Lane \(2016\)Bing Liu and Ian Lane\. 2016\.Attention\-based recurrent neural network models for joint intent detection and slot filling\.In*Proceedings of Interspeech 2016*, pages 685–689\.
- Liu et al\. \(2019\)Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike Lewis, Luke Zettlemoyer, and Veselin Stoyanov\. 2019\.[Roberta: A robustly optimized bert pretraining approach](https://arxiv.org/abs/1907.11692)\.*Preprint*, arXiv:1907\.11692\.
- Pan et al\. \(2024\)Zhuoshi Pan, Qianhui Wu, Huiqiang Jiang, Menglin Xia, Xufang Luo, Jue Zhang, Qingwei Lin, Victor Rühle, Yuqing Yang, Chin\-Yew Lin, and 1 others\. 2024\.[Llmlingua\-2: Data distillation for efficient and faithful task\-agnostic prompt compression](https://arxiv.org/abs/2403.12968)\.*Preprint*, arXiv:2403\.12968\.
- Radford et al\. \(2023\)Alec Radford, Jong Wook Kim, Tao Xu, Greg Brockman, Christine McLeavey, and Ilya Sutskever\. 2023\.Robust speech recognition via large\-scale weak supervision\.In*Proceedings of the 40th International Conference on Machine Learning \(ICML\)*\.
- Rastogi et al\. \(2020\)Abhinav Rastogi, Xiaoxue Zang, Srinivas Sunkara, Raghav Gupta, and Pranav Khaitan\. 2020\.Towards scalable multi\-domain conversational agents: The schema\-guided dialogue dataset\.In*Proceedings of the AAAI Conference on Artificial Intelligence*\.
- Reimers and Gurevych \(2019\)Nils Reimers and Iryna Gurevych\. 2019\.Sentence\-BERT: Sentence embeddings using siamese BERT\-networks\.In*Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing \(EMNLP\)*\.
- Wei et al\. \(2021\)Jason Wei, Maarten Bosma, Vincent Y\. Zhao, Kelvin Guu, Adams Wei Yu, Brian Lester, Nan Du, Andrew M\. Dai, and Quoc V\. Le\. 2021\.[Finetuned language models are zero\-shot learners](https://arxiv.org/abs/2109.01652)\.*Preprint*, arXiv:2109\.01652\.
- Yehudai and Bendel \(2024\)Asaf Yehudai and Elron Bendel\. 2024\.When LLMs are unfit use FastFit: Fast and effective text classification with many classes\.In*Proceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguistics \(NAACL\): Demonstrations*\.
- Zhang et al\. \(2021\)Jianguo Zhang, Trung Bui, Seunghyun Yoon, Xiang Chen, Zhiwei Liu, Congying Xia, Quan Hung Tran, Walter Chang, and Philip Yu\. 2021\.[Few\-shot intent detection via contrastive pre\-training and fine\-tuning](https://arxiv.org/abs/2109.06349)\.In*Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing \(EMNLP\)*\.
- Zhong et al\. \(2023\)Qihuang Zhong, Liang Ding, Juhua Liu, Bo Du, and Dacheng Tao\. 2023\.[Can chatgpt understand too? a comparative study on chatgpt and fine\-tuned bert](https://arxiv.org/abs/2302.10198)\.*Preprint*, arXiv:2302\.10198\.

Similar Articles

LLMs Get Lost in Evolving User Intent

arXiv cs.LG

This paper introduces a framework to convert static tasks into dynamic multi-turn conversations to evaluate how well LLMs track evolving user intent, finding that strong static performance does not transfer to dynamic settings.

Don't let the LLM speak, just probe it (8 minute read)

TLDR AI

The article introduces a technique that extracts hidden states from an LLM at the last prompt token to perform classification without text generation, using a small MLP to read the model's internal decision, enabling fast and cheap zero-shot classifiers.

What would optimal use of LLMs even look like?

Reddit r/singularity

Explores the speculative idea of optimizing human interaction with LLMs by conforming to their native communication patterns, such as using neuralese, rather than forcing them to adapt to human language.

Are super tiny LLMs any good?

Reddit r/singularity

Explores whether very small language models can handle casual conversations adequately, and what training factors differentiate the better ones.

When Do LLMs Reason? A Dynamical Systems View via Entropy Phase Transitions

arXiv cs.LG

This paper investigates when chain-of-thought reasoning is beneficial for LLMs, showing that early-stage entropy dynamics reliably indicate reasoning utility, and introduces EDRM, a lightweight, training-free framework that adaptively selects inference strategies to achieve significant token savings while maintaining or improving accuracy.