broccoli-ml 9.2.1__tar.gz → 9.2.2__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: 9.2.1
3
+ Version: 9.2.2
4
4
  Summary: Some useful Pytorch models, circa 2025
5
5
  License: MIT
6
6
  Author: Nicholas Bailey
@@ -153,6 +153,9 @@ class RecyclingLinear(nn.Module):
153
153
  adaptive=False,
154
154
  ):
155
155
  super().__init__()
156
+ self.in_features = in_features
157
+ self.out_features = out_features
158
+ self.bias = bias
156
159
  self.linear = nn.Linear(in_features, out_features, bias=bias)
157
160
  self.row_recycling_rate = row_recycling_rate
158
161
  self.column_recycling_rate = column_recycling_rate
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "broccoli-ml"
3
- version = "9.2.1"
3
+ version = "9.2.2"
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
File without changes