Fix moved Wuerstchen example path in training docs - #14348
Open
latent-9 wants to merge 1 commit into
Open
Conversation
The Wuerstchen text-to-image training example moved to examples/research_projects/wuerstchen/text_to_image/, but the training docs still point at the old top-level examples/wuerstchen/text_to_image path. The runnable 'cd examples/wuerstchen/text_to_image' in wuerstchen.md fails with 'No such file or directory' (so the following pip install also fails), and the source/blob links in wuerstchen.md, overview.md and lora.md 404. Updated all references to the current examples/research_projects/wuerstchen/text_to_image path.
Contributor
|
Hi @latent-9, thanks for the PR! It does not appear to link an issue it fixes. If this PR addresses an existing issue, please add a closing keyword (e.g. |
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.
What does this PR do?
The Wuerstchen text-to-image training example lives at
examples/research_projects/wuerstchen/text_to_image/, but the training docs still reference the old top-levelexamples/wuerstchen/text_to_imagepath:docs/source/en/training/wuerstchen.md: the runnablecd examples/wuerstchen/text_to_imagefails withNo such file or directory(so the followingpip install -r requirements.txtfails too), and 6 source/blob links 404.docs/source/en/training/overview.mdandlora.md: the Wuerstchen links 404.This updates all references (9 across the three files) to the current
examples/research_projects/wuerstchen/text_to_imagepath. Verified the directory exists there (train_text_to_image_prior.py,train_text_to_image_lora_prior.py,modeling_efficient_net_encoder.py,requirements.txt).Before submitting