Summary
Install Torch* and Torchvision* libraries that are compatible with Model Converter.
Description
- Downloaded FastSeg-large, Public Pre-Trained model from Open Model Zoo.
- Ran converter.py to convert FastSeg-large model to Intermediate Representation (IR):
python3 converter.py --name fastseg-large - Received error: cannot import name 'container_abcs' from 'torch._six'
Resolution
- Uninstall Torch and Torchvision:
pip uninstall torch torchvision - Install compatible version of Torch and Torchvision:
pip install torch==1.8.0 torchvision==0.9.0 - Convert FastSeg-large model:
python3 converter.py --name fastseg-large