KeyError: 'ActionVisualizer is not in the mmengine::visualizer registry. #2807
Unanswered
ronniepiku
asked this question in
Q&A
Replies: 1 comment
-
I got the same error message today and it was because my |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey guys, I'm trying to extract slowonly features from a custom dataset and get this error:
KeyError: 'ActionVisualizer is not in the mmengine::visualizer registry. Please check whether the value of ActionVisualizer is correct or it was registered as expected. More details can be found at https://mmengine.readthedocs.io/en/latest/advanced_tutorials/config.html#import-the-custom-module'
This is the code I am running in an ubuntu terminal:
bash ../../../../mmaction2/tools/dist_test.sh \ slowonly_feature_infer.py slowonly_imagenet-pretrained-r50_16xb16-8x8x1-steplr-150e_kinetics700-rgb_20221013-15b93b10.pth $NUM_GPUS --dump result.pkl
I've checked the docs, but I cant find any way to fix this
This is the section of code that returns the error:
log_processor = dict(type='LogProcessor', window_size=20, by_epoch=True)
vis_backends = [dict(type='LocalVisBackend')]
visualizer = dict(
type='ActionVisualizer', vis_backends=[dict(type='LocalVisBackend')])
log_level = 'INFO'
Beta Was this translation helpful? Give feedback.
All reactions