Pith. sign in

REVIEW 6 major objections 5 minor 5 cited by

MixLLM: Dynamic Routing in Mixed Large Language Models

T0 review · 6 major / 5 minor · reviewed 2026-08-08 · deepseek-v4-flash

Pith's one-line read MixLLM routes each query to the best-value LLM, hitting 97% of GPT-4 quality at a quarter of the cost.

desk verdict A plausible, incremental routing system with a real latency-awareness idea, undercut by an underspecified simulator and a headline selected from the test curve. read the letter →

arxiv 2502.18482 v1 pith:GD73VJE4 submitted 2025-02-09 cs.CL cs.AIcs.DBcs.IR

classification cs.CLcs.AIcs.DBcs.IR
keywords LLMroutingcontextualbanditquality-costtrade-offlatencypenaltycontinuallearningtag-enhancedembeddingqueryRouterBench
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper claims that mixing many commercial and open-source language models can be made both cheaper and nearly as good as the most expensive model by learning to route each incoming query to the best-suited model. MixLLM predicts each candidate model's response quality and dollar cost for a query, and then a meta-decision maker scores the candidates by trading off those predictions against an uncertainty estimate and a penalty for long waiting times. On the RouterBench benchmark, the system is reported to hit 97.25% of GPT-4's quality at 24.18% of the cost, and to remain stable when many queries arrive at once, where the leading baseline's quality collapses. The paper also argues the system can adapt to new models being added and to shifting user feedback without retraining from scratch.

What carries the argument

The load is carried by the decision score $$s_{n,l} = \left(\frac{\$\lambda$}{\$\lambda$+1}\hat{p}_{n,l} - \frac{1}{\$\lambda$+1}\hat{c}_{n,l}\right) + \$\alpha$\, e_n^T $A_l^{{-1}}$ e_n - \$\beta$\, $e^{{\gamma(w_l - \xi\tau)}}$,$$ where $\hat{p}_{n,l}$ and $\hat{c}_{n,l}$ are model-specific predictions of quality and cost, $A_l^{-1}$ is the inverse covariance of past query embeddings for candidate $l$ that measures prediction uncertainty, and the exponential term penalizes candidates whose simulated waiting time $w_l$ approaches the threshold $\xi\tau$. The waiting time is modeled as startup latency plus predicted response length divided by a generation speed, using public aggregate statistics. A tag-enhanced query encoder, fine-tuned with intra-domain attraction and inter-domain separation losses, supplies the embedding $e_n$.

What would settle it

Run MixLLM and the strongest baseline (OptLLM) on a testbed where each LLM endpoint is a real server under Poisson query arrivals and finite concurrency, with the same query stream and a 30-second tolerance, then measure total quality and cost; if OptLLM's quality does not degrade at high lambda while MixLLM remains flat, the claimed stability advantage from the latency penalty is an artifact of the single-queue simulation.

Watch

Extended reading notes

Core claim

The central claim is that a linear scoring rule that combines predicted quality, predicted cost, an inverse-covariance uncertainty term, and an exponential waiting-time penalty gives a better quality-cost-latency trade-off than existing routers, while remaining modular enough to add or remove models. The lambda parameter (willingness to pay) lets an operator sweep from cost-optimal to quality-optimal behavior. With the addition of Llama 3.1 models, MixLLM reports 98.55% of GPT-4 quality at 16.79% of the cost. Continual training, using either refined feedback (actual quality scores) or binary user satisfaction, improves performance over offline-only training, and the system generalizes to out-of-domain queries better when online training is enabled.

Load-bearing premise

The reported advantage depends on the latency simulation being faithful: waiting time is computed from public aggregate startup and speed statistics, with open-source models assumed to run under ideal hardware conditions; in a real deployment with queueing, concurrency limits, or hardware contention, baseline behavior and MixLLM's stability under the time constraint may differ.

Editorial extensions

