[LLM:Bugfix] Fix WikiText calibration dataset loading#4566
Merged
wangzhaode merged 1 commit intoJun 25, 2026
Conversation
wangzhaode
reviewed
Jun 25, 2026
wangzhaode
left a comment
Collaborator
There was a problem hiding this comment.
Thanks for the fix! The root cause is confirmed — recent HuggingFace Hub versions require a namespaced repo ID, and the old load_dataset('wikitext', ...) call fails with HfUriError. The updated Salesforce/wikitext identifier and the new three-part spec parsing are both correct.
Contributor
Author
|
Thanks your review. |
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.
Description
Fix LLM calibration dataset loading with recent
datasets/huggingface_hubversions.Recent HuggingFace Hub clients require dataset repo IDs to include a namespace. The old
load_dataset("wikitext", ...)path now fails with an invalid HF URI error. This updates built-in WikiText calibration loading toSalesforce/wikitext.Also updates
download_data.pyto accept dataset specs likeSalesforce/wikitext/wikitext-2-raw-v1by treating the final path component as the dataset config and the preceding components as the repo ID.Module
LLM
Type
Checklist
[Module:Type] Descriptionformat