diff options
author | Tongzhou Wang <SsnL@users.noreply.github.com> | 2017-12-18 12:28:23 -0500 |
---|---|---|
committer | Soumith Chintala <soumith@gmail.com> | 2017-12-18 12:28:23 -0500 |
commit | d8b2e5d0916a85e603c9bda6def5cd20cbe94fa6 (patch) | |
tree | fe192c2771c211f96bef9487b100af2f33d5ea98 /docs | |
parent | 3b641dc80521bf78da9cbd2a0334cd321d336b08 (diff) | |
download | pytorch-d8b2e5d0916a85e603c9bda6def5cd20cbe94fa6.tar.gz pytorch-d8b2e5d0916a85e603c9bda6def5cd20cbe94fa6.tar.bz2 pytorch-d8b2e5d0916a85e603c9bda6def5cd20cbe94fa6.zip |
Add python only default init expression; Implement stft, hann/hamming/bartlett window. (#4095)
* implement stft
* addressed comments; implemented window functions; added support for python only default initialization
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/torch.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/source/torch.rst b/docs/source/torch.rst index 90d324230a..429deaccde 100644 --- a/docs/source/torch.rst +++ b/docs/source/torch.rst @@ -159,6 +159,14 @@ Comparison Ops .. autofunction:: topk +Spectral Ops +~~~~~~~~~~~~~~~~~~~~~~ +.. autofunction:: stft +.. autofunction:: hann_window +.. autofunction:: hamming_window +.. autofunction:: bartlett_window + + Other Operations ~~~~~~~~~~~~~~~~~~~~~~ .. autofunction:: cross |