broccoli-ml 0.5.5__tar.gz → 0.6.0__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.5.5
3
+ Version: 0.6.0
4
4
  Summary: Some useful Pytorch models, circa 2025
5
5
  License: MIT
6
6
  Author: Nicholas Bailey
@@ -269,6 +269,13 @@ class ViTEncoder(nn.Module):
269
269
  Rearrange( # for transformer
270
270
  f"N C {spatial_dim_names} -> N ({spatial_dim_names}) C"
271
271
  ),
272
+ (
273
+ PadTensor(
274
+ (0, transformer_embedding_size - pooling_out_channels)
275
+ )
276
+ if not intermediate_feedforward_layer
277
+ else nn.Identity()
278
+ ),
272
279
  ]
273
280
  )
274
281
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "broccoli-ml"
3
- version = "0.5.5"
3
+ version = "0.6.0"
4
4
  description = "Some useful Pytorch models, circa 2025"
5
5
  authors = [
6
6
  {name = "Nicholas Bailey"}
File without changes
File without changes
File without changes