Missing Spectral Ops functions?

None of the Spectral Ops functions are included. When I try to use e.g. torch.hann_window(3) I receive an AttributeError: module 'torch' has no attribute 'hann_window'. Any idea why?

I tried PyTorch version 0.3.0 and 0.3.1.

The docs for version 0.3.1 http://pytorch.org/docs/0.3.1/ do not mention any spectral ops.

The link you provided points to the docs for the master version which contains details on stuff that is currently being worked on. To use those spectral ops you will have to compile pytorch from source.

2 Likes

I see, my bad, thanks a lot!