gpt4 book ai didi

python - Keras 2 用户警告表

转载 作者:太空宇宙 更新时间:2023-11-04 00:20:54 24 4
gpt4 key购买 nike

我正在尝试重现 this工作,但我收到以下警告:

/usr/local/lib/python3.5/dist-packages/ipykernel_launcher.py:2: UserWarning: Update your `Model` call to the Keras 2 API: `Model(outputs=Tensor("de..., inputs=Tensor("in...)`

当我运行第 84 行时:

model_final = Model(input = model.input, output = predictions)

我安装了以下软件包:

  • ipython==6.2.1
  • 凯拉斯==2.0.8
  • tensorflow==1.3.0
  • tensorflow-tensorboard==0.1.5

看起来代码是用旧版本的 Keras 编写的,但在我的 Keras 版本下仍然有效。

如有任何建议,我们将不胜感激。

最佳答案

UserWarning: Update your `Model` call to the Keras 2 API:
`Model(inputs=[<tf.Tenso…, outputs=Tensor(“ma…)`
model = Model(input=[sentence_input, neg_input], output=loss)

这里可以看到keras新的api,inputoutput应该是inputsoutputs.

原代码为:

model = Model(input=[sentence_input, neg_input], output=loss)

所以如果我们想去掉这个警告,我们应该这样写:

model = Model(inputs=[sentence_input, neg_input], outputs=loss)

Just a little s here and there, that’s all.

关于python - Keras 2 用户警告表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49146065/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com