Tensorflow.js是Google開發的開源庫,用於在瀏覽器或節點環境中運行機器學習模型和深度學習神經網絡。
tf.dropout() 函數用於計算 dropout。您可以從 https://www.geeksforgeeks.org/dropout-in-neural-networks/閱讀有關輟學的更多信息。
用法:
tf.dropout (x, rate, noiseShape?, seed?)
參數:
- x:具有浮點數輸入值的 tesnor。
- rate (number):x 的每個元素被丟棄的概率。接受 0 到 1 範圍內的值。
- 噪音形狀(數字[]):表示隨機生成的保持/丟棄標誌形狀的數組。證明這個參數是可選的。類型:int32。
- seed (number or string):它用於創建隨機種子。提供此參數是可選的。
返回值:它返回tf.Tensor []。
範例1:
Javascript
const tf = require("@tensorflow/tfjs")
// creating a tensor
const x = tf.tensor1d([1, 2, 2, 1]);
const rate = 0.6;
// calculating dropout
const output = tf.dropout(x, rate);
output.print();
輸出:
Tensor [0, 5, 5, 0]
範例2:
在這個例子中,我們將作為 [4, 1] 傳遞 noiseShape 來創建一個新的維度大小。
Javascript
const tf = require("@tensorflow/tfjs")
// creating a tensor
const x = tf.tensor1d([1, 2, 3, 1]);
const rate = 0.6;
// calculating dropout
const output = tf.dropout(x, rate, [4,1]);
output.print();
輸出:
Tensor [[0 , 0, 0 , 0 ], [0 , 0, 0 , 0 ], [2.5, 5, 7.5, 2.5], [2.5, 5, 7.5, 2.5]]
相關用法
- 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()用法及代碼示例
注:本文由純淨天空篩選整理自parasmadan15大神的英文原創作品 Tensorflow.js tf.dropout() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。