wuch15 / KDD-NPA

Resources for the paper "NPA: News Recommendation with Personalized Attention"
47 stars 12 forks source link

CNN #6

Open shainaraza opened 4 years ago

shainaraza commented 4 years ago

can you please explain about CNN and the number of filters? is it max over pooling layer?

wuch15 commented 4 years ago

There is no max pooling operation after the CNN layer. We use the personalized attention network for "pooling". The number of filters actually equals the output dimension of the CNN feature vectors. For example, if there are 400 filters and a news title has 30 words, the output size should be (30,400).

shainaraza commented 4 years ago

thanks you