Tensorflow.js是由Google開發的開源庫,用於在瀏覽器或節點環境中運行機器學習模型以及深度學習神經網絡。
.executeAsync() 函數用於以異步方式實現有利於指定輸入張量的給定模型的含義。此外,如果您的模型包含流操作,您可以使用這種方法。
用法:
executeAsyn(inputs, outputs?)
Parameters:
- inputs:它是指定的張量或張量數組或有利於模型的輸入張量圖,通過輸入節點指定處理。它的類型是 (tf.Tensor|tf.Tensor[]|{[name:string]:tf.Tensor})。
- outputs:它是來自所述張量流模型的所述輸出節點名稱。如果未規定輸出,則必須應用規定模型的默認輸出。此外,我們可以通過將它們附加到輸出數組來分析指定模型的 in-between 節點。它是 string 或 string[] 類型。
返回值:它返回 tf.Tensor 或 tf.Tensor[] 的承諾。
範例1:在此示例中,我們從 URL 加載 MobileNetV2。
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Defining tensor input elements
const model_Url =
'https://storage.googleapis.com/tfjs-models/savedmodel/mobilenet_v2_1.0_224/model.json';
// Calling the loadGraphModel() method
const mymodel = await tf.loadGraphModel(model_Url);
// Defining inputs
const inputs = tf.zeros([1, 224, 224, 3]);
// Calling executeAsync() method
const res = await mymodel.executeAsync(inputs);
// Printing output
console.log(res);
輸出:
Tensor [[-0.1800361, -0.4059965, 0.8190175, ..., -0.8953396, -1.0841646, 1.2912753],]
範例2:在本例中,我們從 TF Hub URL 加載 MobileNetV2。
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Defining tensor input elements
const model_Url =
'https://tfhub.dev/google/imagenet/mobilenet_v2_140_224/classification/2';
// Calling the loadGraphModel() method
const mymodel = await tf.loadGraphModel(
model_Url, {fromTFHub:true});
// Defining inputs
const inputs = tf.zeros([1, 224, 224, 3]);
// Defining outputs
const outputs = "module_apply_default/MobilenetV2/Logits/output";
// Calling executeAsync() method
const res = await mymodel.executeAsync(inputs, outputs);
// Printing output
console.log(res);
輸出:
Tensor [[-1.1690605, 0.0195426, 1.1962479, ..., -0.4825858, -0.0055641, 1.1937635],]
參考:https://js.tensorflow.org/api/latest/#tf.GraphModel.executeAsync
相關用法
- Tensorflow.js tf.Tensor.buffer()用法及代碼示例
- Java String repeat()用法及代碼示例
- Tensorflow.js tf.LayersModel.evaluate()用法及代碼示例
- Tensorflow.js tf.data.Dataset.batch()用法及代碼示例
- Tensorflow.js tf.Sequential.add()用法及代碼示例
- p5.js Element class()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Tensorflow.js tf.GraphModel class .executeAsync() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。