pengzhiliang / Conformer

Official code for Conformer: Local Features Coupling Global Representations for Visual Recognition
Apache License 2.0
531 stars 87 forks source link

Questions about the code #9

Closed DrChenziyan closed 3 years ago

DrChenziyan commented 3 years ago
  1. Could you interpret the last_fusion in ConvTransBlock? I did not find a specific explanation in your paper.
  2. In ConvBlock, could you explain what is x_t in the forward function?
pengzhiliang commented 3 years ago

Hi~:

A1. The last_fusion is still a conv block. A2. We need to fuse the features x in ConvBlock with the feature x_t from TransBlock.