broccoli-ml 0.5.2__tar.gz → 0.5.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.5.2 → broccoli_ml-0.5.3}/PKG-INFO +1 -1
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/broccoli/vit.py +4 -4
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/pyproject.toml +1 -1
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/LICENSE +0 -0
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/README.md +0 -0
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/broccoli/__init__.py +0 -0
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/broccoli/activation.py +0 -0
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/broccoli/assets/2025_resnet_imagenet_1k_pretrained_state_dict.pkl +0 -0
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/broccoli/assets/cifar100_eigenvectors_size_2.pt +0 -0
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/broccoli/assets/cifar100_eigenvectors_size_3.pt +0 -0
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/broccoli/cnn.py +0 -0
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/broccoli/eigenpatches.py +0 -0
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/broccoli/linear.py +0 -0
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/broccoli/rope.py +0 -0
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/broccoli/tensor.py +0 -0
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/broccoli/transformer.py +0 -0
- {broccoli_ml-0.5.2 → broccoli_ml-0.5.3}/broccoli/utils.py +0 -0
@@ -285,8 +285,8 @@ class ViTEncoder(nn.Module):
|
|
285
285
|
mlp_ratio=transformer_mlp_ratio,
|
286
286
|
activation=transformer_activation,
|
287
287
|
activation_kwargs=transformer_activation_kwargs,
|
288
|
-
|
289
|
-
|
288
|
+
transformer_mlp_dropout=transformer_mlp_dropout,
|
289
|
+
transformer_msa_dropout=transformer_msa_dropout,
|
290
290
|
stochastic_depth=transformer_stochastic_depth,
|
291
291
|
causal=False,
|
292
292
|
linear_module=linear_module,
|
@@ -409,8 +409,8 @@ class CCT(nn.Module):
|
|
409
409
|
transformer_bos_tokens=transformer_bos_tokens,
|
410
410
|
transformer_activation=transformer_activation,
|
411
411
|
transformer_activation_kwargs=transformer_activation_kwargs,
|
412
|
-
|
413
|
-
|
412
|
+
transformer_mlp_dropout=transformer_mlp_dropout,
|
413
|
+
transformer_msa_dropout=transformer_msa_dropout,
|
414
414
|
transformer_stochastic_depth=transformer_stochastic_depth,
|
415
415
|
linear_module=linear_module,
|
416
416
|
initial_batch_norm=initial_batch_norm,
|
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
|