Tensorflow使用训练过的RNN生成tex

2024-10-02 02:32:38 发布

您现在位置:Python中文网/ 问答频道 /正文

我试着用以前训练过的LSTM生成文本。我发现了一个existing solution,但问题是它引发了一些异常。据我所知,这是因为旧的图书馆使用。在一些修复之后,我的最后一个文本生成函数是:

def generate_text(train_path, num_sentences, rnn_data):
gen_config = get_config()
gen_config.num_steps = 1
gen_config.batch_size = 1

with tf.Graph().as_default(), tf.Session() as session:
    initializer = tf.random_uniform_initializer(-gen_config.init_scale,
                                                gen_config.init_scale)

    with tf.name_scope("Generate"):
        rnn_input = PTBInput(config=gen_config, data=rnn_data, name="GenOut")
        with tf.variable_scope("OutModel", reuse=None, initializer=initializer):
            mout = PTBModel(is_training=False, config=gen_config, input_=rnn_input)

            # Restore variables from disk. TODO: save/load trained models
            # saver = tf.train.Saver()
            # saver.restore(session, model_path)
            # print("Model restored from file " + model_path)

        print('Getting Vocabulary')
        words = reader.get_vocab(train_path)

        mout.initial_state = tf.convert_to_tensor(mout.initial_state)

        state = mout.initial_state.eval()
        # state = session.run(mout.initial_state)
        x = 0  # the id for '<eos>' from the training set //TODO: fix this
        word_input = np.matrix([[x]])  # a 2D numpy matrix

        text = ""
        count = 0
        while count < num_sentences:
            output_probs, state = session.run([mout.output_probs, mout.final_state],
                                              {mout.input.input_data: word_input,
                                               mout.initial_state: state})

            print('Output Probs = ' + str(output_probs[0]))
            x = sample(output_probs[0], 0.9)
            if words[x] == "<eos>":
                text += ".\n\n"
                count += 1
            else:
                text += " " + words[x]
            # now feed this new word as input into the next iteration
            word_input = np.matrix([[x]])
        print(text)
    return

但我有个例外:

FailedPreconditionError (see above for traceback): Attempting to use uninitialized value OutModel/softmax_b [[Node: OutModel/softmax_b/read = IdentityT=DT_FLOAT, _class=["loc:@OutModel/softmax_b"], _device="/job:localhost/replica:0/task:0/cpu:0"]]

我怎样才能修好它?我的代码还有其他问题吗?


Tags: pathtextconfiginputdatasessiontfinitial

热门问题