Tensorflow.js是Google開發的開源庫,用於在瀏覽器或節點環境中運行機器學習模型和深度學習神經網絡。
tf.layers.multiply() 函數用於執行輸入數組的逐元素乘法。
用法:
tf.layers.multiply()
參數:
- inputShape:如果定義了此參數,它將創建另一個輸入層以插入到該層之前。
- batchInputShape:如果定義了此參數,它將創建另一個輸入層以插入到該層之前。
- batchSize:用於構造batchInputShape(如果尚未指定)。
- dtype:指定該層的數據類型。該參數的默認值為 ‘float32’。
- name:指定該層的名稱。
- updatable:指定該層的權重是否可以通過擬合更新。
- trainable:指定該層的權重是否可通過擬合更新。
- weights:指定圖層的初始權重值。
- inputDType:‘float32’ 或 ‘int32’ 或 ‘bool’ 或 ‘complex64’ 或 ‘string’。
返回值:與輸入張量類型相同的單個張量。
範例1:
Javascript
// Import the library
import * as tf from "@tensorflow/tfjs"
const input1 = tf.input({shape:[3, 2]})
const input2 = tf.input({shape:[3, 2]})
const input3 = tf.input({shape:[3, 2]})
// Create a multiply layer
const multiplyLayer = tf.layers.multiply()
// Multiple array of inputs by apllying multiplyLayer
const product = multiplyLayer.apply([input1, input2, input3])
// Print the shape of output tensor
console.log(JSON.stringify(product.shape))
輸出:
[null,3,2]
注意:這裏 null 表示未確定的批量大小。
範例2:
Javascript
// Import the library
import * as tf from "@tensorflow/tfjs"
// Inputs
const input1 = tf.tensor([-2, 1, 0, 5]);
const input2 = tf.tensor([3, 2, 3, 2]);
const input3 = tf.tensor([4, 3, 1, 2]);
// Create multiply layer
const multiplyLayer = tf.layers.multiply();
// Multiply inputs
const product = multiplyLayer.apply(
[input1, input2, input3]);
// Print product
console.log(product);
輸出:
Tensor [-24, 6, 0, 20]
相關用法
- PHP imagecreatetruecolor()用法及代碼示例
- p5.js year()用法及代碼示例
- d3.js d3.utcTuesdays()用法及代碼示例
- PHP ImagickDraw getTextAlignment()用法及代碼示例
- PHP Ds\Sequence last()用法及代碼示例
- PHP Imagick floodFillPaintImage()用法及代碼示例
- PHP array_udiff_uassoc()用法及代碼示例
- PHP geoip_continent_code_by_name()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP GmagickPixel setcolor()用法及代碼示例
- PHP opendir()用法及代碼示例
- PHP cal_to_jd()用法及代碼示例
- d3.js d3.bisectLeft()用法及代碼示例
- PHP stream_get_transports()用法及代碼示例
注:本文由純淨天空篩選整理自abhinavjain194大神的英文原創作品 Tensorflow.js tf.layers.multiply() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。