Multimodal Time Series Benchmark (MTBench)
收藏资源简介:
MTBench是由耶鲁大学等多所研究机构共同创建的大型多模态时间序列数据集,旨在评估大型语言模型在金融和天气领域对时间序列和文本理解的能力。该数据集包含成对的时间序列和文本数据,如与股票价格变动相对应的金融新闻以及与历史温度记录对齐的天气报告。MTBench支持多样化的任务,如时间序列预测、趋势分析、技术指标预测以及基于新闻的问答,这些任务都需要模型深入理解文本和时间序列数据。
MTBench is a large-scale multimodal time-series dataset co-developed by Yale University and multiple other research institutions, which aims to evaluate the capabilities of large language models (LLMs) in comprehending both time-series data and text within the financial and weather domains. This dataset contains paired time-series and text data, such as financial news corresponding to stock price fluctuations and weather reports aligned with historical temperature records. MTBench supports a diverse range of tasks including time-series forecasting, trend analysis, technical indicator prediction, and news-based question answering, all of which require models to deeply understand both text and time-series data.
MTBench: 多模态时间序列基准数据集概述
1. 数据集简介
- 名称: MTBench (Multimodal Time Series Benchmark)
- 类型: 多模态时间序列基准数据集
- 领域: 金融和天气
- 数据组成:
- 金融新闻与对应股票价格变动
- 天气报告与历史温度记录
- 特点: 结合结构化数值趋势和非结构化文本叙述
2. 数据集结构
MTBench/
│── data/
├── raw/ # 原始数据(纯文本或时间序列)
├── processed/ # 任务特定数据集
│── data_preparation/
├── weather/ # 天气数据处理脚本
├── finance/ # 金融数据处理脚本
│── evaluation/
├── weather/ # 天气数据评估脚本
├── finance/ # 金融数据评估脚本
|── api_call.py # LLM API调用函数
3. 数据集使用
- 依赖环境:
- Python 3.10.14
- 通过
requirements.txt安装依赖
- 下载方式:
- 原始数据:
python download_raw_dataset.py - 处理后的数据:
python download_processed_dataset.py
- 原始数据:
- 数据分布:
- 金融新闻影响持续时间分布
- 金融新闻类别分布
- 恶劣天气持续时间分布
- 天气事件类型分布
4. 评估任务
- 金融领域任务:
- 趋势预测 (ACC)
- 技术指标 (MSE)
- 相关性分析 (ACC)
- 多项选择问答 (MCQA, ACC)
- 天气领域任务:
- 温度预测 (MSE)
- 趋势预测 (ACC)
- 温度差异 (MSE)
- 多项选择问答 (MCQA, ACC)
5. 基准结果
金融数据结果
| 模型 | 趋势预测 (ACC) | 技术指标 (MSE) | 相关性 (ACC) | MCQA (ACC) |
|---|---|---|---|---|
| GPT-4o | 40.93 ➡️ 42.81 | 0.430 ➡️ 0.365 | 53.6 | 65.1 |
| Gemini | 41.30 ➡️ 47.30 | 0.482 ➡️ 0.384 | 51.8 | 63.6 |
| Claude | 41.20 ➡️ 44.90 | 0.241 ➡️ 0.373 | 50.4 | 75.6 |
| DeepSeek | 40.53 ➡️ 45.12 | 0.435 ➡️ 0.352 | 50.0 | 77.6 |
天气数据结果
| 模型 | 温度预测 (MSE) | 趋势预测 (ACC) | 温度差异 (MSE) | MCQA (ACC) |
|---|---|---|---|---|
| GPT-4o | 21.67 ➡️ 17.55 | 23.07 ➡️ 43.54 | 27.06 ➡️ 18.84 | 41.7 |
| Gemini | 25.75 ➡️ 24.31 | 17.91 ➡️ 51.76 | 35.72 ➡️ 23.21 | 43.4 |
| Claude | 30.34 ➡️ 22.48 | 33.23 ➡️ 56.87 | 21.03 ➡️ 19.10 | 51.8 |
| DeepSeek | 31.02 ➡️ 29.38 | 16.89 ➡️ 25.17 | 49.28 ➡️ 44.99 | 46.7 |
6. 引用与许可
- 许可证: MIT License
- 引用格式: bibtex @article{MTBench2025, author = {Your Name and Others}, title = {MTBench: A Multimodal Time Series Benchmark for Temporal Reasoning and Question Answering}, journal = {TBD}, year = {2025}, url = {https://arxiv.org/abs/placeholder} }




