VMD-Attention-LSTM 价格预测实战

VMD-Attention-LSTM时间序列价格预测实战 完整数据代码可直接运行_哔哩哔哩_bilibili

VMD-Attention-LSTM 价格预测实战_第1张图片 

VMD-Attention-LSTM 价格预测实战_第2张图片

数据展示:数据有几万条 足够的

VMD-Attention-LSTM 价格预测实战_第3张图片

主要模型代码:

import tensorflow as tf

def attention_3d_block(inputs,TIME_STEPS,SINGLE_ATTENTION_VECTOR):
    # inputs.shape = (batch_size, time_steps, input_dim)
    # inputs = tf.expand_dims(inputs,1)
    input_dim = int(inputs.shape[2])
    a = tf.keras.layers.Permute((2, 1))

你可能感兴趣的:(深度学习神经网络实战100例,tensorflow,人工智能,python,Attention,VMD,价格预测实战)