Class ScheduledOutputTrainingHelper
Inherits From: TrainingHelper
Defined in tensorflow/contrib/seq2seq/python/ops/helper.py
.
A training helper that adds scheduled sampling directly to outputs.
Returns False for sample_ids where no sampling took place; True elsewhere.
__init__
__init__(
inputs,
sequence_length,
sampling_probability,
time_major=False,
seed=None,
next_inputs_fn=None,
auxiliary_inputs=None,
name=None
)
Initializer.
Args:
inputs
: A (structure) of input tensors.sequence_length
: An int32 vector tensor.sampling_probability
: A 0Dfloat32
tensor: the probability of sampling from the outputs instead of reading directly from the inputs.time_major
: Python bool. Whether the tensors ininputs
are time major. IfFalse
(default), they are assumed to be batch major.seed
: The sampling seed.next_inputs_fn
: (Optional) callable to apply to the RNN outputs to create the next input when sampling. IfNone
(default), the RNN outputs will be used as the next inputs.auxiliary_inputs
: An optional (structure of) auxiliary input tensors with a shape that matchesinputs
in all but (potentially) the final dimension. These tensors will be concatenated to the sampled output or theinputs
when not sampling for use as the next input.name
: Name scope for any created operations.
Raises:
ValueError
: ifsampling_probability
is not a scalar or vector.
Properties
batch_size
Batch size of tensor returned by sample
.
Returns a scalar int32 tensor.
inputs
sample_ids_dtype
DType of tensor returned by sample
.
Returns a DType.
sample_ids_shape
Shape of tensor returned by sample
, excluding the batch dimension.
Returns a TensorShape
.
sequence_length
Methods
tf.contrib.seq2seq.ScheduledOutputTrainingHelper.initialize
initialize(name=None)
Returns (initial_finished, initial_inputs)
.
tf.contrib.seq2seq.ScheduledOutputTrainingHelper.next_inputs
next_inputs(
time,
outputs,
state,
sample_ids,
name=None
)
next_inputs_fn for TrainingHelper.
tf.contrib.seq2seq.ScheduledOutputTrainingHelper.sample
sample(
time,
outputs,
state,
name=None
)
Returns sample_ids
.