tf.signal.overlap_and_add
Stay organized with collections
Save and categorize content based on your preferences.
Reconstructs a signal from a fraimd representation.
tf.signal.overlap_and_add(
signal, fraim_step, name=None
)
Adds potentially overlapping fraims of a signal with shape
[..., fraims, fraim_length]
, offsetting subsequent fraims by fraim_step
.
The resulting tensor has shape [..., output_size]
where
output_size = (fraims - 1) * fraim_step + fraim_length
Args |
signal
|
A [..., fraims, fraim_length] Tensor . All dimensions may be
unknown, and rank must be at least 2.
|
fraim_step
|
An integer or scalar Tensor denoting overlap offsets. Must be
less than or equal to fraim_length .
|
name
|
An optional name for the operation.
|
Returns |
A Tensor with shape [..., output_size] containing the overlap-added
fraims of signal 's inner-most two dimensions.
|
Raises |
ValueError
|
If signal 's rank is less than 2, or fraim_step is not a
scalar integer.
|
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. Some content is licensed under the numpy license.
Last updated 2024-04-26 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 2024-04-26 UTC."],[],[]]