关于Error 'realDivide' not yet implemented 【已解决】
发布于 5 年前 作者 xiulantao 3718 次浏览 来自 分享

Error:

'realDivide' not yet implemented or not found in the registry. Did you forget to import the kernel?

描述:

在使用Tensorflowjs导入model后,进行预测时出现

const y = await model.predict(x)

解决方式:

在app.json中更新Tensorflow插件版本

 "plugins": {
    "tfjsPlugin": {
      "version": "0.0.9",
      "provider": "wx6afed118d9e81df9"
    }
  },

回到顶部