If this is right

  • Deploying MixLLM would let operators cut LLM spend to roughly a quarter while retaining about 97% of GPT-4's quality under the studied query stream.
  • The latency penalty prevents congestion collapse: quality does not drop when budgets grow and queries are pushed to slower models.
  • New LLMs can be added to the candidate pool with only the new model's predictors trained, not a full system retrain.
  • Online feedback, even binary good-or-bad user ratings, improves routing over time, with larger gains as more streaming data accumulate.
  • Selecting the top-3 ranked models can exceed GPT-4 quality at 20% of its cost, provided a way to pick a single final answer from the multiple outputs.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The reported 97.25% figure depends on the simulated latency model; a real deployment would likely need to re-calibrate the latency penalty against actual hardware contention, so the absolute numbers may not transfer directly.
  • The quality-gain from tag-enhanced embeddings shrinks at high cost levels, suggesting a cheaper tag or topic-based clustering could give much of the same benefit without the cost of a 13B tagger at training time.
  • The same meta-decision-maker could be applied with different base predictors (for example, a difficulty classifier instead of per-LLM regressors) to disentangle whether the advantage comes from the scoring rule or from predictor accuracy.
  • The framework naturally extends to heterogeneous serving settings, such as edge devices where latency budgets differ per client, by keeping the per-model predictors but scaling the threshold $\tau$ dynamically.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

6 major / 5 minor

Summary. The paper proposes MixLLM, a contextual-bandit routing system that assigns each incoming query to one of several LLMs while balancing response quality, cost, and latency. The system combines tag-enhanced BERT embeddings (using InsTag tags manually grouped into 20 domains), per-LLM regressors for response quality and length/cost, and a meta decision-maker that scores candidates using a quality-cost trade-off, an uncertainty term, and a latency penalty. It also defines offline and online training procedures, including a policy-gradient update from binary user feedback. Experiments on RouterBench (extended by the authors with Llama 3.1 models and response lengths) compare MixLLM with cascading, classifier-based, optimization-based, and bandit baselines under a 30-second waiting-time constraint. The headline results are 97.25% of GPT-4's quality at 24.18% of the cost, and 98.55% of GPT-4's quality at 16.79% of the cost when Llama 3.1 candidates are added.

Significance. LLM routing is an active and practically important area, and MixLLM addresses a real gap: most existing predictive routers ignore queueing and latency, model churn, and continual learning. The architecture is sensible, the evaluation uses a held-out split of an external benchmark, and the authors extend that benchmark with new models, which are all strengths. The transparent Limitations section is also helpful. However, the central empirical claims are currently supported by a latency simulation whose queueing semantics are underspecified, by an unstated penalty coefficient, and by single-seed results with no variance reporting. Until those issues are repaired, the size of the reported advantage over the baselines is not verifiable. If the simulation is specified and the results are shown to be robust, this would be a useful contribution to the routing literature.

