无法在node.js中导入@ tensorflow-models

时间:2019-06-27 11:30:47

标签: node.js npm deep-learning tensorflow.js tensorflowjs

我刚刚开始使用node.js,但无法将tensorlfow js模型导入到我的应用程序中。我正在使用的代码是:

import * as cocoSsd from '@tensorflow-models/coco-ssd'
const model = cocoSsd.load();

运行以上代码后,出现以下错误:

import * as cocoSsd from '@tensorflow-models/coco-ssd'
       ^

SyntaxError: Unexpected token *
    at Module._compile (internal/modules/cjs/loader.js:721:23)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:787:10)
    at Module.load (internal/modules/cjs/loader.js:653:32)
    at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
    at Function.Module._load (internal/modules/cjs/loader.js:585:3)
    at Function.Module.runMain (internal/modules/cjs/loader.js:829:12)
    at startup (internal/bootstrap/node.js:283:19)
    at bootstrapNodeJSCore (internal/bootstrap/node.js:622:3)

1 个答案:

答案 0 :(得分:1)

如何将babel安装为开发依赖项

https://medium.com/@onlykiosk/complete-babel-7-guide-for-beginners-in-2019-7dd78214c464

查看有关babel是什么以及它如何工作的帖子