从tfjs加载mobilenet时等待错误

时间:2019-06-12 16:13:00

标签: tensorflow async-await tensorflow.js tensorflowjs mobilenet

我正在关注本教程https://github.com/tensorflow/tfjs-models/tree/master/mobilenet

当我尝试通过以下方式加载模块时:

require('@tensorflow/tfjs-node')
const mobilenet = require('@tensorflow-models/mobilenet')


const model = await mobilenet.load();

我在控制台上收到此错误(使用tfjs-node):

const model = await mobilenet.load();
              ^^^^^

SyntaxError: await is only valid in async function

我不知道发生了什么!你能帮我吗?

1 个答案:

答案 0 :(得分:0)

await需要在异步函数中使用。

(async () => {
  const model = await mobilenet.load();
}){}