Skip to content

Commit

Permalink
Old config support ?
Browse files Browse the repository at this point in the history
  • Loading branch information
Narsil committed May 13, 2024
1 parent 4c62877 commit 05b0cdd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def __init__(self, prefix, config, weights):
)
)
# Fuse gate and up proj
bias = config.mlp_bias
bias = getattr(config, "mlp_bias", False)
if config.model_type == "phi3":
self.gate_up_proj = TensorParallelColumnLinear.load_gate_up(
config,
Expand Down

0 comments on commit 05b0cdd

Please sign in to comment.