Time-LLM[ICLR 2024] Official implementation of " Time-LLM: Time Series Forecasting by Reprogramming Large Language Models"项目地址:https://gitcode.com/gh_mirrors/ti/Time-LLM
Time-LLM 是一个用于时间序列预测的框架,通过重新编程大型语言模型(LLMs)来实现。该项目的主要特点是能够将时间序列分析(如预测)视为一种“语言任务”,并利用现有的LLM进行有效处理。Time-LLM 包含两个关键组件:(1)将输入的时间序列重新编程为更适合LLM处理的文本原型表示;(2)将这些表示输入到LLM中,最终投影得到预测结果。
在开始之前,请确保您的环境中已安装以下依赖:
克隆项目仓库:
git clone https://github.com/KimMeen/Time-LLM.git
cd Time-LLM
安装所需的Python包:
pip install -r requirements.txt
以下是一个简单的示例,展示如何使用Time-LLM进行时间序列预测:
import torch
from time_llm import TimeLLM
# 加载预训练模型
model = TimeLLM.from_pretrained('llama-7b')
# 准备输入数据
input_data = torch.tensor([[1.0, 2.0, 3.0, 4.0, 5.0]])
# 进行预测
predictions = model.predict(input_data)
print(predictions)
Time-LLM 可以应用于多种时间序列预测场景,包括但不限于:
Time-LLM 作为一个开源项目,与其他相关项目形成了丰富的生态系统,包括:
通过这些生态项目,用户可以更灵活地构建和部署时间序列预测解决方案。
Time-LLM[ICLR 2024] Official implementation of " Time-LLM: Time Series Forecasting by Reprogramming Large Language Models"项目地址:https://gitcode.com/gh_mirrors/ti/Time-LLM