我正在尝试在 Google Colab 上包含 Detectron2.data。我为 colab 和我的驱动器建立了连接。在那之后:
!pip install pyyaml
!pip install detectron2 -f https://dl.fbaipublicfiles.com/detectron2/wheels/cu101/torch1.7/index.html
它工作没有任何错误。
我一直在尝试这个;
import numpy as np
import os, json, cv2, random
from google.colab.patches import cv2_imshow
import detectron2
from detectron2.data import MetadataCatalog, DatasetCatalog
from detectron2.utils.visualizer import Visualizer
from detectron2 import model_zoo
但输出是这样的: 在此处输入图像描述
我该如何解决?