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
Another alternative is to install a newer version of Detectron2 and AdelaiDet that are compatible with the Colab included PyTorch and see whether the models still work.
assert torch.__version__.startswith("1.7")
!pip install detectron2 -f
https://dl.fbaipublicfiles.com/detectron2/wheels/cu101/torch1.7/index.html
clear_output()
AssertionError Traceback (most recent call last)
in
3 # See https://detectron2.readthedocs.io/tutorials/install.html for instructions if you
4 # want to switch to an older version
----> 5 assert torch.version.startswith("1.7")
6 get_ipython().system('pip install detectron2 -f https://dl.fbaipublicfiles.com/detectron2/wheels/cu101/torch1.7/index.html')
7 clear_output()
AssertionError:
I am getting this error in that code. What should i do to solve this problem?
I ran this in colab.
The text was updated successfully, but these errors were encountered: