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
In server.cpp in the server_print_usage method, newlines are missing at the end of the -gan N and-gaw N print strings.
Currently:
printf(" -gan N, --grp-attn-n N set the group attention factor to extend context size through self-extend(default: 1=disabled), used together with group attention width `--grp-attn-w`");
printf(" -gaw N, --grp-attn-w N set the group attention width to extend context size through self-extend(default: 512), used together with group attention factor `--grp-attn-n`");
Expected :
printf(" -gan N, --grp-attn-n N set the group attention factor to extend context size through self-extend(default: 1=disabled), used together with group attention width `--grp-attn-w`\n");
printf(" -gaw N, --grp-attn-w N set the group attention width to extend context size through self-extend(default: 512), used together with group attention factor `--grp-attn-n`\n");
Seems like an easy PR for someone trying to get experience.
The text was updated successfully, but these errors were encountered:
In server.cpp in the server_print_usage method, newlines are missing at the end of the -gan N and-gaw N print strings.
Currently:
Expected :
Seems like an easy PR for someone trying to get experience.
The text was updated successfully, but these errors were encountered: