我正在使用 tensorflow js 按照本指南从 keras 加载模型 但是在这行代码中
const model = await tf.loadModel('https://foo.bar/tfjs_artifacts/model.json');
我收到错误
Error: Sequential.fromConfig called without an array of configs
at new t (app.js:26972)
at t.fromConfig (app.js:26972)
at deserializeKerasObject (app.js:26972)
at deserialize (app.js:26972)
at app.js:26972
at app.js:26972
at Object.next (app.js:26972)
at o (app.js:26972)
我能做些什么来解决它。此错误的可能原因是什么?谢谢您的帮助 。
注意:我在我的服务器中启用了 cors,所以我认为这与我的服务器无关。我正在使用本地主机(不是指南中提到的)也如我使用的文档中所述
tfjs.keras.converters.save_keras_model()