contrib.seq2seq.Helper

tf.contrib.seq2seq.Helper

class tf.contrib.seq2seq.Helper

Defined in tensorflow/contrib/seq2seq/python/ops/helper.py.

See the guide: Seq2seq Library (contrib) > Dynamic Decoding

Interface for implementing sampling in seq2seq decoders.

Helper instances are used by BasicDecoder.

Properties

batch_size

Batch size of tensor returned by sample.

Returns a scalar int32 tensor.

Methods

initialize

initialize(name=None)

Returns (initial_finished, initial_inputs).

next_inputs

next_inputs(
    time,
    outputs,
    state,
    sample_ids,
    name=None
)

Returns (finished, next_inputs, next_state).

sample

sample(
    time,
    outputs,
    state,
    name=None
)

Returns sample_ids.

© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/contrib/seq2seq/Helper

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部