major comments (6)
  1. [§4.1.4 and §4.5] The latency simulation that produces the headline trade-off curves is underspecified. The text states that query streams arrive at 100 queries per 10 seconds and that waiting times are updated every 10 seconds, but it never defines the service model: is each LLM a single FIFO queue, a batch server, or a pool of replicas? Do all queries in a 10-second batch see the same waiting time, or is the waiting time updated after every completion? How are the aggregate tokens-per-second statistics from artificialanalysis.ai converted to per-query service times, and how are initial times and response lengths combined? Without an explicit update rule, Figures 4–6 and the 97.25%/24.18% and 98.55%/16.79% points cannot be reproduced. Please provide a precise algorithm or pseudocode for the evolution of w_l.
  2. [Eq. (10), §4.1.4] The latency penalty s_pen_l = exp(gamma * (w_l - xi * tau)) contains a coefficient xi that is never assigned or selected. Only gamma = 0.1 and tau = 30 are reported, even though the text says that xi is smaller than 1 and is meant to make the penalty apply earlier. Since this penalty is the mechanism by which MixLLM avoids overload at large lambda, the value of xi and a sensitivity analysis over it are needed to judge whether the stability claim in Section 4.2 is a property of the method or a tuning artifact.
  3. [§4.1.4, Tables 1–2] All random seeds are set to 42 and no variance or significance information is reported. The claimed improvements from online training in Table 1 are 0.52 to 2.22 percentage points, and the tag-embedding gains in Table 2 are 0.79 to 5.72 percentage points; with a single seed these differences could easily be within run-to-run noise, especially because the online-training component involves stochastic policy-gradient updates. Please report means and standard deviations over several seeds and, where feasible, a paired significance test for the comparisons that drive the continual-learning and tag-enhancement claims.
  4. [§3.6 and §4.1.4] There is an internal inconsistency in the training description. Section 3.6 defines offline updates for the quality predictors by gradient descent on theta_rq_l (Eq. 12), but Section 4.1.4 states that quality prediction uses random forests. Random forests are not trained by gradient descent, and the paper does not explain how a random forest is incrementally updated during online training. Since continual learning is a central contribution, please clarify the actual predictive models, their update rules, and how Eqs. (12)–(14) apply to them.
  5. [§4.2] The Oracle curve is defined as selecting, for each query, the LLM that meets a quality threshold and has the lowest cost, but neither the quality threshold nor its dependence on lambda is reported. Without this value, the Oracle benchmark and the claimed proximity of MixLLM to it are not reproducible. Please state the threshold and justify its choice, or define the Oracle in a way that does not depend on an unreported threshold.
  6. [§4.5 and Limitations] The hardware assumptions underlying the latency simulation are asymmetric: closed-source models use public API statistics, while open-source models are simulated under ideal conditions with sufficient memory and stable network connections. This asymmetry is part of the instrument that determines which models are penalized for waiting time, so the headline trade-off may reflect the simulator rather than deployment behavior. The Limitations section itself acknowledges the need for real-world testing in item (6), but the empirical claims need to be robust to the simulator assumptions. Please report sensitivity analyses (e.g., varying throughput, arrival rate, queueing assumptions) or validate against a real deployment with logged timings.
minor comments (5)
  1. [Abstract and §1] The phrase 'the pricy cost' should be 'the pricey cost', and there are a few typographical issues such as the variable name 'strade' in Eq. (7), which is never introduced as a word or acronym.
  2. [§4.1.2] The baseline named RouterBench has the same name as the benchmark dataset; please disambiguate the two throughout the paper (e.g., 'RouterBench baseline' vs. 'RouterBench dataset') to avoid confusion when reading Figures 4–6.
  3. [§4.1.1] The description of the dataset extension says that prompt and response lengths were added, but it is not stated how lengths were measured or tokenized, nor whether the same procedure was applied to all 11 original LLMs and the two Llama 3.1 models; this detail is needed for exact reproduction.
  4. [§4.3] The simulation of binary user feedback uses a quality threshold of 0.7 and a waiting-time threshold of 15 seconds; these thresholds should be justified or ablated, because the online-training improvements in Table 1 may depend on them.
  5. [§4.4] The manual grouping of InsTag tags into 20 domains is not released; providing the tag-to-domain mapping, or at least a full list of the domains and representative tags, would materially improve the reproducibility of the tag-enhanced embedding component.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: MixLLM's routing decisions are evaluated on held-out RouterBench data, and the method's components are not justified by self-citations.

full rationale

