Skip to content

Commit

Permalink
[hotfix][minor] Poolformer does not need projections (#349)
Browse files Browse the repository at this point in the history
* skip the projection layer for poolformer
* changelog
  • Loading branch information
blefaudeux committed Jul 3, 2022
1 parent 7fdb90d commit 6c003f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Removed dupliacated biases in the FusedMLP layers [#317]
- Rotary embeddings respecting input types [#326]
- Poolformer style instantiating useless projection layers [#349]

### Added
- Four blocksparsity layouts from DeepSpeed [#320]
Expand Down
1 change: 1 addition & 0 deletions xformers/components/attention/pooling.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def __init__(

# This "attention" (token mixing) skips the multihead attention altogether
self.requires_skip_multi_head = True
self.requires_input_projection = False

# This operator does not really handle q,k,v
self.requires_same_k_q_dimensions = True
Expand Down

0 comments on commit 6c003f1

Please sign in to comment.