docs: fix HF model card download path and publish expected files (#1481) - #1508
Open
zeeshanzzz788 wants to merge 1 commit into
Open
docs: fix HF model card download path and publish expected files (#1481)#1508zeeshanzzz788 wants to merge 1 commit into
zeeshanzzz788 wants to merge 1 commit into
Conversation
The in-repo MODEL_CARD still told users to download from the non-existent
repo ruv/ruview, so huggingface-cli download could not succeed as written.
Point Quick Start and the citation at ruvnet/wifi-densepose-pretrained,
align the Models table with the Hub tree (including csi-embed-v2.*), and
update publish-huggingface.{sh,py} EXPECTED_FILES so a future publish
cannot reintroduce the stale ONNX filenames from issue ruvnet#1481.
Refs: ruvnet#1481
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
Follow-up to #1481 (
docs/huggingface/MODEL_CARD.mddrifted from the Hub).Most of the file table was already updated, but a few live hazards remained:
Wrong download command still used the non-existent Hub id
ruv/ruview:That command cannot succeed. Updated to
ruvnet/wifi-densepose-pretrained(matches the README and the live Hub repo).Citation still linked
https://huggingface.co/ruv/ruview→ fixed.Models table omitted published v2 artifacts (
csi-embed-v2.*,model.rvf.jsonl) that are on the Hub today.scripts/publish-huggingface.{sh,py}still listed the old never-uploaded names (pretrained-encoder.onnx, etc.). A future publish validate step would warn/expect the wrong set; updatedEXPECTED_FILESto the current Hub tree.Front-matter
library_name: onnxruntimewas misleading (no ONNX files on Hub) →safetensors.Test plan
https://huggingface.co/api/models/ruvnet/wifi-densepose-pretrained/tree/mainruv/ruview/ stale ONNX namesdist/models/layoutCloses #1481 (remaining gaps after the earlier card rewrite).