The paper's central claim is an empirical routing result on the external RouterBench benchmark. The quality predictors (Eq. 4), length/cost predictors (Eqs. 5-6), uncertainty estimates (Eq. 9), and decision scores (Eqs. 7-11) are specified in the paper and trained on an 80% split, with results reported on a held-out 20% split (Section 4.1.1). The latency penalty (Eq. 10) is a designed component of the method, not a fitted parameter that is renamed as a prediction. The authors' self-citations (Wang et al. 2022, 2024a,b; Li et al. 2023, 2024) appear only as examples of available LLMs or prior author work and are not load-bearing for the routing algorithm; InsTag and RouterBench are external resources. The headline point at lambda = 1.4 is selected from the test-set quality-cost curve, which is a post-hoc reporting choice rather than a circular derivation, since the underlying quality/cost predictions were not trained on that curve. The underspecified latency simulation (Sections 4.1.4 and 4.5) and the unreported value of xi in Eq. (10) are reproducibility/correctness concerns, not circularity.

Assumptions & free parameters 7 free parameters · 5 assumptions · 0 invented entities

The central claim rests on several hand-set coefficients, a simulated latency model, and RouterBench as ground truth. No new physical or conceptual entities are introduced beyond software components. The most consequential free parameters are lambda, which is selected post hoc for the headline result, and the unspecified xi coefficient in the latency penalty.

free parameters (7)
  • lambda (willingness to pay) = 1.4 for the headline point; swept across 10^-6 to 10^6
    Controls the quality-cost trade-off in Equation (8). The reported best point is selected from the test-set curve, not from a held-out validation set.
  • alpha and beta = alpha = 0.01, beta = 0.1
    Hand-set weights in Equation (7) for the uncertainty term and the latency penalty. No sensitivity analysis is reported.
  • gamma = 0.1
    Scaling factor in the exponential latency penalty in Equation (10).
  • tau (maximum tolerable waiting time) = 30 seconds
    Used in the latency simulation; queries exceeding this waiting time receive quality zero.
  • xi (latency penalty threshold coefficient) = not specified
    Appears in Equation (10) and is described only as smaller than 1. The actual value used in experiments is not reported.
  • learning rates eta1, eta2, eta3 = 1, 1, 0.001
    Learning rates for quality, length, and policy-gradient updates in Equations (12), (13), and (22).
  • Oracle quality threshold = not specified
    The Oracle baseline in Section 4.2 selects the lowest-cost LLM that meets a quality threshold, but the threshold value is not stated.
assumptions (5)
  • domain assumption RouterBench quality scores are valid ground-truth response quality labels.
    All quality predictions and evaluations are trained and measured against RouterBench's quality scores (Section 4.1.1). If those scores are noisy or biased, the reported trade-offs inherit that bias.
  • ad hoc to paper InsTag-generated tags, manually grouped into 20 domains, capture routing-relevant query semantics.
    The tag-enhanced embedding objective in Section 3.3 relies on these manual domain clusters. The grouping is a human choice and is not independently validated.
  • domain assumption Waiting time for a query equals initial latency plus output length divided by average generation speed.
    The latency simulation in Section 4.5 uses public aggregate statistics from artificialanalysis.ai and assumes ideal hardware for open-source models. This ignores queueing and hardware contention.
  • domain assumption Offline training has access to refined feedback, including response quality and cost, for every candidate LLM on every query.
    Section 3.6 uses refined feedback to update predictors. The Limitations section explicitly acknowledges that such feedback may not be available in real deployments.
  • ad hoc to paper Binary user feedback can be simulated by a quality threshold of 0.7 and a waiting time threshold of 15 seconds.
    Section 4.3 defines the online feedback simulation with these thresholds, which are arbitrary and may not reflect real user satisfaction.

how reviews work

0 comments
Cite this review

Pith. "Pith review of MixLLM: Dynamic Routing in Mixed Large Language Models." pith.science (2026). https://pith.science/paper/GD73VJE4

@misc{pith2026250218482,
  author       = {Pith},
  title        = {Pith review of: MixLLM: Dynamic Routing in Mixed Large Language Models},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/GD73VJE4}},
  note         = {Machine review of arXiv:2502.18482}
}
read the original abstract

