Skip to content

Commit

Permalink
add type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsKue committed Oct 14, 2024
1 parent c46e706 commit 20f0a2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bayesflow/networks/transformers/isab.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def __init__(
dense_units: int = 128,
dense_activation: str = "gelu",
kernel_initializer: str = "he_normal",
use_bias=True,
use_bias: bool = True,
layer_norm: bool = True,
**kwargs,
):
Expand Down
2 changes: 1 addition & 1 deletion bayesflow/networks/transformers/mab.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(
dense_units: int = 128,
dense_activation: str = "gelu",
kernel_initializer: str = "he_normal",
use_bias=True,
use_bias: bool = True,
layer_norm: bool = True,
**kwargs,
):
Expand Down
2 changes: 1 addition & 1 deletion bayesflow/networks/transformers/pma.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(
dense_units: int = 128,
dense_activation: str = "gelu",
kernel_initializer: str = "he_normal",
use_bias=True,
use_bias: bool = True,
layer_norm: bool = True,
**kwargs,
):
Expand Down

0 comments on commit 20f0a2c

Please sign in to comment.