broccoli-ml 0.20.0__tar.gz → 0.21.1__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.20.0
3
+ Version: 0.21.1
4
4
  Summary: Some useful Pytorch models, circa 2025
5
5
  License: MIT
6
6
  Author: Nicholas Bailey
@@ -260,10 +260,18 @@ class FeedforwardBlock(nn.Module):
260
260
 
261
261
  self.process = nn.Sequential(
262
262
  *[
263
- nn.LayerNorm(input_features),
263
+ (
264
+ nn.LayerNorm(input_features)
265
+ if not regularise_values
266
+ else nn.Identity()
267
+ ),
264
268
  linear_module(input_features, self.max_features),
265
269
  self.activation,
266
- nn.LayerNorm(ratio * output_features),
270
+ (
271
+ nn.LayerNorm(input_features)
272
+ if not regularise_values
273
+ else nn.Identity()
274
+ ),
267
275
  self.memory_type(ratio * output_features, output_features),
268
276
  self.dropout,
269
277
  ]
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "broccoli-ml"
3
- version = "0.20.0"
3
+ version = "0.21.1"
4
4
  description = "Some useful Pytorch models, circa 2025"
5
5
  authors = [
6
6
  {name = "Nicholas Bailey"}
File without changes
File without changes