<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta>
      <journal-title-group>
        <journal-title>International Conference on Computer and Intelligent Control, June</journal-title>
      </journal-title-group>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>Using LSTM Model to predict Short-term wind power</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Zhiqi Wan</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Jiali Wang</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Jialin Tang</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Bo Zhang</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Feilin Zhu</string-name>
          <email>zhufeilin163@163.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="editor">
          <string-name>Long Short-term Memory, Short-term Wind Power Prediction, Data Processing</string-name>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>College of Hydrology and Water Resources, Hohai University</institution>
          ,
          <addr-line>Nanjing</addr-line>
          ,
          <country country="CN">China</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>DAYU College, Hohai University</institution>
          ,
          <addr-line>Nanjing</addr-line>
          ,
          <country country="CN">China</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2024</year>
      </pub-date>
      <volume>2</volume>
      <fpage>9</fpage>
      <lpage>30</lpage>
      <abstract>
        <p>Wind energy is an essential renewable energy. For Carbon Neutrality, wind power has received extensive attention around the world. However, short-term wind power time series are difficult to predict with complex characteristics such as non-stationary and nonlinear. Therefore, this paper proposes a short-term prediction method of wind power using the Long Short-term Memory (LSTM) model. In view of insufficient memory ability, gradient disappearance and explosion in traditional prediction methods, the strategy of "Data Processing - Autocorrelation Analysis - Model Prediction" is proposed. Firstly, test the outliers by Z-Score method, and linearly interpolate the missing values and outliers. Secondly, determine the model input length through autocorrelation and partial autocorrelation coefficients. Finally, predict each subsequence with the LSTM model. On the testing set, the root mean square error is 58.55 (MW), mean absolute error is 79.60 (MW), and coefficient of determination is 0.86. In brief, using LSTM prediction model can obtain a higher accuracy of short-term wind power prediction.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        Many scholars conducted in-depth research on the wind power prediction and
