我是 tensorflow 的新手,正在尝试从 OReilly 的《Learning Tensorflow.js》一书中获取一些示例,并且我已经安装了 node,并运行 tensorflow 安装脚本 npm inst...
我是 tensorflow 的新手,正在尝试从 OReilly 的《Learning Tensorflow.js》一书中获取一些示例,并且我已经安装了节点,并运行 tensorflow 安装脚本 npm install @tensorflow/tfjsand,当我运行一个简单的示例来使用以下两行检查版本时:
import * as tf from '@tensorflow/tfjs';
console.log(tf.version.tfjs);
我在控制台中收到此错误:
'Cannot use import statement outside a module'
我不明白问题是什么,因为这些文件直接来自图书下载网站。