为什么是“正在加载小部件”。消息出现在JupyterLab中?

时间:2020-04-19 03:17:37

标签: annotations widget jupyter-lab

当我尝试运行此单元格时收到“正在加载小部件”消息。

foodfns = sorted(os.listdir('foods'))
targets = np.zeros((len(foodfns), 4), dtype='int') # (x,y,w,h) for each data row
Innotater( ImageInnotation(foodfns, path='foods'), BoundingBoxInnotation(targets) )

Code with Loading widget message

预期输出:https://github.com/ideonate/jupyter-innotater

1 个答案:

答案 0 :(得分:0)

看起来您已正确安装了库,并且还等待JupyterLab资产重建。但是,您几乎可以肯定至少需要在那时重新加载页面,以获取刚刚重建的最新Javascript。 (也许你是这样做的。)

甚至值得重启Jupyter服务器本身,然后清除浏览器缓存并重新加载。

说实话,我还不太了解JupyterLab的扩展加载系统-它对我也不行。

您正在使用什么版本的JupyterLab(建议使用2.0 +)?