We downloaded the pre-trained model from HuggingFace (ruvnet/wifi-densepose-pretrained) and tried to load it via the –model flag when starting the sensing server. The server immediately reports an error and falls back to signal heuristics without loading the model.
The error message is: Progressive loader init failed: invalid magic at offset 0: expected 0x52564653, got 0x77455735
The downloaded model files include model-q4.bin, model-q8.bin, model-q2.bin, model.rvf.jsonl and model.safetensors. None of them load successfully. The server expects binary RVF format with magic bytes 0x52564653 (RVFS) but all downloaded files have a different format.
Without a working model the server falls back to pure signal heuristics only, which gives very inaccurate results — we see up to 10 persons reported when only one person is actually present, and the UI shows a single flickering blob instead of proper pose estimation.
It would be helpful to either provide a correctly formatted binary RVF file on HuggingFace, or document how to convert the existing model files to the expected format.
We downloaded the pre-trained model from HuggingFace (ruvnet/wifi-densepose-pretrained) and tried to load it via the –model flag when starting the sensing server. The server immediately reports an error and falls back to signal heuristics without loading the model.
The error message is: Progressive loader init failed: invalid magic at offset 0: expected 0x52564653, got 0x77455735
The downloaded model files include model-q4.bin, model-q8.bin, model-q2.bin, model.rvf.jsonl and model.safetensors. None of them load successfully. The server expects binary RVF format with magic bytes 0x52564653 (RVFS) but all downloaded files have a different format.
Without a working model the server falls back to pure signal heuristics only, which gives very inaccurate results — we see up to 10 persons reported when only one person is actually present, and the UI shows a single flickering blob instead of proper pose estimation.
It would be helpful to either provide a correctly formatted binary RVF file on HuggingFace, or document how to convert the existing model files to the expected format.