You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The model_overide_args would be the third argument to launch_server defaulting to None. Adding a small cli parser that allows arbitrary model args would be great, e.g.
python -m sglang.launch_server --model_overide_args.rope_scaling.factor 2 --model_overide_args.rope_scaling.type linear
The text was updated successfully, but these errors were encountered:
When using a server, one currently cannot use the
model_overide_args
which could be very useful, e.g. for rope scaling.This is currently the
sglang.launch_server.py
:The
model_overide_args
would be the third argument tolaunch_server
defaulting toNone
. Adding a small cli parser that allows arbitrary model args would be great, e.g.The text was updated successfully, but these errors were encountered: