📜  Tensorflow.js tf.loadGraphModel()函数

📅  最后修改于: 2022-05-13 01:56:34.909000             🧑  作者: Mango

Tensorflow.js tf.loadGraphModel()函数

Tensorflow.js 是谷歌开发的一个开源库,用于在浏览器或节点环境中运行机器学习模型以及深度学习神经网络。

.loadGraphModel()函数用于在给定模型定义 URL 的情况下加载图形模型。

句法:

tf.loadGraphModel (modelUrl, options)

参数:

  • modelUrl:第一个张量输入,可以是字符串或 io.IOHandler 类型。这个参数是帮助加载模型的 URL 或 io.IOHandler。
  • options:可选的第二个张量输入。选项用于 HTTP 请求,它允许发送凭据和自定义标头。选项的类型是——
    • requestInit: RequestInit 用于 HTTP 请求。
    • onProgress: OnProgress 用于进度回调。
    • fetchFunc:它是一个用于覆盖 window.fetch函数的函数。
    • strict: Strict 是一种加载模型:无论是多余的权重还是缺失的权重都应该触发一个错误。
    • weightPathPrefix:路径前缀用于权重文件,默认情况下是根据模型 JSON 文件的路径计算得出的。
    • fromTFHub:这是一个布尔值,表示模块或模型是否要从 TF Hub 加载。

返回值:返回 Promise

示例 1:在此示例中,我们从 URL 加载 MobileNetV2 并使用零输入进行预测。

Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Defining tensor input elements 
const modelUrl =
'https://storage.googleapis.com/tfjs-models/savedmodel/mobilenet_v2_1.0_224/model.json';
  
// Calling the loadGraphModel () method
const model = await tf.loadGraphModel(modelUrl);
  
// Printing the zeroes
const zeros = tf.zeros([1, 224, 224, 3]);
model.predict(zeros).print();


Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Defining tensor input elements 
const modelUrl =
'https://tfhub.dev/google/imagenet/mobilenet_v2_140_224/classification/2';
  
// Calling the loadGraphModel () method
const model = await tf.loadGraphModel(
        modelUrl, {fromTFHub: true});
  
// Printing the zeores
const zeros = tf.zeros([1, 224, 224, 3]);
model.predict(zeros).print();


输出:

Tensor
     [[-0.1412081, -0.5656458, 0.7578365, ..., 
     -1.0148169, -0.81284, 1.1898142],]

示例 2:在此示例中,我们从 TF Hub URL 加载 MobileNetV2,并使用零输入进行预测。

Javascript

// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Defining tensor input elements 
const modelUrl =
'https://tfhub.dev/google/imagenet/mobilenet_v2_140_224/classification/2';
  
// Calling the loadGraphModel () method
const model = await tf.loadGraphModel(
        modelUrl, {fromTFHub: true});
  
// Printing the zeores
const zeros = tf.zeros([1, 224, 224, 3]);
model.predict(zeros).print();

输出:

Tensor
     [[-1.0764486, 0.0097444, 1.1630495, ..., 
     -0.345558, 0.035432, 0.9112286],]

参考: https://js.tensorflow.org/api/1.0.0/#loadGraphModel