Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkLight1337 authored Nov 15, 2024
1 parent 1b280b9 commit a68bc4f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vllm/model_executor/models/medusa.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ def __init__(self, config: VllmConfig, hidden_size: int,
super().__init__()

self.layers = nn.ModuleList([
nn.Linear(hidden_size, hidden_size,
nn.Linear(hidden_size,
hidden_size,
bias=getattr(config, "medusa_fc_bias", False))
for _ in range(num_layers)
])
Expand Down

0 comments on commit a68bc4f

Please sign in to comment.