Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] use mmrazor/main/tools/visualizations/feature_diff_visualization.py error: inference_mot() missing 2 required positional arguments: 'frame_id' and 'video_len' #624

Open
zhanghay opened this issue Jan 21, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@zhanghay
Copy link

zhanghay commented Jan 21, 2024

Describe the bug

A clear and concise description of what the bug is.

使用mmrazor/main/tools/visualizations/feature_diff_visualization.py对mmdetection中faster-rcnn可视化时,提示需有frame_id,video_len。原因在于该文件line93为'inference_'而在mmdetection的api中有'inference_detector'、'inference_mot',可能默认加载了'inference_mot',导致了对单张图片可视化时需要额外的frame_id,video_len参数

When using mmrazor/main/tools/visualizations/feature_visualization.py to visualize faster-rcnn in mmdetection, there is a prompt asking for frame_id and video_len. The reason for this is that line 93 of the file is 'inference_', while mmdetection's API provides 'inference_detector' and 'inference_mot', possibly defaulting to 'inference_mot', which requires additional frame_id and video_len parameters when visualizing a single image.

The error:

Traceback (most recent call last):
  File "tools/visualizations/feature_diff_visualization.py", line 171, in <module>
    main(args)
  File "tools/visualizations/feature_diff_visualization.py", line 122, in main
    _ = inference_model(model1, args.img)
TypeError: inference_mot() missing 2 required positional arguments: 'frame_id' and 'video_len'

To Reproduce

The command you executed.

python tools/visualizations/feature_diff_visualization.py \\
tools/visualizations/demo.jpg \\
/home/z/code/mmrazor/mmdetection/mmdet/.mim/configs/faster_rcnn/faster-rcnn_r101_fpn_2x_coco.py \\
/home/z/code/mmrazor/mmdetection/mmdet/.mim/configs/faster_rcnn/faster-rcnn_r50_fpn_1x_coco.py \\
tools/visualizations/vis_configs/fpn_feature_diff_visualization.py \\
faster_rcnn_r101_fpn_2x_coco_bbox_mAP-0.398_20200504_210455-1d2dac9c.pth \\
 ./work_dirs/cwd_fpn_frcnn_r101_frcnn_r50_1x_coco/epoch_12.pth \\
 --out-file ./output/1.jpg \\ 
 --device cpu   \\
 --repo mmdet \\
 --channel-reduction pixel_wise_max \\
 --resize-shape 320 320

Post related information

  1. The output of pip list | grep "mmcv\|mmrazor\|^torch"
mmcv                   2.0.1
mmrazor                1.0.0        
torch                  1.12.0+cu113
torchvision            0.13.0+cu113
  1. Your config file if you modified it or created a new one.

  2. Your train log file if you meet the problem during training.
    no

  3. Other code you modified in the mmrazor folder.
    no, just ln -s mmdetetion ./mmrazor/mmdetection. (Soft-link the mmdetection library into mmrazor)

Additional context

Add any other context about the problem here.

[here]

@zhanghay zhanghay added the bug Something isn't working label Jan 21, 2024
@zhanghay zhanghay changed the title [Bug] [Bug] use mmrazor/main/tools/visualizations/feature_diff_visualization.py error: inference_mot() missing 2 required positional arguments: 'frame_id' and 'video_len' Jan 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant