Warning: This project is deprecated. TensorFlow Addons has stopped development,
The project will only be providing minimal maintenance releases until May 2024. See the full
announcement here or on
github.
tfa.seq2seq.InferenceSampler
Stay organized with collections
Save and categorize content based on your preferences.
An inference sampler that uses a custom sampling function.
Inherits From: Sampler
tfa.seq2seq.InferenceSampler(
sample_fn: Callable,
sample_shape: tfa.types.TensorLike
,
sample_dtype: tfa.types.AcceptableDTypes
,
end_fn: Callable,
next_inputs_fn: Optional[Callable] = None
)
Args |
sample_fn
|
A callable that takes outputs and emits tensor
sample_ids .
|
sample_shape
|
Either a list of integers, or a 1-D Tensor of type
int32 , the shape of the each sample in the batch returned by
sample_fn .
|
sample_dtype
|
the dtype of the sample returned by sample_fn .
|
end_fn
|
A callable that takes sample_ids and emits a bool vector
shaped [batch_size] indicating whether each sample is an end
token.
|
next_inputs_fn
|
(Optional) A callable that takes sample_ids and
returns the next batch of inputs. If not provided, sample_ids is
used as the next batch of inputs.
|
Attributes |
batch_size
|
Batch size of tensor returned by sample .
Returns a scalar int32 tensor. The return value might not
available before the invocation of initialize(), in this case,
ValueError is raised.
|
sample_ids_dtype
|
DType of tensor returned by sample .
Returns a DType. The return value might not available before the
invocation of initialize().
|
sample_ids_shape
|
Shape of tensor returned by sample , excluding the batch dimension.
Returns a TensorShape . The return value might not available
before the invocation of initialize().
|
Methods
initialize
View source
initialize(
start_inputs
)
initialize the sampler with the input tensors.
This method must be invoked exactly once before calling other
methods of the Sampler.
Args |
inputs
|
A (structure of) input tensors, it could be a nested tuple or
a single tensor.
|
**kwargs
|
Other kwargs for initialization. It could contain tensors
like mask for inputs, or non tensor parameter.
|
Returns |
(initial_finished, initial_inputs) .
|
View source
next_inputs(
time, outputs, state, sample_ids
)
Returns (finished, next_inputs, next_state)
.
sample
View source
sample(
time, outputs, state
)
Returns sample_ids
.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-05-25 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-05-25 UTC."],[],[]]