You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: research/Conformer/README.md
+141-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,13 @@
1
1
2
2
## Introduction
3
-
This code corresponds to the paper "Towards Long-Term Time-Series Forecasting: Feature, Pattern, and Distribution" (will be available soon).
3
+
4
+
This code corresponds to the [PaddlePaddle](https://www.paddlepaddle.org.cn/en) implementation of the paper "Towards Long-Term Time-Series Forecasting: Feature, Pattern, and Distribution".
5
+
The PyTorch version can be found [here](https://github.com/yl4467/Conformer).
6
+
7
+
8
+
We propose a long-term time-series forecasting model, named Conformer.
9
+
The framework overview of the proposed Conformer is as follows:
10
+

4
11
5
12
6
13
If you find this code or any of the ideas in the paper useful, please cite:
@@ -18,3 +25,136 @@ series = {ICDE '23}
18
25
```
19
26
20
27
28
+
### NOTE
29
+
30
+
* The experimental result reported in the paper is implemented on top of the PyTorch version.
31
+
In the implementation of PaddlePaddle version, we employ the same setup as reported in the paper,
32
+
the forecast performance of this version is different from the result reported in the paper.
33
+
34
+
* Further parameter tuning is required to obtain comparable performance as the PyTorch version.
35
+
36
+
* Both the sliding-window attention and full attention are supported in this implementation.
37
+
38
+
* The installation of the PaddlePaddle framework can refer to
0 commit comments