You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I run into the same problem and find out i was using an older version of icevision (0.11) where there were no mmseg module nor models. Seems that mmseg models only are available at v 0.12 or higher.
Hope it helps.
Edit: I told you wrong. It is not icevision 0.12. However it the master branch it is updated.
Hi,
I have installed via github (option 3 on the installation instructions) on Pop!_OS 22.04 LTS (Ubuntu).
When I try and run the 'getting_started_semantic_segmentation' notebook, none of the models using mmseg work .
AttributeError Traceback (most recent call last)
Input In [19], in <cell line: 18>()
16 model = model_type.model(backbone=backbone, num_classes=class_map.num_classes)
18 if selection == 3:
---> 19 model_type = models.mmseg.segformer
20 backbone = model_type.backbones.mit_b0(pretrained=True)
21 model = model_type.model(backbone=backbone, num_classes=class_map.num_classes)
AttributeError: module 'icevision.models' has no attribute 'mmseg'
The text was updated successfully, but these errors were encountered: