What is “linear projection” in convolutional neural network

前端 未结 3 545
名媛妹妹
名媛妹妹 2021-01-05 15:57

I am reading through Residual learning, and I have a question. What is "linear projection" mentioned in 3.2? Looks pretty simple once got this but could not get th

3条回答
  •  孤街浪徒
    2021-01-05 16:15

    A linear projection is one where each new feature is simple a weighted sum of the original features. As in the paper, this can be represented by matrix multiplication. if x is the vector of N input features and W is an M-byN matrix, then the matrix product Wx yields M new features where each one is a linear projection of x. Each row of W is a set of weights that defines one of the M linear projections (i.e., each row of W contains the coefficients for one of the weighted sums of x).

提交回复
热议问题