-
I have mmsegmentation installed and running successfully, which means (I think) that mmengine is also installed. However, recently, I came across the need to check my mmengine version and it has been proving to be harder than expected. I've tried running the following command
And I've also tried this
So, what can I do? Thanks for the help! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
This problem is caused by the fact that mmdet 2.x and mmseg 0.x do not depend on mmengine, so a successful run of mmseg does not indicate that mmengine is installed. In fact, you don't have mmengine installed, so perhaps you can install it via |
Beta Was this translation helpful? Give feedback.
-
mmengine worked with my code but now it shows me this message ''ASGD is already registered in optimizer at torch.optim.asgd''. |
Beta Was this translation helpful? Give feedback.
This problem is caused by the fact that mmdet 2.x and mmseg 0.x do not depend on mmengine, so a successful run of mmseg does not indicate that mmengine is installed. In fact, you don't have mmengine installed, so perhaps you can install it via
pip install mmengine
.