我已经用机器学习模型做了相当多的预测研究,特别是多输入神经网络。当y+1不存在时,如何预测(或在此上下文中预测)测试集中的y+1?下面,我是从1月1日到1月10日。我如何预测1月11日?
我已经尝试了预测包中的拟合函数,它只适用于时间序列对象。预测函数只给出了1月10日的值,而不是11日的值。我可以将数据帧转换为STL对象,但不确定它是否会在我的预测之上应用进一步的预测方法。
如果您有任何想法或帮助,我们将不胜感激。
谢谢。
library(rnn)
library(zoo)
#Create random dataframe and date column, then merge
df &l
我尝试在Tensorflow中构建一个情感分析模型
def rnn_lstm(weights, biases, data_x, sequence_length, vocab_size, embedding_size):
# Use Tensor Flow embedding lookup and convert the input data set
with tf.device("/cpu:0"):
embedding = tf.get_variable("embedding43", [vocab_size, embedding_
在我的代码中:(在tf1.0上工作得很好)
from tensorflow.contrib.rnn.python.ops import core_rnn
from tensorflow.contrib.rnn.python.ops import core_rnn_cell
from tensorflow.contrib.rnn.python.ops import core_rnn_cell_impl
用tf1.2报告错误:从tensorflow.contrib.rnn.python.ops导入core_rnn ImportError:无法导入名称“core_rnn”
~/anaconda3/lib/python3.6/site-packages/tflearn/layers/recurrent.py in <module>()
12 # Fix for TF 1.1.0 and under
13 from tensorflow.contrib.rnn.python.ops.core_rnn import static_rnn as _rnn, static_bidirectional_rnn as _brnn
---> 14 from tensorflow.python.ops.rnn impo
我在循环神经网络上关注。
这是导入:
import tensorflow as tf
from tensorflow.examples.tutorials.mnist import input_data
from tensorflow.python.ops import rnn
from tensorflow.contrib.rnn import core_rnn_cell
这是输入处理的代码:
x = tf.transpose(x, [1,0,2])
x = tf.reshape(x, [-1, chunk_size])
x = tf.split(x, n_chunks, 0)
lstm_
我已经能够使用下面的代码实现一个无状态模型 import os
os.environ['TF_ENABLE_CONTROL_FLOW_V2'] = '1'
import tensorflow as tf
from tensorflow_core.python.keras.models import Model, Sequential
from tensorflow_core.python.keras.layers.core import Dense, Activation, Lambda, Reshape
from tensorflow_core.python