Jupyter Notebook内核在尝试调用elasticsearch时死亡

时间:2020-09-26 09:38:18

标签: python docker elasticsearch jupyter-notebook allennlp

我的Jupyter笔记本电脑上经常出现问题。它运行NLP模型训练没有问题,但是在调用elasticsearch以使用专用命令在专用UI上可视化一些数据后,

pl_trained.explore(valid_ds, explain=True)

这些输出:

INFO:biome.text.ui.ui:Running biome UI on http://0.0.0.0:8080 with elasticsearch backend http://localhost:9200

笔记本发送消息,指出内核已死亡,它将自动重新启动。 Elasticsearch正在使用docker实例运行,在localhost 9200中,一切似乎都是正确的:

    {
  "name" : "f72a33c77fca",
  "cluster_name" : "docker-cluster",
  "cluster_uuid" : "Qac32YLsRe2Kbuqx72-aOQ",
  "version" : {
    "number" : "7.7.1",
    "build_flavor" : "default",
    "build_type" : "docker",
    "build_hash" : "ad56dce891c901a492bb1ee393f12dfff473a423",
    "build_date" : "2020-05-28T16:30:01.040088Z",
    "build_snapshot" : false,
    "lucene_version" : "8.5.1",
    "minimum_wire_compatibility_version" : "6.8.0",
    "minimum_index_compatibility_version" : "6.0.0-beta1"
  },
  "tagline" : "You Know, for Search"
}

但是无法访问localhost 8080。有任何想法吗?我是Docker的新手,所以我不知道问题是否存在或代码的其他部分。我正在使用的软件包(生物群系文本)运行在基于Pytorch的AllenNLP上。

0 个答案:

没有答案