When I run this code
!ngc registry model download-version nvidia/tao/pretrained_object_detection:resnet18
–dest $LOCAL_EXPERIMENT_DIR/pretrained_resnet18
I get the following error:-
ngc: /tmp/_MEIjGHmAF/libstdc++.so.6: version CXXABI_1.3.8' not found (required by /usr/lib/x86_64-linux-gnu/libtcmalloc.so.4) ngc: /tmp/_MEIjGHmAF/libstdc++.so.6: version GLIBCXX_3.4.21’ not found (required by /usr/lib/x86_64-linux-gnu/libtcmalloc.so.4)
Please help
I have reinstalled libgcc but still face issue.
Since you are running in Google Colab, I can reproduce the same error in Colab while downloading NVIDIA NGC .
Not sure if the ngc is compatible with Google Colab.
For workaround, please use wget to download the model instead of ngc.
For example,
!ngc registry model download-version nvidia/tao/pretrained_object_detection:resnet18
–dest $LOCAL_EXPERIMENT_DIR/pretrained_resnet18