- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我已经创建了 tensorflow 程序来获取外汇的收盘价。我已经成功地创建了预测,但未能理解预测 future 值(value)的方法。看下面是我的预测函数:
test_pred_list = []
def testAndforecast(xTest1,yTest1):
# test_pred_list = 0
truncated_backprop_length = 3
with tf.Session() as sess:
# train_writer = tf.summary.FileWriter('logs', sess.graph)
tf.global_variables_initializer().run()
counter = 0
# saver.restore(sess, "models\\model2298.ckpt")
try:
with open ("Checkpointcounter.txt","r") as file:
value = file.read()
except FileNotFoundError:
print("First Time Running Training!....")
if(tf.train.checkpoint_exists("models\\model"+value+".ckpt")):
saver.restore(sess, "models\\model"+value+".ckpt")
print("models\\model"+value+".ckpt Session Loaded for Testing")
for test_idx in range(len(xTest1) - truncated_backprop_length):
testBatchX = xTest1[test_idx:test_idx+truncated_backprop_length,:].reshape((1,truncated_backprop_length,num_features))
testBatchY = yTest1[test_idx:test_idx+truncated_backprop_length].reshape((1,truncated_backprop_length,1))
#_current_state = np.zeros((batch_size,state_size))
feed = {batchX_placeholder : testBatchX,
batchY_placeholder : testBatchY}
#Test_pred contains 'window_size' predictions, we want the last one
_last_state,_last_label,test_pred = sess.run([last_state,last_label,prediction],feed_dict=feed)
test_pred_list.append(test_pred[-1][-1]) #The last one
这是用于测试和训练的完整 jupyter 和数据集:
My repository with code .
请帮助我如何预测 future 的收盘价。请不要像我尝试的那样分享与预测相关的内容。请让我知道一些可以在没有任何支持的情况下仅根据我所提供的培训进行预测的东西。
希望早日听到。
最佳答案
如果我对您的问题的理解正确,那么预测是指预测 future 的多个收盘价(例如当前状态下的下 5 个收盘价)。我浏览了你的 jupyter notebook。简而言之,您不能轻易做到这一点。
现在您的代码采用多个 future 定义的最后三个位置(开盘价/最低价/最高价/收盘价和一些指标值)。在此基础上,您可以预测下一个收盘价。如果您想预测更多头寸,则必须根据预测的收盘价创建一个“人工”头寸。在这里您可以近似开盘价与前收盘价相同,但您只能猜测最高价和最低价。然后您将计算其他 future /值(value)(来自指标),并使用该头寸与前两个头寸来预测下一个收盘价。您可以在以后的步骤中继续这样做。
问题在于开盘价/最低价/最高价,因为您只能估计它们。您可以将它们从数据中移除,重新训练模型,并在没有它们的情况下进行预测,但它们可能是指标计算所必需的。
我以某种方式压缩了您的代码以显示预测所有 OHLC 价格的方法:
# Data
xTrain = datasetTrain[
["open", "high", "low", "close", "k",
"d", "atr", "macdmain", "macdsgnal",
"bbup", "bbmid", "bblow"]].as_matrix()
yTrain = datasetTrain[["open", "high", "low", "close"]].as_matrix()
# Settings
batch_size = 1
num_batches = 1000
truncated_backprop_length = 3
state_size = 12
num_features = 12
num_classes = 4
# Graph
batchX_placeholder = tf.placeholder(
dtype=tf.float32,
shape=[None, truncated_backprop_length, num_features],
name='data_ph')
batchY_placeholder = tf.placeholder(
dtype=tf.float32,
shape=[None, num_classes],
name='target_ph')
cell = tf.contrib.rnn.BasicRNNCell(num_units=state_size)
states_series, current_state = tf.nn.dynamic_rnn(
cell=cell,
inputs=batchX_placeholder,
dtype=tf.float32)
states_series = tf.transpose(states_series, [1,0,2])
last_state = tf.gather(
params=states_series,
indices=states_series.get_shape()[0]-1)
weight = tf.Variable(tf.truncated_normal([state_size, num_classes]))
bias = tf.Variable(tf.constant(0.1, shape=[num_classes]))
prediction = tf.matmul(last_state, weight) + bias
loss = tf.reduce_mean(tf.squared_difference(last_label, prediction))
train_step = tf.train.AdamOptimizer(learning_rate=0.001).minimize(loss)
# Training
for batch_idx in range(num_batches):
start_idx = batch_idx
end_idx = start_idx + truncated_backprop_length
batchX = xTrain[start_idx:end_idx,:].reshape(batch_size, truncated_backprop_length, num_features)
batchY = yTrain[end_idx].reshape(batch_size, truncated_backprop_length, num_classes)
feed = {batchX_placeholder: batchX, batchY_placeholder: batchY}
_loss, _train_step, _pred, _last_label,_prediction = sess.run(
fetches=[loss, train_step, prediction, last_label, prediction],
feed_dict=feed)
我认为编写整个代码并不重要,而且我不知道指标是如何计算的。此外,您应该更改数据馈送方式,因为现在它仅适用于大小为 1 的批处理操作系统。
关于python - 如何使用 Tensorflow 模型进行预测?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51444526/
我想将模型及其各自训练的权重从 tensorflow.js 转换为标准 tensorflow,但无法弄清楚如何做到这一点,tensorflow.js 的文档对此没有任何说明 我有一个 manifest
我有一个运行良好的 TF 模型,它是用 Python 和 TFlearn 构建的。有没有办法在另一个系统上运行这个模型而不安装 Tensorflow?它已经经过预训练,所以我只需要通过它运行数据。 我
当执行 tensorflow_model_server 二进制文件时,它需要一个模型名称命令行参数,model_name。 如何在训练期间指定模型名称,以便在运行 tensorflow_model_s
我一直在 R 中使用标准包进行生存分析。我知道如何在 TensorFlow 中处理分类问题,例如逻辑回归,但我很难将其映射到生存分析问题。在某种程度上,您有两个输出向量而不是一个输出向量(time_t
Torch7 has a library for generating Gaussian Kernels在一个固定的支持。 Tensorflow 中有什么可比的吗?我看到 these distribu
在Keras中我们可以简单的添加回调,如下所示: self.model.fit(X_train,y_train,callbacks=[Custom_callback]) 回调在doc中定义,但我找不到
我正在寻找一种在 tensorflow 中有条件打印节点的方法,使用下面的示例代码行,其中每 10 个循环计数,它应该在控制台中打印一些东西。但这对我不起作用。谁能建议? 谢谢,哈米德雷萨, epsi
我想使用 tensorflow object detection API 创建我自己的 .tfrecord 文件,并将它们用于训练。该记录将是原始数据集的子集,因此模型将仅检测特定类别。我不明白也无法
我在 TensorFlow 中训练了一个聊天机器人,想保存模型以便使用 TensorFlow.js 将其部署到 Web。我有以下内容 checkpoint = "./chatbot_weights.c
我最近开始学习 Tensorflow,特别是我想使用卷积神经网络进行图像分类。我一直在看官方仓库中的android demo,特别是这个例子:https://github.com/tensorflow
我目前正在研究单图像超分辨率,并且我设法卡住了现有的检查点文件并将其转换为 tensorflow lite。但是,使用 .tflite 文件执行推理时,对一张图像进行上采样所需的时间至少是使用 .ck
我注意到 tensorflow 的 api 中已经有批量标准化函数。我不明白的一件事是如何更改训练和测试之间的程序? 批量归一化在测试和训练期间的作用不同。具体来说,在训练期间使用固定的均值和方差。
我创建了一个模型,该模型将 Mobilenet V2 应用于 Google colab 中的卷积基础层。然后我使用这个命令转换它: path_to_h5 = working_dir + '/Tenso
代码取自:- http://adventuresinmachinelearning.com/python-tensorflow-tutorial/ import tensorflow as tf fr
好了,所以我准备在Tensorflow中运行 tf.nn.softmax_cross_entropy_with_logits() 函数。 据我了解,“logit”应该是概率的张量,每个对应于某个像素的
tensorflow 服务构建依赖于大型 tensorflow ;但我已经成功构建了 tensorflow。所以我想用它。我做这些事情:我更改了 tensorflow 服务 WORKSPACE(org
Tensoflow 嵌入层 ( https://www.tensorflow.org/api_docs/python/tf/keras/layers/Embedding ) 易于使用, 并且有大量的文
我正在尝试使用非常大的数据集(比我的内存大得多)训练 Tensorflow 模型。 为了充分利用所有可用的训练数据,我正在考虑将它们分成几个小的“分片”,并一次在一个分片上进行训练。 经过一番研究,我
根据 Sutton 的书 - Reinforcement Learning: An Introduction,网络权重的更新方程为: 其中 et 是资格轨迹。 这类似于带有额外 et 的梯度下降更新。
如何根据条件选择执行图表的一部分? 我的网络有一部分只有在 feed_dict 中提供占位符值时才会执行.如果未提供该值,则采用备用路径。我该如何使用 tensorflow 来实现它? 以下是我的代码
我是一名优秀的程序员,十分优秀!