broccoli-ml 0.24.2__tar.gz → 0.24.3__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.
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/PKG-INFO +1 -1
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/broccoli/transformer.py +1 -1
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/pyproject.toml +1 -1
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/LICENSE +0 -0
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/README.md +0 -0
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/broccoli/__init__.py +0 -0
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/broccoli/activation.py +0 -0
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/broccoli/assets/2025_resnet_imagenet_1k_pretrained_state_dict.pkl +0 -0
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/broccoli/assets/cifar100_eigenvectors_size_2.pt +0 -0
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/broccoli/assets/cifar100_eigenvectors_size_3.pt +0 -0
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/broccoli/cnn.py +0 -0
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/broccoli/eigenpatches.py +0 -0
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/broccoli/linear.py +0 -0
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/broccoli/rope.py +0 -0
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/broccoli/tensor.py +0 -0
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/broccoli/utils.py +0 -0
- {broccoli_ml-0.24.2 → broccoli_ml-0.24.3}/broccoli/vit.py +0 -0
@@ -264,7 +264,7 @@ class FeedforwardBlock(nn.Module):
|
|
264
264
|
nn.LayerNorm(input_features),
|
265
265
|
linear_module(input_features, self.max_features),
|
266
266
|
self.activation,
|
267
|
-
nn.LayerNorm(ratio * output_features) if raw_input else nn.Identity(),
|
267
|
+
# nn.LayerNorm(ratio * output_features) if raw_input else nn.Identity(),
|
268
268
|
self.memory_type(ratio * output_features, output_features),
|
269
269
|
self.dropout,
|
270
270
|
]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|