Summary
I’m a sophomore undergraduate. While following the README to run testing, I encountered:
- Missing
*_label.pkl under Real/test causing FileNotFoundError.
- Segmentation results
results_test_*.pkl use pred_* keys, but the code expects class_ids/rois/scores/masks, likely causing a KeyError afterward.
Environment
- Ubuntu 20.04, Python 3.8.15, PyTorch 1.12.0, CUDA 11.3
- Repo: MonoDiff9D (latest main)
- Checkpoint:
log1/rgb_diffusion_pose/epoch_80.pth
- Command:
python test.py --config config/rgb_diffusion_pose.yaml --test_epoch 80
Steps to Reproduce
- Prepare datasets per README into
data/ (including Real/test, obj_models/real_test.pkl, and segmentation_results/test_trainedwithMask, etc.).
- Run the command above.
Actual Behavior
- Prints “no. of test images: 2754”, then crashes with:
FileNotFoundError: [Errno 2] No such file or directory: '.../data/Real/test/scene_1/0000_label.pkl'
- Also observed
results_test_*.pkl keys are pred_class_ids/pred_bboxes/pred_scores/pred_mask, but later code uses class_ids/rois/scores/masks.
Questions / Requests
- Do we need to copy/link labels from the gts package into
data/Real/test/scene_x/ to form *_label.pkl? Could the README include explicit instructions or a script?
- Can testing rely directly on
gt_* fields already in results_*.pkl to avoid the *_label.pkl dependency?
- Could the code unify or support both naming styles (
pred_* vs class_ids/rois/scores/masks), or provide an official conversion script?
谢谢!

Summary
I’m a sophomore undergraduate. While following the README to run testing, I encountered:
*_label.pklunder Real/test causing FileNotFoundError.results_test_*.pklusepred_*keys, but the code expectsclass_ids/rois/scores/masks, likely causing a KeyError afterward.Environment
log1/rgb_diffusion_pose/epoch_80.pthSteps to Reproduce
data/(includingReal/test,obj_models/real_test.pkl, andsegmentation_results/test_trainedwithMask, etc.).Actual Behavior
results_test_*.pklkeys arepred_class_ids/pred_bboxes/pred_scores/pred_mask, but later code usesclass_ids/rois/scores/masks.Questions / Requests
data/Real/test/scene_x/to form*_label.pkl? Could the README include explicit instructions or a script?gt_*fields already inresults_*.pklto avoid the*_label.pkldependency?pred_*vsclass_ids/rois/scores/masks), or provide an official conversion script?谢谢!