Add a translation pipeline - #813
Draft
stevhliu wants to merge 16 commits into
Draft
Conversation
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.
This PR adds a
translatecommand to translate docs into other languages. There isn't very good coverage for the other languages, they fall out of sync with the English docs, and are difficult to keep up with and maintain because most times we can't review translation PRs.Design
A nightly scheduled Job under
hf-doc-buildrunsdoc-builder translate transformers --lang ja --bucket /bucketwhich clones Transformers and readsdocs/source/en/**. It masks things that shouldn't be translated - like specific doc-builder syntax - and segments the docs. Translated paragraphs are stored in a Bucket,hf-doc-build/doc-translate/cacheand reused nightly to compare whether existing changes have been made. If there are no changes, it exits.If something is new, it loads a model to only translate the prose that's changed using Transformers' native continuous batching. The finished
.mdfiles are written to a new Bucket,hf-doc-build/doc-translate/translations.On the Transformers side, write
build_ja_documentation.ymlto call on the doc-builder's shared build workflow to sync the translations. It downloads the finished files and swaps them in.doc-builder builduses the existing page-level caching to only build pages whose content changed and then push tohf-doc-build/doc-build.Preview