为什么我不能在Colab中运行jupyter-annotator代码?

时间:2020-04-18 22:31:18

标签: python jupyter-notebook annotations google-colaboratory

单元格1

!pip install jupyter-annotator

单元2

from jupyter_innotater import *
import numpy as np, os

单元3

images = os.listdir('./foods/')
targets = np.zeros((len(images), 4)) # Initialise bounding boxes as x,y = 0,0, width,height = 0,0
Innotater( ImageInnotation(images, path='./foods'), BoundingBoxInnotation(targets) )

当我尝试运行第三个单元时,我遇到了问题,我的内核在Colab中重新启动。

1 个答案:

答案 0 :(得分:0)

Colab尚不支持自定义jupyter小部件。

因此,您需要等到它得到支持。

请参见issue #60