cure-lab / SCINet

The GitHub repository for the paper: “Time Series is a Special Sequence: Forecasting with Sample Convolution and Interaction“. (NeurIPS 2022)
Apache License 2.0
617 stars 127 forks source link

请问论文中Figure3是如何作出的呢? #42

Closed DomineeringDragon closed 2 years ago

DomineeringDragon commented 2 years ago

在下在阅读论文时有个疑问,请问 Figure 3: The prediction results (Horizon = 48) of SCINet, Informer (Zhou et al. 2021), and TCN on randomly-selected sequencesfrom ETTh1 dataset. 里的这些预测的对比图是怎么作出的呢?

ailingzengzzz commented 2 years ago

Hi @DomineeringDragon,

We use matplotlib to plot the results. First, we save the output information for each method. Then, we load the output and plot them together via matplotlib.

DomineeringDragon commented 2 years ago

Thank you very much!