Skip to content

Commit

Permalink
fix: configuration types
Browse files Browse the repository at this point in the history
  • Loading branch information
sbucaille committed Feb 23, 2025
1 parent 08003a5 commit 7696204
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ def __init__(
self,
stage_block_dims: List[int] = None,
stage_num_blocks: List[int] = None,
stage_hidden_expansion: List[int | float] = None,
stage_stride: List[int | float] = None,
stage_hidden_expansion: List[float] = None,
stage_stride: List[int] = None,
hidden_size: int = 256,
activation_function: str = "relu",
aggregation_sizes: List[int] = None,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,8 @@ def __init__(
self,
stage_block_dims: List[int] = None,
stage_num_blocks: List[int] = None,
stage_hidden_expansion: List[int | float] = None,
stage_stride: List[int | float] = None,
stage_hidden_expansion: List[float] = None,
stage_stride: List[int] = None,
hidden_size: int = 256,
activation_function: str = "relu",
aggregation_sizes: List[int] = None,
Expand Down

0 comments on commit 7696204

Please sign in to comment.