Skip to content

Commit 0b4d08f

Browse files
authored
Update README.md
1 parent d7a78c7 commit 0b4d08f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CEEMDAN_LSTM
22
===
33
GitHub: https://github.com/FateMurphy/CEEMDAN_LSTM
4-
Future work: sklearn_predictor
4+
Future work: CFS
55

66
## Background
77
CEEMDAN_LSTM is a Python module for decomposition-integration forecasting models based on EMD methods and LSTM. It aims at helping beginners quickly make a decomposition-integration forecasting by `CEEMDAN`, Complete Ensemble Empirical Mode Decomposition with Adaptive Noise [(Torres et al. 2011)](https://ieeexplore.ieee.org/abstract/document/5947265/), and `LSTM`, Long Short-Term Memory recurrent neural network [(Hochreiter and Schmidhuber, 1997)](https://ieeexplore.ieee.org/abstract/document/6795963). If you use or refer to the content of this module, please cite the paper: [(F. Zhou, Z. Huang, C. Zhang,
@@ -17,9 +17,9 @@ The quickest way to install the package is through pip.
1717
pip install CEEMDAN_LSTM
1818
```
1919
### (2) From the package
20-
Download the package `CEEMDAN_LSTM-1.2a0.tar.gz` by clicking `Code` -> `Download ZIP`. After unzipping, move the package where you like.
20+
Download the package `CEEMDAN_LSTM-1.2.tar.gz` by clicking `Code` -> `Download ZIP`. After unzipping, move the package where you like.
2121
```python
22-
pip install .(your file path)/CEEMDAN_LSTM-1.2a0.tar.gz
22+
pip install .(your file path)/CEEMDAN_LSTM-1.2.tar.gz
2323
```
2424
### (3) From source
2525
If you want to modify the code, you should download the code and build the package yourself. The source is publically available and hosted on GitHub: https://github.com/FateMurphy/CEEMDAN_LSTM. To download the code, you can either go to the source code page and click `Code` -> `Download ZIP`, or use the git command line.
@@ -131,7 +131,7 @@ You need to install `seaborn` first, and the input should be 2D-array.
131131
cl.plot_heatmap(data, corr_method='pearson', fig_path=None)
132132
```
133133
#### (2) Diebold-Mariano-Test (DM test)
134-
Dm test will output the DM test statistics and its p-value. You can refer to https://github.com/johntwk/Diebold-Mariano-Test.
134+
DM test will output the DM test statistics and its p-value. You can refer to https://github.com/johntwk/Diebold-Mariano-Test.
135135
```python
136136
rt = cl.dm_test(actual_lst, pred1_lst, pred2_lst, h=1, crit="MSE", power=2)
137137
```

0 commit comments

Comments
 (0)