proposed many models and methods. According to the principal classification, they can be
divided into physical methods based on numerical weather predictions and statistical
methods with historical data [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. The physical prediction method mainly predicts wind
power by screening related physical quantities and establishing space-time physical
equations. This method does not require historical wind power data, but is limited by the
accuracy of measurement data, modeling errors and economic conditions of complex wind
farms. It is mostly applied to new wind farms lacking historical data [
        <xref ref-type="bibr" rid="ref2 ref3 ref4">2-4</xref>
        ]. Statistical
prediction methods mainly include Time-Series Analysis, Kalman filter, Artificial Neural
Network, etc. [
        <xref ref-type="bibr" rid="ref10 ref11 ref12 ref5 ref6 ref7 ref8 ref9">5-12</xref>
        ], which is based on the learning of historical data and does not need to
consider the complex physical calculation process. It has the characteristics of
selfadaptation, self-adjustment, and self-learning. The model structure is simple and suitable
for wind farms with historical data. Many studies have shown that statistical prediction
methods have higher applicability and accuracy in short-term wind power prediction [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ].
      </p>
      <p>
        As deep learning theories develop, the accuracy of wind power prediction has been
continuously improved [
        <xref ref-type="bibr" rid="ref14 ref15 ref16">14-16</xref>
        ]. Long Short-Term Memory neural network is an
improvement of traditional RNN. It retains important features through the gate function,
and effectively alleviates the problems of insufficient long sequence memory capacity,
gradient disappearance and explosion. For nonlinearly varying wind power time series,
the accuracy of LSTM model is better.
      </p>
      <p>Summarily, according to the idea of "Data Processing - Autocorrelation Analysis - Model
Prediction", this paper proposes a short-term prediction method of wind power based on
LSTM model. Taking the annual hourly data of a power station in Qinghai Province as an
example, the autocorrelation of wind power historical data is proved. The applicability and
accuracy of the model are also analyzed and tested, and the overall idea is shown in Figure
1.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Research Methods</title>
      <sec id="sec-2-1">
        <title>2.1 Data Processing</title>
        <p>For data-driven short-term prediction models, missing values and outliers in the historical
data can seriously affect the accuracy. Therefore, data processing is required before the
model forecasting.</p>
        <p>For missing values, this paper adopts the method of linear interpolation. It is assumed
that the missing values can be represented by the data of its previous and next moments
through a linear relationship, given by the formula:
,
are the previous data and next data.
is the moment corresponding to missing value.
is the previous period and
the next period.</p>
        <p>For outliers testing, this paper uses the Z-Score method, and the formula as:</p>
        <p>, the data value is considered to have a large
difference with other values and is regarded as an outlier. For outliers, the treatment is the
same as for missing values, with the linear interpolation method.</p>
      </sec>
      <sec id="sec-2-2">
        <title>2.2 Correlation Analysis</title>
        <p>The core of the predicted model with historical data is to find the patterns hidden in the
time series and then predict the data of next period based on the discovered patterns.
Therefore, before using such prediction models, it is necessary to ensure that the time
series exhibit autocorrelation. To test the autocorrelation of historical wind power data,
autocorrelation coefficient is introduced, like:</p>
        <p>is the th autocorrelation coefficient, representing the correlation
between data points separated by time units;
is covariance;
is variance; is the
lag order; and
are the observed values at time moments and
. By using
autocorrelation coefficients, a linear relationship between the perdiction point and the
observed point is constructed as follows:
(1)</p>
        <p>is
(2)
(3)
represents the white noise error term. When
, it indicates
complete correlation between the prediction point and the observed point, meaning data
at one time point can be entirely predicted by data at another time point; when , it
indicates no correlation between
and
; when
, it indicates complete
negative correlation between
and</p>
        <p>, implying data at one time point can be entirely
reversely predicted by data at another time point.</p>
        <p>Since time series are correlated, autocorrelation coefficients cannot represent the
correlation between and without the influence of other time series. To eliminate
interference from</p>
        <p>on the correlation between two points, partial
autocorrelation coefficient is introduced as follows:
(5)
(6)
Where</p>
        <p>is the th partial autocorrelation coefficient, representing the correlation
between data points separated by time while considering the situation of the previous
time points;
is the th term in the
th order partial autocorrelation coefficient;
is the summation index; and is the order of autocorrelation and partial autocorrelation
functions, representing the time interval to be calculated. Based on the definition of partial
autocorrelation, a linear relationship between the and all observed points within the
previous time units is constructed as follows:</p>
      </sec>
      <sec id="sec-2-3">
        <title>2.3 LSTM Model</title>
        <p>
          Long Short-Term Memory (LSTM) is an improvement of recurrent neural network (RNN).
Compared to traditional neural networks, LSTM neural networks have more effective
memory and forgetting patterns for long time series. By introducing gate mechanisms,
LSTM can better capture long-term dependencies, effectively addressing issues like
gradient disappearance and explosion. Additionally, for nonlinear system time series
prediction, LSTM neural networks also have significant advantages[
          <xref ref-type="bibr" rid="ref17">17</xref>
          ].
        </p>
        <p>The key components of LSTM neural networks include forget gate, input gate, cell state,
and output gate, which together form the unique four-layer structure of LSTM, as shown in
Figure 2.</p>
        <p>According to the flow of information within neurons, the four-layer structure is
explained as follows:
1. Forget Gate: Distinguish and forget minor information.
2. Input Gate: Determine and filter new information stored in the cell state.
3. Cell State: Update the cell state based on the previous cell state and input gate
information.
4. Output Gate: Select the information to be input to the next neuron.</p>
        <p>Where   ,   ,   ,   are weight matrices;   ,   ,   ,   are bias vectors; ℎ , ℎ −1
represent the input and output of previous neuron and current neuron;   ,   −1represent
the cell states of the previous neuron and the current neuron;  ̃ is the cell state of the
input gate; is the sigmoid function.</p>
      </sec>
      <sec id="sec-2-4">
        <title>2.4 Performance Evaluation</title>
        <p>To quantitatively evaluate the prediction effectiveness, three evaluation metrics are
selected, including Root Mean Square Error (RMSE), Mean Absolute Error (MAE), and
Coefficient of Determination ( ), defined as follows:
(7)
(8)
(9)
(10)
(12)
(13)
Where is the number of samples in the testing set; is the actual wind power;
is
the prediction value; and</p>
        <p>is the mean of the wind power historical sequence.</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Research Example</title>
      <p>This paper collects hourly data of wind power in Qinghai Province throughout the year.
Through the detection of missing values and outliers, there are 5 missing values and 7
outliers. With linear interpolation processing, 8785 normal data can be obtained.</p>
      <p>Due to the limitations of data and algorithms, the prediction model often has problems
such as underfitting and overfitting. To improve accuracy, the data set needs to be divided
into a training set and a testing set. The division of the data set and the amount of data are
shown in Table 1.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Results and Discussion</title>
      <sec id="sec-4-1">
        <title>4.1 Correlation Analysis</title>
        <p>Data type</p>
        <sec id="sec-4-1-1">
          <title>All data Training set Testing set</title>
        </sec>
        <sec id="sec-4-1-2">
          <title>Time span Jan. 1 to Dec. 31 Jan. 1 to Nov. 26 Nov. 26 to Dec. 31</title>
        </sec>
        <sec id="sec-4-1-3">
          <title>Number of samples</title>
          <p>(strip)
8785
7902
883
Bring the 8,785 processed data sets into Eq. (1), and set the significance level
.</p>
          <p>Draw the autocorrelation analysis diagram of historical data, as shown in Figure 3. The
diagram shows that most of the observation points are outside the significance band. It
proves that the historical data of wind power has strong autocorrelation and can be used
as model inputs. With the increase of the time, the autocorrelation coefficient first
decreases and then oscillates around the value of 0, indicating that the closer date to the
prediction point are more likely to affect the prediction results, and wind power has a
certain periodic pattern on the time scale.</p>
          <p>Bring the historical data into Eq (3), set the significance level
, and draw the
partial autocorrelation analysis diagram of historical data, as shown in Figure 4. The
diagram shows that with the increase of time, the partial autocorrelation coefficient and
autocorrelation coefficient change in a similar trend, but the partial autocorrelation
coefficient decreases faster and the oscillation peak is smaller. This indicates that if only
consider the partial autocorrelation coefficient between the two points, the prediction
point is more correlated with the observation points in the first 2 time intervals.</p>
          <p>Considering the high accuracy and timeliness requirements of short-term prediction
model, and the model inputs have a major influence on the short-term prediction accuracy,
selecting the appropriate length of input data is an important prerequisite. Since the
historical data input to the model is correlated with each other, the autocorrelation
coefficient is mainly considered when selecting the length of input data. However, if the
input data is too long, it will lead to error superposition. Therefore, considering the
autocorrelation and partial autocorrelation coefficients comprehensively, model input
length should not exceed 15 time series.</p>
        </sec>
      </sec>
      <sec id="sec-4-2">
        <title>4.2 Model Training and Prediction</title>
        <p>Taking the hourly wind power of Qinghai Province as an example, the predicted step size
is 1, and brought it into LSTM neural network for manual parameter calibration. According
to the above three evaluation indexes, the activation function is set as the "Relu" function,
the time step is 10, the dimension of LSTM layer is 128, epoch=12, batch_size=32. The
model prediction result under this parameter is shown in Figure 4, and the analysis of
indexes is shown in Table 2.</p>
        <p>(a) Training Set
(b) Testing Set</p>
        <p>Training Sets 65.72 55.15 0.79
Testing Sets 58.55 79.60 0.86
From Fig. 5 and Table 2, the LSTM prediction model with historical data has a better
prediction accuracy of wind power. Therefore, when other information is missing and only
historical time series are available, the LSTM prediction model has significant advantages
of high accuracy and convenient calculation.</p>
        <p>For the power grid system implementing regulation, the higher the accuracy and the
longer the forecast period, the greater the benefit. For better regulation of the “Wind
Light - Water” system, the prediction accuracy is still a work in progress. Based on the
research in this paper, in-depth research, such as input data feature extraction, prediction
model coupling, parameter optimization, can be promoted subsequently.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion</title>
      <p>Accurate short-term wind power prediction is a prerequisite for implementing “Wind
Light - Water” complementary optimal scheduling. According to the idea of "Data
Processing - Autocorrelation Analysis - Model Prediction", this paper constructs a LSTM
prediction model based on historical data. Taking the annual hourly data of a power
station in Qinghai Province as an example, this paper analyzes and tests the applicability
and accuracy, and the following conclusions are obtained:</p>
      <p>(1) The historical data of wind power has autocorrelation and periodicity, making it
suitable for use as input data in prediction models..</p>
      <p>(2) If the interval between the predicted point and the observed point is smaller, the
autocorrelation coefficient is larger and the autocorrelation is stronger. Therefore, several
observation points close to the front of the prediction point should be selected for
prediction. For each prediction point, the number of input observation points should not
exceed 15.</p>
      <p>(3) When the available data is limited, the LSTM prediction model can obtain the
singlevalue prediction of wind power with high precision in a short time.</p>
    </sec>
    <sec id="sec-6">
      <title>Acknowledgment</title>
      <p>This research was funded by the College Student Innovation and Entrepreneurship
Training Program of Hohai University: Ultra-short-term probabilistic prediction method of
wind and photovoltaic power in watersheds under the background of "dual-carbon"
strategy Nexus (No. 202310294022Z).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>J.</given-names>
            <surname>Yan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Liu</surname>
          </string-name>
          , S. Han, et al.,
          <article-title>“Reviews on uncertainty analysis of wind power forecasting,” Renewable and Sustainable Energy Reviews</article-title>
          , pp.
          <fpage>521322</fpage>
          -
          <lpage>1330</lpage>
          ,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>G.</given-names>
            <surname>Giebel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Badger</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. MartiP</surname>
          </string-name>
          , “
          <article-title>Short-term forecasting using advanced physical modeling-the results of the anemos project</article-title>
          ,
          <source>” European Wind Energy Conference &amp; Exhibition</source>
          , Athens, pp.
          <fpage>236</fpage>
          -
          <lpage>264</lpage>
          ,
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>L. L.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. L.</given-names>
            <surname>Tseng</surname>
          </string-name>
          , et al., “
          <article-title>Shot-term wind power forecasting based on support vector machine with improved dragonfly algorithm</article-title>
          ,
          <source>” Journal of Cleaner Production</source>
          , vol.
          <volume>242</volume>
          pp.
          <fpage>38</fpage>
          -
          <lpage>47</lpage>
          ,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>L.</given-names>
            <surname>Ye</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Zeng</surname>
          </string-name>
          , et al., “
          <article-title>Short-term wind power prediction based on spatial model,” Renew Energy</article-title>
          , vol.
          <volume>101</volume>
          pp.
          <fpage>1067</fpage>
          -
          <lpage>74</lpage>
          ,
          <year>2017</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>E.</given-names>
            <surname>Erden</surname>
          </string-name>
          , J. Shi, “
          <article-title>ARMA based approaches for forecasting the tuple of wind speed and direction</article-title>
          ,
          <source>” Applied Energy</source>
          , vol.
          <volume>88</volume>
          , no.
          <issue>4</issue>
          , pp.
          <fpage>1405</fpage>
          -
          <lpage>1414</lpage>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>D. A.</given-names>
            <surname>Bechrakis</surname>
          </string-name>
          , P. D. Sparis, “
          <article-title>Wind speed prediction using artificial neural networks</article-title>
          ,
          <source>” Wind Engineering</source>
          , vol.
          <volume>22</volume>
          , no.
          <issue>6</issue>
          , pp.
          <fpage>287</fpage>
          -
          <lpage>295</lpage>
          ,
          <year>1998</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>E. A.</given-names>
            <surname>Bossanyi</surname>
          </string-name>
          , “
          <article-title>Short-term wind prediction using Kalman filters</article-title>
          ,” Wind Engineering, vol.
          <volume>9</volume>
          , no.
          <issue>1</issue>
          , pp.
          <fpage>1</fpage>
          -
          <lpage>8</lpage>
          ,
          <year>1985</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>E. T.</given-names>
            <surname>Renani</surname>
          </string-name>
          ,
          <string-name>
            <surname>M. F. M. Elias</surname>
            ,
            <given-names>N. A.</given-names>
          </string-name>
          <string-name>
            <surname>Rahim</surname>
          </string-name>
          , “
          <article-title>Using data-driven approach for wind power prediction: A comparative study</article-title>
          ,
          <source>” Energy Conversion &amp; Management</source>
          , vol.
          <volume>118</volume>
          , pp.
          <fpage>193</fpage>
          -
          <lpage>203</lpage>
          ,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>A. E.</given-names>
            <surname>Saleh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. S.</given-names>
            <surname>Moustafa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K. M.</given-names>
            <surname>Abo-Al-Ez</surname>
          </string-name>
          , et al.,
          <article-title>“A hybrid neuro-fuzzy power prediction system for wind energy generation</article-title>
          ,”
          <source>International Journal of Electrical Power &amp; Energy Systems</source>
          , vol.
          <volume>74</volume>
          , pp.
          <fpage>384</fpage>
          -
          <lpage>395</lpage>
          ,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>S.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zhao</surname>
          </string-name>
          , et al., “
          <article-title>Short-term wind power prediction based on improved small-world neural network</article-title>
          ,
          <source>” Neural Computing &amp; Applications</source>
          , vol.
          <volume>31</volume>
          , pp.
          <fpage>3173</fpage>
          -
          <lpage>3185</lpage>
          ,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Hao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Dong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Liao</surname>
          </string-name>
          , et al.,
          <article-title>“A novel clustering algorithm based on mathematical morphology for wind power generation prediction,” Renewable Energy</article-title>
          , vol.
          <volume>136</volume>
          , pp.
          <fpage>572</fpage>
          -
          <lpage>585</lpage>
          ,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <surname>C. D. Zuluaga</surname>
            ,
            <given-names>M. A.</given-names>
          </string-name>
          <string-name>
            <surname>Álvarez</surname>
          </string-name>
          , E. Giraldo, “
          <article-title>Short-term wind speed prediction based on robust Kalman filtering: An experimental comparison</article-title>
          ,
          <source>” Applied Energy</source>
          , vol.
          <volume>156</volume>
          ,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>J.</given-names>
            <surname>Duan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Ma</surname>
          </string-name>
          , et al.,
          <article-title>“A novel hybrid model based on nonlinear weighted combination for short-term wind power forecasting</article-title>
          ,”
          <source>International Journal of Electrical Power and Energy Systems</source>
          , vol.
          <volume>134</volume>
          ,
          <year>2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>M.</given-names>
            <surname>Gong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Yan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Xu</surname>
          </string-name>
          , et al., “
          <article-title>Short-term wind power forecasting model based on temporal convolutional network</article-title>
          and Informer,” Energy, vol.
          <volume>283</volume>
          ,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>S.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Shi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Yang</surname>
          </string-name>
          , et al.,
          <article-title>“High and low frequency wind power prediction based on Transformer and BiGRU-Attention,” Energy</article-title>
          , vol.
          <volume>288</volume>
          , pp.
          <fpage>129753</fpage>
          ,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>L.</given-names>
            <surname>Xiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Fu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Yao</surname>
          </string-name>
          , et al.,
          <article-title>“A novel model for ultra-short term wind power prediction based on Vision Transformer,” Energy</article-title>
          , vol.
          <volume>294</volume>
          , pp.
          <fpage>294130854</fpage>
          ,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>S.</given-names>
            <surname>Hochreiter</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Schmidhuber</surname>
          </string-name>
          ,
          <article-title>“Long short-term memory,” Neural computation</article-title>
          , vol.
          <volume>9</volume>
          , no.
          <issue>8</issue>
          , pp.
          <fpage>1735</fpage>
          -
          <lpage>1780</lpage>
          ,
          <year>1997</year>
          . DOI:
          <volume>10</volume>
          .1162/ neco.
          <year>1997</year>
          .
          <volume>9</volume>
          . 8. 1735.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>