Fix dead wikitext-103 S3 link in quicktour.mdx#2215
Open
RudrenduPaul wants to merge 1 commit into
Open
Conversation
The wget URL pointed at s3.amazonaws.com/research.metamind.io, which has been dead since the research.metamind.io takedown. Replace it with the canonical wikitext-103-raw-v1.zip mirror on the Hugging Face Hub so the quicktour download step works again. Closes huggingface#1625
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.
Closes #1625
What this PR does
Fixes the broken
wgetURL in the "Build a tokenizer from scratch"section of
docs/source-doc-builder/quicktour.mdx. The link pointed at:which has been dead since the
research.metamind.iobucket was takendown (confirmed still broken today — see Verification below). Anyone
following the quicktour hits a dead link on the very first command.
Change
docs/source-doc-builder/quicktour.mdx: replaced the dead S3 URL withthe canonical
wikitext-103-raw-v1.zipmirror hosted on the HuggingFace Hub (
huggingface.co/datasets/mattdangerw/wikitext-103-raw). Thearchive contents and internal layout are identical, so the existing
unzip wikitext-103-raw-v1.zipstep and downstream paths in the rest ofthe tutorial are unaffected.
Background
an intra-doc link elsewhere in this same file.
the duplicate wikitext-103-raw-v1.zip is not available on the amazonaws anymore #1683.
merged — its author self-closed it without a stated reason (no
maintainer review, no CI run, no comments) on 2026-06-06. Both Tokenizer Quickstart Tutorial: Broken Links #1625
and wikitext-103-raw-v1.zip is not available on the amazonaws anymore #1683 are still open on
maintoday, and no other PR currentlyaddresses them, so this re-proposes the same fix.
Verification
Confirmed the old link is still dead and the replacement resolves and
serves the real archive:
The Hub redirects to its CDN and serves the full ~192 MB zip with the
expected filename and content type.
Scope
Docs-only, single file changed. No code, tests, or build changes.