REVIEW 4 major objections 6 minor 47 references
TSROUTER claims that joint modality–model routing on a heterogeneous graph is the right way to answer time-series reasoning queries, reporting 51.33% accuracy on TSRBench.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-02 07:46 UTC pith:FXKNWDE3
load-bearing objection Joint modality-model routing is a real advance and the in-distribution results are solid, but the zero-shot new-model claim rests on a single pair of models and one aggregate number. the 4 major comments →
TSRouter: Dynamic Modality-Model Selection for Time Series Reasoning
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
On the paper's own terms, the central discovery is that joint modality-model selection for time series reasoning can be framed as candidate scoring over a heterogeneous graph, and that this framing transfers to models and tasks never seen in training. The load-bearing comparison is Table 3: TSROUTER reaches 51.33% overall accuracy on TSRBench while the best competing router reaches 44.07%, at comparable API cost. The authors attribute the gap to the graph's ability to propagate contextual signals across task, query, modality, and model nodes, and to soft-target training over the full ranking of candidates rather than a single best label.
What carries the argument
The central object is the heterogeneous graph G=(V,E) with four node types—task, query, modality, and model—and five edge types: task–query, query–modality, modality–model, query–model, and query–query k-nearest-neighbor edges. Node features are text embeddings of natural-language profiles: task descriptions, question text concatenated with time-series statistics, modality property descriptions, and model capability-and-cost profiles. A two-layer Heterogeneous Graph Transformer (a graph network that updates each node's embedding by attending over type-specific neighbors) propagates information across these edges. A candidate's score for a query is the sum of the modality and model embeddings
Load-bearing premise
The load-bearing premise is that the graph network can estimate a completely unseen model's per-query effectiveness from its text description and graph-neighbor messages alone, without ever observing that model's correctness; if descriptions and message passing cannot transfer to genuinely new models, the zero-shot plug-and-play claim collapses.
What would settle it
Insert a deliberately misdescribed unseen model into the graph—for example, a weak vision model profiled as a strong numerical reasoner—and check whether it receives the same share of queries as an accurately profiled model with identical true capabilities. If routing accuracy collapses when descriptions are corrupted, the result depends on the text prior; if it does not, the graph structure rather than the profiles is doing the work, and a second test (removing all query-query edges) would show whether the claimed generalization survives without query similarity.
If this is right
- If the central claim is right, systems can route each time-series query to the best modality-model pair and obtain 16–46% relative accuracy improvements over existing routers at comparable or lower cost.
- Newly released models can be inserted into the router by adding a node and a text profile; the paper reports that adding two unseen models raised overall accuracy from 51.3% to 53.5%, while several baselines degraded.
- The router transfers to unseen task types: on correlation prediction it reaches 31.38% accuracy versus 29.59% for the best baseline, and on imputation it reports lower MSE (0.56 vs. 0.60) and MAE (0.43 vs. 0.46).
- The explicit cost coefficient α gives operators a tunable accuracy-cost frontier; the paper shows that at the cost budget of the best baseline, TSROUTER still exceeds all baselines in accuracy.
- The ablations show the heterogeneous structure, query-query edges, modality-model edges, and the MLP scoring head each contribute; removing any one drops overall accuracy by roughly 2.8 to 5 points.
Where Pith is reading between the lines
- Beyond the paper: the same heterogeneous scoring recipe should transfer to other settings where two complementary input views and a zoo of models coexist—for example, code tasks (text vs. execution traces) or medical charts (numeric tables vs. images).
- Beyond the paper: because query-query edges are built from embedding similarity, the router's ceiling likely depends on the embedding model; a testable extension is to replace the fixed text embedder with a task-finetuned similarity and measure whether routing accuracy rises, especially at low training-data fractions.
- Beyond the paper: the zero-shot new-model result implies the text profile is doing real work; deliberately corrupting a new model's description (e.g., swapping capability claims) would reveal whether the GNN relies on semantic priors or on structural position in the graph.
- Beyond the paper: the cost term is a single scalar normalized across candidates; using latency, energy, or a nonlinear cost in the same objective should yield a different Pareto front, which would show whether the framework's cost-accuracy control is robust to the choice of cost definition.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes TSRouter, a heterogeneous-graph router that jointly selects an input modality (text, vision, or both) and a foundation model (LLM or VLM) for each time-series reasoning query. Node features are initialized from LLM-generated text profiles of tasks, queries, modalities, and models; an HGT backbone performs message passing over five relation types; and candidate scoring is trained with soft targets derived from oracle effectiveness (Eq. 1). Experiments on TSRBench report 51.33% overall accuracy versus 44.07% for the best baseline (Table 3), plus claimed zero-shot generalization to two unseen models (Figure 3) and two held-out tasks (Table 4), with additional ablations, cost-preference sweeps, and efficiency measurements.
Significance. If the empirical claims hold, TSRouter makes a useful contribution: it is the first routing framework I am aware of that jointly optimizes modality and model selection for time-series reasoning, and the graph formulation provides a natural way to inject new models and tasks at test time. The paper is clearly written, the problem formulation is sound, and the authors include code, hyperparameter sensitivity experiments, component ablations, and an efficiency analysis. The central risk is not in the architecture but in the validation: the headline comparisons and the zero-shot generalization claims rest on single runs, an unspecified correctness criterion, and very thin evidence for the unseen-model setting.
major comments (4)
- [§3.1, Table 3, Figure 3, Table 4] No error bars or significance tests are reported for any of the main empirical claims. Table 7 shows that TSRouter itself has standard deviations of 0.2–0.5 accuracy points across 3 runs, so differences such as Perception 67.63 vs. 62.58 or Decision 42.45 vs. 39.62 are not obviously outside run-to-run noise. Please report means±std over multiple runs (or seeds) for the key tables and figures, state the API decoding temperature/sampling, and run an appropriate significance test. Without this, the central claim of 'substantially outperforms' is not quantitatively supported.
- [§3.1 Evaluation Metrics] The correctness criterion for TSRBench answers is never defined. Eq. (1) and the soft training targets in Eq. (5) depend on the oracle binary correctness I(q,c) for every candidate, so the router's supervision is only as reliable as this labeling. Specify how responses are scored (exact string match, rubric, multiple-choice extraction, partial credit, handling of abstentions). For the imputation task, which is evaluated with MSE/MAE, also state how correctness is defined if the router is trained on this task, or clarify that the router is applied zero-shot with an objective different from the evaluation metric.
- [§3.1 Baselines] Baseline implementations and hyperparameter tuning are not described. Adapting methods such as GraphRouter, which was designed for query–model edge prediction, to joint modality–model candidate selection is nontrivial, and treating each (modality, model) pair as an independent candidate may not be the intended use of those baselines. Without reporting search ranges, final hyperparameters, or using the authors' released implementations, the 16–46% relative improvements may partly reflect undertuned baselines. Please provide this information.
- [§2.3, Figure 3] The zero-shot plug-and-play claim for unseen models is under-validated. Only two unseen models (one LLM, one VLM) are tested, and the only evidence is the aggregate overall accuracy moving from 51.3% to 53.5%. For these new model nodes, Eq. (7) provides no correctness supervision, so the method's success depends on a transferable mapping from text profiles plus graph-neighbor messages to per-query effectiveness. A single aggregate number does not rule out that these two particular models are easy to rank (e.g., because their scale and cost make them almost always beneficial) or that the result depends on their specific text profiles. Please add per-task results for the unseen models, test with additional unseen models of varying distinctiveness, and include a diagnostic such as the rank correlation between predicted and actual per-query effectiveness for the unseen models.
minor comments (6)
- [Abstract] The '16% to 46% relative improvements' are not tied to specific baselines; the 16% figure matches the overall comparison to Hybrid LLM, while 46% matches the comparison to the largest-LLM rule. Please state the reference point.
- [Eq. (4)] The notation 'h_q d (h_m + h_l)' contains a stray 'd'; clarify that denotes element-wise product or another defined operator.
- [§2.1, Figure 1(b)] The terms 'smallest' and 'largest' model are used without specifying which models they refer to among the candidate set; clarify for each modality.
- [Table 3 and elsewhere] The paper alternates between 'TSRouter' (figures, Table 5) and 'TSROUTER' (text, tables); use one consistent spelling throughout.
- [Table 3 cost] Cost is reported in total USD per test set; clarify whether this includes routing overhead (e.g., GNN inference, embedding calls) and whether it is averaged over the test set, since per-task costs in the table sum to the overall cost.
- [Appendix A.3, Table 7] This is the only table with standard deviations; consider moving this practice to the main tables or explicitly stating the number of runs for the main experiments.
Circularity Check
No circularity: TSRouter trains on oracle effectiveness labels and is evaluated on held-out accuracy; the zero-shot claims are genuine extrapolation, not fitted predictions.
full rationale
TSROUTER's derivation chain is self-contained supervised learning. Eq. (1) defines an effectiveness score from oracle correctness I(q,c) and normalized cost; Eq. (5) converts these scores into soft targets; Eq. (7) minimizes KL divergence against the router's predicted candidate distribution; Eq. (8) selects the argmax at test time. Evaluating the trained router on held-out accuracy is standard supervised evaluation, not circular: the training objective and the evaluation metric are intentionally aligned, and the evaluation uses query/candidate data not seen in training. The zero-shot claims in §2.3 and §3.3 are also not circular. New model nodes (Qwen3.5-397B-A17B, Kimi-K2.5) are inserted with text-profile features and graph edges but no correctness labels in the training objective; the GNN must transfer learned query-model relations to these unseen nodes. That is a genuine extrapolation, even if the evidence base (one LLM and one VLM) is thin. No self-citation is load-bearing: TSRBench is used as an external evaluation benchmark and GraphRouter as a baseline; neither is invoked to define away alternatives or to justify the core routing mechanism. There is no imported uniqueness theorem and no ansatz smuggled in through citation. The paper's limitations are empirical validation concerns (e.g., small set of unseen models, single benchmark) rather than circular reasoning.
Axiom & Free-Parameter Ledger
free parameters (5)
- alpha (cost preference) =
1.0 main; varied 0.2-1.0 in Fig. 5
- k (nearest neighbors) =
60
- embedding_dim =
64
- num_GNN_layers =
2
- learning_rate =
1e-3
axioms (4)
- domain assumption Candidate correctness is a deterministic binary label for each query-candidate pair
- ad hoc to paper LLM-generated text descriptions (e.g., GPT-5) encode sufficient task/model/modality information for routing without benchmark leakage
- ad hoc to paper The five edge types (E_TQ, E_QM, E_MM, E_QL, E_QQ) capture the interactions required for optimal routing
- domain assumption A statistical summary (mean, std, min/max, trend direction) of the raw time series preserves enough information for query-level modality/model selection
read the original abstract
Time series reasoning is essential for real-world problem-solving. While both Large Language Models (LLMs) and Vision-Language Models (VLMs) can reason about time-series data, their capabilities are complementary: LLMs process time series as text sequences and thus preserve exact numerical understanding, but struggle with global patterns, whereas VLMs efficiently capture these patterns by visualizing time series but may lose fine-grained details. Moreover, models vary significantly in task-specific expertise and inference costs. Dynamically selecting the most suitable modality and model for each query is therefore crucial, yet challenging because it requires modeling the complex interactions among tasks, queries, modalities, and models, which carry rich contextual signals. To this end, we introduce TSRouter, a graph-based dynamic routing framework. TSRouter constructs a heterogeneous graph of task, query, modality, and model nodes to contextualize the interactions among query characteristics, modality attributes, and model capabilities. TSRouter formulates routing as a candidate scoring problem, where each modality-model pair is evaluated based on user-defined performance-cost preferences to select the optimal candidate. Comprehensive evaluations on 4 distinct time series reasoning tasks reveal that TSRouter substantially outperforms diverse baselines with 16\% to 46\% relative improvements. Furthermore, TSRouter demonstrates robust zero-shot plug-and-play generalization to unseen models and novel tasks and preserves high performance while reducing computational overhead through cost-aware optimization. Our code is available at https://github.com/tianyi-lab/TSRouter.
Figures
Reference graph
Works this paper leans on
-
[1]
Pranjal Aggarwal, Aman Madaan, Yiming Yang, et al. Let’s sample step by step: Adaptive- consistency for efficient reasoning and coding with llms.arXiv preprint arXiv:2305.11860,
-
[3]
✓ Qwen3-VL-8B(Text+Vision) Ans: (D)— The data shows a clear progression through multiple trend phases
gradually decreasing slope (logarithmic). ✓ Qwen3-VL-8B(Text+Vision) Ans: (D)— The data shows a clear progression through multiple trend phases. Initially (to„40), rapid accelerating growth characteristic of an exponential trend. After index 40, growth slows down significantly. . . ✓ Qwen3-VL-32B(Text+Vision) Ans: (B)— The data starts with a slow increase...
2026
-
[5]
Tempo: Prompt-based generative pre-trained transformer for time series forecasting
Defu Cao, Furong Jia, Sercan O Arik, Tomas Pfister, Yixiang Zheng, Wen Ye, and Yan Liu. Tempo: Prompt-based generative pre-trained transformer for time series forecasting. arXiv preprint arXiv:2310.04948,
-
[6]
Jialin Chen, Aosong Feng, Ziyu Zhao, Juan Garza, Gaukhar Nurbek, Cheng Qin, Ali Maatouk, Leandros Tassiulas, Yifeng Gao, and Rex Ying. Mtbench: A multimodal time series benchmark for temporal reasoning and question answering.arXiv preprint arXiv:2503.16858,
-
[7]
Visionts: Visual masked autoencoders are free-lunch zero-shot time series forecasters
Mouxiang Chen, Lefei Shen, Zhuo Li, Xiaoyun Joy Wang, Jianling Sun, and Chenghao Liu. Visionts: Visual masked autoencoders are free-lunch zero-shot time series forecasters. arXiv preprint arXiv:2408.17253, 2024a. Shuhao Chen, Weisen Jiang, Baijiong Lin, James Kwok, and Yu Zhang. Routerdc: Query- based router by dual contrastive learning for assembling lar...
-
[9]
Hybrid llm: Cost-efficient and quality-aware query routing.arXiv preprint arXiv:2404.14618, 2024a
Dujian Ding, Ankur Mallick, Chi Wang, Robert Sim, Subhabrata Mukherjee, Victor Ruhle, Laks VS Lakshmanan, and Ahmed Hassan Awadallah. Hybrid llm: Cost-efficient and quality-aware query routing.arXiv preprint arXiv:2404.14618, 2024a. Ruomeng Ding, Chaoyun Zhang, Lu Wang, Yong Xu, Minghua Ma, Wei Zhang, Si Qin, Saravan Rajmohan, Qingwei Lin, and Dongmei Zha...
Pith/arXiv arXiv 2024
-
[10]
Graphrouter: A graph-based router for llm selections.arXiv preprint arXiv:2410.03834,
Tao Feng, Yanzhen Shen, and Jiaxuan You. Graphrouter: A graph-based router for llm selections.arXiv preprint arXiv:2410.03834,
-
[11]
Tao Feng, Haozhen Zhang, Zijie Lei, Peixuan Han, and Jiaxuan You
GitHub repository. Tao Feng, Haozhen Zhang, Zijie Lei, Peixuan Han, and Jiaxuan You. Graphplan- ner: Graph memory-augmented agentic routing for multi-agent llms.arXiv preprint arXiv:2604.23626,
-
[12]
Fast graph representation learning with pytorch geo- metric.arXiv preprint arXiv:1903.02428,
Matthias Fey and Jan Eric Lenssen. Fast graph representation learning with pytorch geo- metric.arXiv preprint arXiv:1903.02428,
Pith/arXiv arXiv 1903
-
[14]
Tong Guan, Zijie Meng, Dianqi Li, Shiyu Wang, Chao-Han Huck Yang, Qingsong Wen, Zuozhu Liu, Sabato Marco Siniscalchi, Ming Jin, and Shirui Pan. Timeomni-1: Incen- tivizing complex reasoning with time series in large language models.arXiv preprint arXiv:2509.24803,
-
[15]
Timeomni-vl: Unified models for time series understanding and generation
Tong Guan, Sheng Pan, Johan Barthelemy, Zhao Li, Yujun Cai, Cesare Alippi, Ming Jin, and Shirui Pan. Timeomni-vl: Unified models for time series understanding and generation. arXiv preprint arXiv:2602.17149,
-
[16]
Reasoning with language model is planning with world model.arXiv preprint arXiv:2305.14992,
Shibo Hao, Yi Gu, Haodi Ma, Joshua Jiahua Hong, Zhen Wang, Daisy Zhe Wang, and Zhit- ing Hu. Reasoning with language model is planning with world model.arXiv preprint arXiv:2305.14992,
-
[17]
Arcmemo: Abstract reasoning composition with lifelong llm memory.arXiv preprint arXiv:2509.04439,
Matthew Ho, Chen Si, Zhaoxiang Feng, Fangxu Yu, Zhijian Liu, Zhiting Hu, and Lianhui Qin. Arcmemo: Abstract reasoning composition with lifelong llm memory.arXiv preprint arXiv:2509.04439,
-
[18]
Wenyi Hong, Wenmeng Yu, Xiaotao Gu, Guo Wang, Guobing Gan, Haomiao Tang, Jiale Cheng, Ji Qi, Junhui Ji, Lihang Pan, et al. Glm-4.5 v and glm-4.1 v-thinking: Towards versatile multimodal reasoning with scalable reinforcement learning.arXiv preprint arXiv:2507.01006,
-
[19]
Routerbench: A benchmark for multi- llm routing system.arXiv preprint arXiv:2403.12031,
Qitian Jason Hu, Jacob Bieker, Xiuyu Li, Nan Jiang, Benjamin Keigwin, Gaurav Ranganath, Kurt Keutzer, and Shriyash Kaustubh Upadhyay. Routerbench: A benchmark for multi- llm routing system.arXiv preprint arXiv:2403.12031,
-
[20]
Heterogeneous graph trans- former
Ziniu Hu, Yuxiao Dong, Kuansan Wang, and Yizhou Sun. Heterogeneous graph trans- former. InProceedings of the web conference 2020, pp. 2704–2710,
2020
-
[22]
Ming Jin, Shiyu Wang, Lintao Ma, Zhixuan Chu, James Y Zhang, Xiaoming Shi, Pin-Yu Chen, Yuxuan Liang, Yuan-Fang Li, Shirui Pan, et al. Time-llm: Time series forecasting by reprogramming large language models.arXiv preprint arXiv:2310.01728,
-
[23]
Reasoning with sampling: Your base model is smarter than you think.arXiv preprint arXiv:2510.14901,
Aayush Karan and Yilun Du. Reasoning with sampling: Your base model is smarter than you think.arXiv preprint arXiv:2510.14901,
-
[24]
Adam: A method for stochastic optimization.arXiv preprint arXiv:1412.6980,
Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization.arXiv preprint arXiv:1412.6980,
-
[27]
Qinghua Liu, Sam Heshmati, Zheda Mai, Zubin Abraham, John Paparrizos, and Liu Ren
URLhttps://api.semanticscholar.org/CorpusID:273963297. Qinghua Liu, Sam Heshmati, Zheda Mai, Zubin Abraham, John Paparrizos, and Liu Ren. Mllm4ts: Leveraging vision and multimodal language models for general time-series analysis.arXiv preprint arXiv:2510.07513,
-
[29]
Mike A Merrill, Mingtian Tan, Vinayak Gupta, Tom Hartvigsen, and Tim Althoff. Lan- guage models still struggle to zero-shot reason about time series.arXiv preprint arXiv:2404.11757,
-
[30]
Dehai Min, Giovanni Vaccarino, Huiyi Chen, Yongliang Wu, Gal Yona, and Lu Cheng. Stop when reasoning converges: Semantic-preserving early exit for reasoning models.arXiv preprint arXiv:2605.17672,
-
[31]
Routellm: Learning to route llms with preference data.arXiv preprint arXiv:2406.18665,
Isaac Ong, Amjad Almahairi, Vincent Wu, Wei-Lin Chiang, Tianhao Wu, Joseph E Gonza- lez, M Waleed Kadous, and Ion Stoica. Routellm: Learning to route llms with preference data.arXiv preprint arXiv:2406.18665,
-
[32]
Arvind Pillai, Dimitris Spathis, Subigya Nepal, Amanda C Collins, Daniel M Mackin, Michael V Heinz, Tess Z Griffin, Nicholas C Jacobson, and Andrew Campbell. Time2lang: Bridging time-series foundation models and large language models for health sensing beyond prompting.arXiv preprint arXiv:2502.07608,
-
[34]
Large language model routing with benchmark datasets.arXiv preprint arXiv:2309.15789,
Tal Shnitzer, Anthony Ou, M ´ırian Silva, Kate Soule, Yuekai Sun, Justin Solomon, Neil Thompson, and Mikhail Yurochkin. Large language model routing with benchmark datasets.arXiv preprint arXiv:2309.15789,
-
[35]
Kimi Team, Tongtong Bai, Yifan Bai, Yiping Bao, SH Cai, Yuan Cao, Y Charles, HS Che, Cheng Chen, Guanduo Chen, et al. Kimi k2. 5: Visual agentic intelligence.arXiv preprint arXiv:2602.02276,
-
[36]
Zhe Xie, Zeyan Li, Xiao He, Longlong Xu, Xidao Wen, Tieying Zhang, Jianjun Chen, Rui Shi, and Dan Pei. Chatts: Aligning time series with llms via synthetic data for enhanced understanding and reasoning.arXiv preprint arXiv:2412.03104,
-
[37]
Qwen3 technical report.arXiv preprint arXiv:2505.09388,
An Yang, Anfeng Li, Baosong Yang, Beichen Zhang, Binyuan Hui, Bo Zheng, Bowen Yu, Chang Gao, Chengen Huang, Chenxu Lv, et al. Qwen3 technical report.arXiv preprint arXiv:2505.09388,
-
[38]
Self-distilled rlvr.arXiv preprint arXiv:2604.03128,
Chenxu Yang, Chuanyu Qin, Qingyi Si, Minghui Chen, Naibin Gu, Dingyu Yao, Zheng Lin, Weiping Wang, Jiaqi Wang, and Nan Duan. Self-distilled rlvr.arXiv preprint arXiv:2604.03128,
-
[40]
Fangxu Yu, Hongyu Zhao, and Tianyi Zhou. Ts-reasoner: Aligning time series foundation models with llm reasoning.arXiv preprint arXiv:2510.03519, 2025a. Fangxu Yu, Xingang Guo, Lingzhi Yuan, Haoqiang Kang, Hongyu Zhao, Lianhui Qin, Furong Huang, Bin Hu, and Tianyi Zhou. Tsrbench: A comprehensive multi-task multi-modal time series reasoning benchmark for ge...
arXiv 2026
-
[41]
Time-vlm: Exploring multimodal vision-language models for augmented time series forecasting
Siru Zhong, Weilin Ruan, Ming Jin, Huan Li, Qingsong Wen, and Yuxuan Liang. Time-vlm: Exploring multimodal vision-language models for augmented time series forecasting. arXiv preprint arXiv:2502.04395,
-
[42]
Denny Zhou, Nathanael Sch ¨arli, Le Hou, Jason Wei, Nathan Scales, Xuezhi Wang, Dale Schuurmans, Claire Cui, Olivier Bousquet, Quoc Le, et al. Least-to-most prompting enables complex reasoning in large language models.arXiv preprint arXiv:2205.10625,
-
[43]
15 Published as a conference paper at COLM 2026 Variant Perc. Reas. Pred. Deci. Over. HGT 67.63 52.81 43.11 42.45 51.33 HAN 71.22 51.12 43.11 42.45 51.21 HeteroGAT 69.06 47.75 44.89 43.40 50.00 Table 6: Results with different GNN back- bone architectures for TSROUTER. Perception Reasoning Prediction Decision-Making Overall 35 40 45 50 55 60 65 70 75Accura...
2026
-
[44]
Even without the descriptions, TSROUTERexhibits only a minor performance drop and still clearly outperforms the best baseline. This is be- cause the descriptions serve merely as an initial semantic prior for node features, whereas the routing signal is primarily produced by structural message passing over the heteroge- neous graph. Consequently, TSROUTERr...
2026
-
[45]
Given a query withNchannels, we plot each channel as a separate subplot, with a shared x-axis (time/index) and individual y-axes
Time Series Visualization.Each time series is rendered as a line chart image before being passed to VLMs. Given a query withNchannels, we plot each channel as a separate subplot, with a shared x-axis (time/index) and individual y-axes. For univariate series, a single plot is generated; for multivariate series, we stackNsubplots vertically, each labeled wi...
2026
-
[47]
In contrast, all three VLMs correctly identify the trend ordering from the visual plot, where the curvature of each regime is di- rectly observable
All three LLMs operating on textual time series arrive at the wrong answer, misidentifying the initial exponential phase as linear, likely because the early ab- solute increments appear small in raw numerical form. In contrast, all three VLMs correctly identify the trend ordering from the visual plot, where the curvature of each regime is di- rectly obser...
2026
-
[1990]
Self-distillation en- ables continual learning.arXiv preprint arXiv:2601.19897,
13 Published as a conference paper at COLM 2026 Idan Shenfeld, Mehul Damani, Jonas H ¨ubotter, and Pulkit Agrawal. Self-distillation en- ables continual learning.arXiv preprint arXiv:2601.19897,
Pith/arXiv arXiv 2026
-
[2014]
Semi-supervised classification with graph convolutional networks.arXiv preprint arXiv:1609.02907,
Thomas N Kipf and Max Welling. Semi-supervised classification with graph convolutional networks.arXiv preprint arXiv:1609.02907,
-
[2016]
Yaxuan Kong, Yiyuan Yang, Yoontae Hwang, Wenjie Du, Stefan Zohren, Zhangyang Wang, Ming Jin, and Qingsong Wen. Time-mqa: Time series multi-task question answering with context enhancement.arXiv preprint arXiv:2503.01875, 2025a. Yaxuan Kong, Yiyuan Yang, Shiyu Wang, Chenghao Liu, Yuxuan Liang, Ming Jin, Ste- fan Zohren, Dan Pei, Yan Liu, and Qingsong Wen. ...
Pith/arXiv arXiv 2026
-
[2019]
The llama 3 herd of models.arXiv preprint arXiv:2407.21783,
11 Published as a conference paper at COLM 2026 Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, et al. The llama 3 herd of models.arXiv preprint arXiv:2407.21783,
Pith/arXiv arXiv 2026
-
[2020]
Yushan Jiang, Wenchao Yu, Geon Lee, Dongjin Song, Kijung Shin, Wei Cheng, Yanchi Liu, and Haifeng Chen. Timexl: Explainable multi-modal time series prediction with llm-in- the-loop.arXiv preprint arXiv:2503.01013,
-
[2021]
Shengzhong Mao, Chaoli Zhang, Yichi Song, Jindong Wang, Xiao-Jun Zeng, Zenglin Xu, and Qingsong Wen. Time series analysis for education: Methods, applications, and fu- ture directions.arXiv preprint arXiv:2408.13960,
-
[2022]
Fangxu Yu, Lai Jiang, Haoqiang Kang, Shibo Hao, and Lianhui Qin. Flow of reason- ing: Training llms for divergent reasoning with minimal examples.arXiv preprint arXiv:2406.05673,
-
[2023]
Qwen3-vl technical report.arXiv preprint arXiv:2511.21631,
Shuai Bai, Yuxuan Cai, Ruizhe Chen, Keqin Chen, Xionghui Chen, Zesen Cheng, Lianghao Deng, Wei Ding, Chang Gao, Chunjiang Ge, et al. Qwen3-vl technical report.arXiv preprint arXiv:2511.21631,
-
[2024]
Bradley Brown, Jordan Juravsky, Ryan Ehrlich, Ronald Clark, Quoc V Le, Christopher R ´e, and Azalia Mirhoseini. Large language monkeys: Scaling inference compute with re- peated sampling.arXiv preprint arXiv:2407.21787,
-
[2025]
Graph of thoughts: Solving elaborate problems with large language models
10 Published as a conference paper at COLM 2026 Maciej Besta, Nils Blach, Ales Kubicek, Robert Gerstenberger, Michal Podstawski, Lukas Gianinazzi, Joanna Gajda, Tomasz Lehmann, Hubert Niewiadomski, Piotr Nyczyk, et al. Graph of thoughts: Solving elaborate problems with large language models. InProceed- ings of the AAAI conference on artificial intelligenc...
2026
-
[2026]
Yu-Neng Chuang*, Songchen Li*, Jiayi Yuan*, Guanchu Wang*, Kwei-Herng Lai*, Leisheng Yu, Sirui Ding, Chia-Yuan Chang, Qiaoyu Tan, Daochen Zha, and Xia Hu. Under- standing different design choices in training large time series models.arXiv preprint arXiv:2406.14045,
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.