How does Pytorch's “Fold” and “Unfold” work?

前端 未结 2 1459
孤城傲影
孤城傲影 2020-12-04 01:21

I\'ve gone through the official doc. I\'m having a hard time understanding what this function is used for and how it works. Can someone explain this in Layman terms?

<
2条回答
  •  南笙
    南笙 (楼主)
    2020-12-04 02:08

    unfold and fold are used to facilitate "sliding window" operation (like convolutions).
    Suppose you want to apply a function foo to every 5x5 window in a feature map/image:

    from torch.nn import functional as f
    windows = f.unfold(x, kernel_size=5)
    

    Now windows has size of batch-(5*5*x.size(1))-num_windows, you can apply foo on windows:

    processed = foo(windows)
    

    Now you need to "fold" processed back to the original size of x:

    out = f.fold(processed, x.shape[-2:], kernel_size=5)
    

    You need to take care of padding, and kernel_size that may affect your ability to "fold" back processed to the size of x.
    Moreover, fold sums over overlapping elements, so you might want to divide the output of fold by patch size.

提交回复
热议问题