Pooling vs Pooling-over-time

前端 未结 2 562
深忆病人
深忆病人 2021-02-14 03:45

I understand conceptually what is happening in a max/sum pool as a CNN layer operation, but I see this term \"max pool over time\", or \"sum pool over time\" thrown around (e.g.

2条回答
  •  你的背包
    2021-02-14 04:09

    Max pooling typically applies to regions in a 2d feature plane, while max pooling over time happens along a 1d feature vector.

    Here is a demonstration of max pooling from Stanford's CS231n:

    Max pooling over time takes a 1d feature vector and computes the max. The "over time" just means this is happening along the time dimension for some sequential input, like a sentence, or a concatenation of all phrases from a sentence as in the paper you linked.

    For example:

    [2, 7, 4, 1, 5] -> [7]
    

    Source: CS224d Lecture 13 slides

提交回复
热议问题