-
Notifications
You must be signed in to change notification settings - Fork 17
Fix readme critical typos #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
(`$MODLE_PATH` -> `$MODEL_PATH`)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR corrects critical typos and broken references in the README to improve clarity and accuracy.
- Fixes a misspelled example variable name ($MODLE_PATH -> $MODEL_PATH)
- Updates a broken LICENSE link (master/LICENCE -> main/LICENSE)
- Improves grammar in a training/conversion instruction
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
|
|
||
| Models with safetensors format can be downloaded from [HuggingFace](https://huggingface.co/inclusionAI) or [ModelScope](https://modelscope.cn/organization/inclusionAI). | ||
| If you want to train your model and eval it, you can convert from dcp produced by training. | ||
| If you want to train your model and evaluate it, you can convert from dcp produced by training. |
Copilot
AI
Oct 17, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For consistency with the environment variable DCP_PATH and the script name convert_dcp_to_safe_tensors.py, capitalize 'dcp' as 'DCP'.
| If you want to train your model and evaluate it, you can convert from dcp produced by training. | |
| If you want to train your model and evaluate it, you can convert from DCP produced by training. |
| ```shell | ||
| python -m sglang.launch_server \ | ||
| --model-path $MODLE_PATH \ | ||
| --model-path $MODEL_PATH \ |
Copilot
AI
Oct 17, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use braced variable expansion for consistency with ${DCP_PATH} above and to avoid potential parsing issues; change to ${MODEL_PATH}.
| --model-path $MODEL_PATH \ | |
| --model-path ${MODEL_PATH} \ |
Co-authored-by: Copilot <[email protected]>
$MODLE_PATH->$MODEL_PATH)I hope this helps!