docs: fix example config paths in English installation guide - #1994
Open
latent-9 wants to merge 1 commit into
Open
docs: fix example config paths in English installation guide#1994latent-9 wants to merge 1 commit into
latent-9 wants to merge 1 commit into
Conversation
The English quick-start referenced examples/v1/sft_qwen3_tiny.py and examples/v1/sft_intern_s1_tiny_config.py, which 404 — the configs live under examples/v1/config/. The Chinese installation guide already uses the correct examples/v1/config/ paths; this brings the English doc in line so the documented torchrun commands run.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The English installation guide references example configs that 404:
examples/v1/sft_qwen3_tiny.py(lines 71, 94)examples/v1/sft_intern_s1_tiny_config.py(lines 106, 270)Both configs actually live under
examples/v1/config/—examples/v1/contains onlyconfig/andscripts/. Running the documented command as-is fails atConfig.fromfile(...)withFileNotFoundError.The Chinese installation guide (
docs/zh_cn/get_started/installation.md) already uses the correctexamples/v1/config/...paths, so this simply brings the English doc back in line.Docs-only, no functional change.