Large Language Models (LLMs) exhibit potential artificial generic intelligence recently, however, their usage is costly with high response latency. Given mixed LLMs with their own strengths and weaknesses, LLM routing aims to identify the most suitable model for each query in the stream to maximize response quality and minimize cost and latency. However, the challenges involve: (1) dynamic trade-offs among quality, cost, and latency; (2) enabling continual learning in deployed systems; and (3) navigating a varying (e.g., new LLM addition or old LLM removal) set of LLM candidates over time. To bridge these gaps, we develop MixLLM, a dynamic contextual-bandit-based routing system for query-LLM assignment. Specifically, we first leverage query tags to enhance query embeddings for the routing task. Next, we design lightweight prediction models to estimate the response qualities and costs of queries over LLMs. We then devise a meta-decision maker to choose the query-LLM assignments to best tradeoff response quality, cost, and latency. Finally, the system benefits from continual training, allowing it to adapt to evolving queries and user feedback over time. Our extensive experiments show that MixLLM achieves the best trade-offs in response quality, cost, and latency (97.25% of GPT-4's quality at 24.18% of the cost under the time constraint).

Figures

Figures reproduced from arXiv: 2502.18482 by the authors.

Figure 1
Figure 1. Which is the most suitable LLM? As shown in [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Overview of the MixLLM Framework 2024) introduced a reward model for ranking re￾sponses from different LLMs, using tag-based la￾bel enhancement for training data. RouteLLM (Ong et al., 2024) introduced four distinct routing strategies, including similarity-weighted ranking, matrix factorization, and supervised and prompt￾ing classification. However, query labels may shift when new and powerful LLMs emerge. Re￾sponse… view at source ↗
Figure 3
Figure 3. Domain-Quality Correlation Step 1: Automated Query Tag Generation. To prepare, we employ the InsTag (Lu et al., 2023) model to generate fine-grained tags for each query and manually cluster the tags into a set of coarse￾grained domains, denoted as D. InsTag is an in￾struction tagging method designed to quantify the diversity and complexity of human instructions, and these tags contribute to model fine-tuning. Step 2… view at source ↗
Figures from the paper (4 more)
Figure 4
Figure 4. Figure 4: Overall Results as many queries exceed the waiting time tolerance, while MixLLM remains stable. The same situation also happens on other baseline algorithms. The Oracle result represents the most optimal routing on this dataset, balancing response quality and cost. It …
Figure 5
Figure 5. Figure 5: Results without Latency Constraint Even without the latency constraint, MixLLM still outperforms the baselines, as shown in Fig￾ure 5. When compared to results with latency constraint ( [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: Results with Updated Candidates Each LLM in MixLLM operates independently, ensuring scalability. Adding or removing candidate LLMs does not require complete re-training, which only affects the corresponding LLM. To demon￾strate this advantage, we extended the RouterBen…
Figure 7
Figure 7. Figure 7: Results on Choice Policy Study chosen, the response quality reflects the best one, while costs are summed. The “TOP 1.5” policy introduces a dynamic adjustment, which selects the top 1 LLM when the budget is low and expands to include more LLMs as the budget increases.…

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 5 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. PyroDash: Cost-Efficient Token-Level Small-Large Language Model Collaborative Inference

    cs.CL 2026-07 conditional novelty 6.0 of 10

    PyroDash lets a small model decide mid-generation to hand off once to a frozen LLM, achieving 64.04% accuracy (+6.36 points vs LLM) at lambda=0.05 and 96.4% lower estimated cost at lambda=0.6.

  2. Route to Reason: Adaptive Routing for LLM and Reasoning Strategy Selection

    cs.CL 2025-05 conditional novelty 6.0 of 10

    Route-To-Reason learns to predict the accuracy and token usage of each model-strategy pair and routes every query to the pair that maximizes a tunable accuracy-cost score.

  3. Teaching Time Series to See and Speak: Forecasting with Aligned Visual and Textual Perspectives

    cs.LG 2025-06 reject novelty 5.0 of 10

    TimesCLIP aligns image-based and text-based views of the same time series via contrastive learning to improve forecasting accuracy on several benchmarks, but the full multimodal model is not used on two of the six lon...

  4. Agentic Feature Augmentation: Unifying Selection and Generation with Teaming, Planning, and Memories

    cs.LG 2025-05 conditional novelty 5.0 of 10

    A router-selector-generator LLM agent team with offline PPO and dual memories unifies feature selection and generation, reporting improved downstream performance on six tabular datasets.

  5. LLM-ML Teaming: Integrated Symbolic Decoding and Gradient Search for Valid and Stable Generative Feature Transformation

    cs.LG 2025-06 conditional novelty 4.0 of 10

    A product-of-experts decoder that blends a fine-tuned LLM's token probabilities with a gradient-searched sequence decoder produces more valid and stable feature transformations than either alone.

Reference graph

Works this paper leans on

20 extracted references · 6 canonical work pages · cited by 5 Pith papers

  1. [3]

    arXiv preprint arXiv:2305.05176

    Frugalgpt: How to use large language models while reducing cost and improving performance. arXiv preprint arXiv:2305.05176. Aakanksha Chowdhery, Sharan Narang, Jacob Devlin, Maarten Bosma, Gaurav Mishra, Adam Roberts, Paul Barham, Hyung Won Chung, Charles Sutton, Sebas- tian Gehrmann, et al

  2. [6]

    arXiv preprint arXiv:2405.16203

    Evolutionary large language model for automated feature transformation. arXiv preprint arXiv:2405.16203. Qitian Jason Hu, Jacob Bieker, Xiuyu Li, Nan Jiang, Benjamin Keigwin, Gaurav Ranganath, Kurt Keutzer, and Shriyash Kaustubh Upadhyay. 2024a. Router- bench: A benchmark for multi-llm routing system. arXiv preprint arXiv:2403.12031. Xuanming Hu, Dongjie ...

  3. [7]

    arXiv preprint arXiv:2402.03182

    Empowering time series analysis with large language models: A survey. arXiv preprint arXiv:2402.03182. Haozhou Li, Qinke Peng, Xinyuan Wang, Xu Mou, and Yonghao Wang

  4. [8]

    In ICASSP 2024-2024 IEEE Inter- national Conference on Acoustics, Speech and Signal Processing (ICASSP), pages 12712–12716

    Sade: A speaker-aware dual encoding model based on diagbert for medical triage and pre-diagnosis. In ICASSP 2024-2024 IEEE Inter- national Conference on Acoustics, Speech and Signal Processing (ICASSP), pages 12712–12716. IEEE. Lihong Li, Wei Chu, John Langford, and Robert E Schapire

  5. [11]

    Routing to the expert: Efficient reward-guided en- semble of large language models. In Proceedings of the 2024 Conference of the North American Chap- ter of the Association for Computational Linguistics: Human Language Technologies (Volume 1: Long Papers), pages 1964–1974, Mexico City, Mexico. As- sociation for Computational Linguistics. Keming Lu, Hongyi...

  6. [12]

    arXiv preprint arXiv:2310.12963

    Automix: Auto- matically mixing language models. arXiv preprint arXiv:2310.12963. Quang H Nguyen, Duy C Hoang, Juliette Decugis, Saurav Manchanda, Nitesh V Chawla, and Khoa D Doan

  7. [13]

    arXiv preprint arXiv:2407.10834

    Metallm: A high-performant and cost-efficient dynamic framework for wrapping llms. arXiv preprint arXiv:2407.10834. Isaac Ong, Amjad Almahairi, Vincent Wu, Wei-Lin Chiang, Tianhao Wu, Joseph E Gonzalez, M Waleed Kadous, and Ion Stoica

  8. [14]

    arXiv preprint arXiv:2406.18665

    Routellm: Learning to route llms with preference data. arXiv preprint arXiv:2406.18665. Alec Radford, Karthik Narasimhan, Tim Salimans, Ilya Sutskever, et al

Show all 20 references
  1. [15]

    arXiv preprint arXiv:2405.10938

    Observational scaling laws and the predictability of language model performance. arXiv preprint arXiv:2405.10938. Marija Šakota, Maxime Peyrard, and Robert West

  2. [16]

    arXiv preprint arXiv:2309.15789

    Large language model routing with benchmark datasets. arXiv preprint arXiv:2309.15789. Yi Tay, Mostafa Dehghani, Vinh Q Tran, Xavier Garcia, Jason Wei, Xuezhi Wang, Hyung Won Chung, Sia- mak Shakeri, Dara Bahri, Tal Schuster, et al

  3. [18]

    arXiv preprint arXiv:2302.13971

    Llama: Open and effi- cient foundation language models. arXiv preprint arXiv:2302.13971. Xinyuan Wang, Haozhou Li, Dingfang Zheng, and Qinke Peng. 2024a. Lcmdc: Large-scale chi- nese medical dialogue corpora for automatic triage and medical consultation. arXiv preprint arXiv:2...

  4. [19]

    In 2022 China Au- tomation Congress (CAC), pages 3705–3710

    A hierarchal bert structure for native speaker writing detection. In 2022 China Au- tomation Congress (CAC), pages 3705–3710. IEEE. Xinyuan Wang, Liang Wu, Liangjie Hong, Hao Liu, and Yanjie Fu. 2024b. Llm-enhanced user-item interac- tions: Leveraging edge information for opti...

  5. [20]

    In 2024 IEEE 20th International Conference on Automation Science and Engineering (CASE) , pages 1331–1336

    Spatio-temporal transformer for temperature profiles prediction in large format additive manufac- turing. In 2024 IEEE 20th International Conference on Automation Science and Engineering (CASE) , pages 1331–1336. IEEE. Haoyang Xie, Dylan Hoskins, Kyle Rowe, and Feng Ju

  6. [2010]

    In Proceed- ings of the 19th international conference on World wide web, pages 661–670

    A contextual-bandit approach to per- sonalized news article recommendation. In Proceed- ings of the 19th international conference on World wide web, pages 661–670. Hanghang Liu, Linyi Liu, and Clifford J Rosen. 2024a. Pth and the regulation of mesenchymal cells within the bone...

  7. [2019]

    BERT: Pre-training of deep bidirectional transformers for language under- standing. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Tech- nologies, Volume 1 (Long and Short Papers), pages 4171...

  8. [2020]

    Advances in neural information processing systems, 33:1877–1901

    Language models are few-shot learners. Advances in neural information processing systems, 33:1877–1901. Lingjiao Chen, Matei Zaharia, and James Zou

  9. [2022]

    arXiv preprint arXiv:2205.05131

    Ul2: Unifying language learning paradigms. arXiv preprint arXiv:2205.05131. Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timothée Lacroix, Baptiste Rozière, Naman Goyal, Eric Hambro, Faisal Azhar, et al

  10. [2023]

    arXiv preprint arXiv:2303.08774

    Gpt-4 technical report. arXiv preprint arXiv:2303.08774. Yikun Ban, Jingrui He, and Curtiss B Cook

  11. [2024]

    arXiv preprint arXiv:2404.14618

    Hybrid llm: Cost-efficient and quality-aware query routing. arXiv preprint arXiv:2404.14618. Nanxu Gong, Chandan K Reddy, Wangyang Ying, and Yanjie Fu

  12. [2025]

    Bone, 190:117326

    Calorie restriction in- duces mandible bone loss by regulating mitochon- drial function. Bone, 190:117326. Linyi Liu, Phuong T Le, J Patrizia Stohn, Hanghang Liu, Wangyang Ying, Roland Baron, and Clifford J Rosen. 2024d. Calorie restriction in mice impairs cortical but not tra...

Pith tools

Reviewed August 8, 2026 · model on record in the stance chip above.