其他分享
首页 > 其他分享> > 使用LSTM进行时间序列预测PyTorch版本

使用LSTM进行时间序列预测PyTorch版本

作者:互联网

前言

时间序列数据,顾名思义,是一种随着时间改变的数据。例如,

高级深度学习模型,比如长短期记忆网络(LSTM),能够捕获到时间序列数据中的变化模式,进而能够预测数据的未来趋势。本文中,我们将使用pytorch这个深度学习库,来实现利用LSTM算法对时间序列数据进行预测。

在开始讲述之前,我们先导入必要的库,

import torch
import torch.nn as nn

import seaborn as sns
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt

%matplotlib inline

数据集

我们将使用Seaborn库的内建数据集。让我们打印一下Seaborn的所有内建数据库:

sns.get_dataset_names()

输出结果为:

['anagrams',
 'anscombe',
 'attention',
 'brain_networks',
 'car_crashes',
 'diamonds',
 'dots',
 'dowjones',
 'exercise',
 'flights',
 'fmri',
 'geyser',
 'glue',
 'healthexp',
 'iris',
 'mpg',
 'penguins',
 'planets',
 'seaice',
 'taxis',
 'tips',
 'titanic']

  

  



标签:torch,matplotlib,PyTorch,序列,import,LSTM,数据
来源: https://www.cnblogs.com/zjuhaohaoxuexi/p/16667526.html