Move datasets off Git LFS to Hugging Face mirror (fixes #60)#62
Open
Ruiying-Ma wants to merge 1 commit into
Open
Move datasets off Git LFS to Hugging Face mirror (fixes #60)#62Ruiying-Ma wants to merge 1 commit into
Ruiying-Ma wants to merge 1 commit into
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.
Summary
Fixes #60. The repository's Git LFS budget is exhausted, so on a fresh clone the dataset files come down as
pointer stubs and 10 of 17 datasets fail to load. This PR removes the dependency on Git LFS entirely by
mirroring all dataset files on the Hugging Face Hub and fetching them via
download.sh.Changes
ruiyingm/DataAgentBench-data, preservingrepo-relative paths.
download.sh: rewritten to be manifest-driven — downloads every file from the HF mirror, verifies eachagainst a sha256 checksum, and skips files already present and intact (re-runnable;
VERIFY_ALL=1re-hasheseverything).
dataset_manifest.tsv: new source of truth listing each file's path, sha256, and size..gitattributes: removed allfilter=lfsrules so these paths are no longer LFS-tracked..gitignore: the dataset files are now download-only.upload_datasets_to_hf.py: maintainer tool to (re)publish the dataset files to HF.README.md: updated clone/setup instructions to usebash download.shinstead ofgit lfs.Verification
like LFS did).
Notes
fetch them).
ruiyingm) and can be transferred to an org laterwithout breaking links.