tensorflowjs_converter --input_format=tf_saved_model --output_format=tfjs_graph_model --signature_name=serving_default --saved_model_tags=serve ./saved_model/ ./tfjs_model/ 'tensorflowjs_converter' 不是内部或外部命令,也不是可运行的程序
时间: 2023-10-09 14:06:07 浏览: 197
tfjs-to-tf:TensorFlow.js图模型转换器
这个错误提示意味着你的计算机中没有安装 TensorFlow.js 和 TensorFlow.js 转换器。你需要在命令行中安装 TensorFlow.js 和 TensorFlow.js 转换器,以便能够运行该命令。
安装 TensorFlow.js 和 TensorFlow.js 转换器的方法如下:
1. 安装 Node.js 和 npm
2. 在命令行中运行以下命令来安装 TensorFlow.js:
```
npm install @tensorflow/tfjs
```
3. 在命令行中运行以下命令来安装 TensorFlow.js 转换器:
```
npm install @tensorflow/tfjs-converter
```
安装完成后,你应该能够成功运行以下命令:
```
tensorflowjs_converter --input_format=tf_saved_model --output_format=tfjs_graph_model --signature_name=serving_default --saved_model_tags=serve ./saved_model/ ./tfjs_model/
```
阅读全文