Skip to main content
QUICK REVIEW

[論文レビュー] Is More Context Always Better? Examining LLM Reasoning Capability for Time Interval Prediction

Yanan Cao, Farnaz Fallahi|arXiv (Cornell University)|Jan 15, 2026
Topic Modeling被引用数 0
ひとこと要約

この論文は、インタ購入間隔を予測するためにゼロショットLLMを統計・MLベースラインと比較し、MLモデルがLLMを上回ること、適度な文脈がLLMの性能を向上させる一方で過度の文脈が性能を低下させることを示している。

ABSTRACT

Large Language Models (LLMs) have demonstrated impressive capabilities in reasoning and prediction across different domains. Yet, their ability to infer temporal regularities from structured behavioral data remains underexplored. This paper presents a systematic study investigating whether LLMs can predict time intervals between recurring user actions, such as repeated purchases, and how different levels of contextual information shape their predictive behavior. Using a simple but representative repurchase scenario, we benchmark state-of-the-art LLMs in zero-shot settings against both statistical and machine-learning models. Two key findings emerge. First, while LLMs surpass lightweight statistical baselines, they consistently underperform dedicated machine-learning models, showing their limited ability to capture quantitative temporal structure. Second, although moderate context can improve LLM accuracy, adding further user-level detail degrades performance. These results challenge the assumption that "more context leads to better reasoning". Our study highlights fundamental limitations of today's LLMs in structured temporal inference and offers guidance for designing future context-aware hybrid models that integrate statistical precision with linguistic flexibility.

研究の動機と目的

  • Web行動における再発するユーザー行動間の時間間隔予測の問題を動機づけ定義する。
  • ゼロショットのLLMを統計・機械学習ベースラインと inter-purchase interval 予測で体系的に比較する。
  • 時間的タスクにおける文脈情報レベルがLLM推論に与える影響を評価する。
  • 統計的精度と言語的柔軟性を融合するハイブリッドモデルの設計示唆を強調する。

提案手法

  • 最先端のLLM(GPT-4o、Gemini-2.5、Claude-3.5)を三つの prompting レベル(ゼロ、ミディアム、ハイコンテキスト)でゼロショット設定として評価する。
  • 従来のMLモデル(RandomForest、XGBoost、MLP)を量子化損失で構造化特徴量に対して訓練しベンチマークする。
  • 基準として軽量な統計推定量(平均、中央値、 EMA)を含める。
  • 事前処理を行った二つの実世界データセット(独自の食料品データとInstacart)を使用(<5回購買を除外、間隔を20日で上限)。
  • 回帰指標(RMSE、MAE、MAPE)およびビジネス指向の TA@k 指標(TA@0、TA@1、TA@2)で性能を評価する。
  • 展開関連指標(予測あたりの待機時間とコスト)を報告する。
Figure 1. Illustration of the interval-prediction task and the three prompting conditions. The example is about repeated milk purchases with varying intervals (5 days → 9 days → 7 days → 6 days). The model observes historical intervals for a product category and predicts the next interval under zero
Figure 1. Illustration of the interval-prediction task and the three prompting conditions. The example is about repeated milk purchases with varying intervals (5 days → 9 days → 7 days → 6 days). The model observes historical intervals for a product category and predicts the next interval under zero

実験結果

リサーチクエスチョン

  • RQ1RQ1: LLMは inter-purchase interval 予測で従来の機械学習モデルを上回れるのか?
  • RQ2RQ2: より豊かな文脈情報の提供は時間間隔推論タスクにおけるLLMの性能を改善するのか?

主な発見

ModelTA@0TA@1TA@2RMSEMAEMAPE
Proprietary data - GPT-4o-Z5.7512.7218.6523.6615.5073.03
Proprietary data - GPT-4o-M6.1313.8319.9222.9514.7666.78
Proprietary data - GPT-4o-H5.3212.7218.4824.8316.3976.59
Proprietary data - Gemini-2.5-Z6.3813.5719.6823.4415.1763.79
Proprietary data - Gemini-2.5-M6.1513.9519.7223.9115.3967.79
Proprietary data - Gemini-2.5-H6.2013.4219.2524.2015.6671.38
Proprietary data - Claude-3.5-Z5.9813.5019.7222.2614.1764.27
Proprietary data - Claude-3.5-M6.5514.5820.9721.9313.8557.45
Proprietary data - Claude-3.5-H6.7514.6320.9522.1114.1159.61
Proprietary data - ML Best9.4822.9833.939.977.1829.92
Proprietary data - Stat Best4.4213.1520.3222.4614.2555.41
Instacart data - GPT-4o-Z6.5415.4622.1630.1116.1377.39
Instacart data - GPT-4o-M7.3216.0422.9828.5615.0966.80
Instacart data - GPT-4o-H6.0014.1220.1231.0517.0184.03
Instacart data - Gemini-2.5-Z7.3015.7622.8228.8515.2764.13
Instacart data - Gemini-2.5-M7.2816.6423.0628.3615.0559.43
Instacart data - Gemini-2.5-H6.2614.8021.3629.4616.1774.38
Instacart data - Claude-3.5-Z6.2214.4822.2026.8814.1867.71
Instacart data - Claude-3.5-M6.0214.2421.8226.9213.9362.29
Instacart data - Claude-3.5-H6.9215.1022.4427.5014.4264.31
Instacart data - ML Best8.4622.6233.429.176.5535.04
Instacart data - Stat Best5.9015.3423.0027.9714.5256.34
  • MLモデルは標準的な誤差指標(MAPE、RMSE、MAE)においてLLMより優れている。
  • 独自データではMLのMAPEは29.92%、最良のLLMは57.45%(Claude-3.5-M対 Claude-3.5-H/他)である。
  • 同データにおけるTA@1はMLが22.98%、最良のLLMが14.63%(Claude-3.5-M対 Claude-3.5-H)。
  • LLMsは統計的な最良ベースラインを上回り、単純な中央値以上の文脈的手掛かりを利用していることを示す。
  • 中程度の文脈プロンプトは一貫してLLMの性能を向上させる一方、高度な文脈プロンプトは精度を低下させることが多く、文脈は時間的精度にとってノイズとなる可能性を示唆。
  • GPT-4oはLLMの中で最速・最 cheaper、Claude-3.5は遅く高コスト、Gemini-2.5は最も遅延が大きい。USA
  • 結果はインピーダンスミスマッチを示し、LLMsは定性的推論には優れているが、正確な定量的時系列 timing には苦労することから、ハイブリッドで文脈認識型のモデルが動機づけられる。
Figure 2. Prompt designs for three context levels: Zero (historical intervals only), Medium (product metadata, summary statistics), and High (recency features, user lifecycle information).
Figure 2. Prompt designs for three context levels: Zero (historical intervals only), Medium (product metadata, summary statistics), and High (recency features, user lifecycle information).

より良い研究を、今すぐ始めましょう

論文設計から論文執筆まで、研究時間を劇的に削減しましょう。

クレジットカード登録不要

このレビューはAIが作成し、人間の編集者が確認しました。