- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
当我最初在莎士比亚语料库上运行 2 个 LSTM 网络(每个 512 个单元)时,经过 2 个 epoch 的训练(其中每个 epoch = 数据集的一个周期),我得到了相当不错的输出。这是:
我最好的病房他是你从他那个时代起就让贵族感到佩服的人吗?
维根公爵:所以,这个人,更重要的是,舌头是一个整体,你将与每一堵墙融为一体。
霍尔:嘿,您的大厅,请对我唯一的男人先生说好话,两人用您和我的永远的方式作为堡垒,将折痕。
哈莱特:
它仍在学习,损失为 1.73,并且损失图表并未趋于平稳。然而,在所有后续运行 (10) 中,它一直无法取得尽可能好的结果 - 例如,在 6 个 epoch 之后,在我随后的最佳运行中,它的损失为 2.43,并且趋于平稳 -这是输出:
修士?我的脚趾或内鲁怎么样 o inain me c ahes oisteese 和 th thet ot spr h 坐在摩西·勒穆德的耶顿·德·胡埃斯特里德面前,我们将增加脚趾练习和家庭回顾哈德·蒂克·特·奥福雷爵士hhe serined o chane the ertrs aine thele aelt To tee g te 哦,所以,我们一定会住在他那里,但在 jnt hu作为 ehmug te 到 fare t ceTo tha mhn hi did r t ter oe hirrat ft thr ionyoee wh eoo that e cade tientta Totike a r hee ta the he
这与 4、5、6 epoch 后的输出类似。最常见的是,在初始运行之后的运行中,网络会在损失 2.70 后趋于平稳。
This is the graph of the loss 我还发布了代码:
from __future__ import absolute_import, division, print_function
import os
import numpy as np
import tflearn
from tflearn.data_utils import *
from tflearn.layers.estimator import regression
inputs, targets, char_dict = \
textfile_to_semi_redundant_sequences("shakespeare_input.txt", seq_maxlen=20) #helper - vectorises text
LSTM = tflearn.input_data([None, 20, len(char_dict)])
LSTM = tflearn.lstm(LSTM, 512, return_seq=True, restore=True, dropout = 0.5)
LSTM = tflearn.lstm(LSTM, 512, restore=True, dropout = 0.5)
LSTM = tflearn.fully_connected(LSTM, len(char_dict), activation='softmax')
LSTM = tflearn.regression(LSTM, optimizer= 'adam', loss='categorical_crossentropy',
learning_rate=0.001)
LSTMmodel = tflearn.SequenceGenerator(LSTM, dictionary=char_dict,
seq_maxlen=20,
clip_gradients=5.0, tensorboard_verbose=0,tensorboard_dir='pathfile/logs')
#LSTMmodel.load('/pathfile/LSTMmodel.tfl')
for i in range(10):
print("-- TESTING...")
starting = random_sequence_from_textfile("shakespeare_input.txt", 20)
output_path = 'pathfile/epoch_' + str(i) + '_output.txt'
generated_output = LSTMmodel.generate(500, temperature=1.0, seq_seed=starting)
text_file = open(output_path, "w") #save the outputs to a text file - allows us to view progress of model
text_file.write("With temperature 1.0: \n \n \n") #two different temperatures - higher temp = more novel
text_file.write(generated_output)
generated_output = LSTMmodel.generate(500, temperature=0.5, seq_seed=starting) #lower temp = more accurate to original text
text_file.write("\n \n \n With temperature 0.5: \n \n \n")
text_file.write(generated_output)
text_file.close()
print("-- TRAINING...")
LSTMmodel.fit(inputs, targets, batch_size=200, n_epoch=1, run_id='Shakespeare_Generator',shuffle = True)
print("-- SAVING MODEL...")
if (i%2==0):
LSTMmodel.save("pathfile/LSTMmodel.tfl")
else:
LSTMmodel.save("pathfile//LSTMmodel2.tfl")
print("-- EPOCH " + str(i+1) +" COMPLETE...")
由于我在一台具有 4GB RAM 的旧双核 i3 上运行此程序,因此网络需要 6 小时 45 分钟才能完成一个 epoch。当然,至少需要两个时期才能看到结果。不幸的是,我无法继续调整代码并运行和重新运行。我还受到计算机内存的限制,因为 4 个内存中的 1GB 分配给 Ubuntu,另外 3 个分配给 Windows。因此,我只能训练一个小型网络。
如果有人可以提供预训练网络的链接,我将不胜感激
最佳答案
我没有这个模型的答案,但是您是否尝试过从莎士比亚生成 LSTM 的现有示例开始,例如这个?
https://github.com/sherjilozair/char-rnn-tensorflow
训练起来应该会更快一些,如果您从一个工作示例开始,那么调试出问题的地方可能会更容易。
关于python - 为什么网络学习效果不高(Tensorflow - 用于文本生成的 LSTM)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39551564/
我想将模型及其各自训练的权重从 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 来实现它? 以下是我的代码
我是一名优秀的程序员,十分优秀!