broccoli-ml 0.13.3__tar.gz → 0.13.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: broccoli-ml
3
- Version: 0.13.3
3
+ Version: 0.13.5
4
4
  Summary: Some useful Pytorch models, circa 2025
5
5
  License: MIT
6
6
  Author: Nicholas Bailey
@@ -305,7 +305,8 @@ class ViTEncoder(nn.Module):
305
305
  linear_module=linear_module,
306
306
  )
307
307
  elif pooling_out_channels == transformer_embedding_size:
308
- pass
308
+ self.intermediate_feedforward_layer = nn.Identity()
309
+ self.pooling_channels_padding = nn.Identity()
309
310
  elif pooling_out_channels < transformer_embedding_size:
310
311
  self.intermediate_feedforward_layer = nn.Identity()
311
312
  self.pooling_channels_padding = PadTensor(
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "broccoli-ml"
3
- version = "0.13.3"
3
+ version = "0.13.5"
4
4
  description = "Some useful Pytorch models, circa 2025"
5
5
  authors = [
6
6
  {name = "Nicholas Bailey"}
File without changes
File without changes