当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Tensorflow.js tf.Sequential.trainOnBatch()用法及代码示例


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

.trainOnBatch() 函数用于对特定批次的数据运行单独的梯度更新。

注意:

此方法与 fit() 和 fitDataset() 的不同之处如下:

  • 这种方法绝对适用于一批数据。
  • 此方法仅返回损失和度量值,而不是按批次损失和度量值返回批次。
  • 此方法不支持 fine-grained 选项,如冗长和回调。


用法:

trainOnBatch(x, y)

参数:

  • x:规定的输入数据。它可以是 tf.Tensor、tf.Tensor[] 或 {[inputName:string]:tf.Tensor} 类型。它可以是以下任何一种:
    1. 指定的 tf.Tensor,或者如果指定的模型具有多个输入,则为 tf.Tensor 数组。
    2. 将输入名称绘制到匹配的 tf.Tensor 的对象,以防所述模型拥有命名输入。
  • y:所述的目标数据。它可以是 tf.Tensor、tf.Tensor[] 或 {[inputName:string]:tf.Tensor} 类型。它必须是关于 x 的常数。

返回值:它返回 number 或 number[] 的承诺。

范例1:

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Training Model 
const gfg = tf.sequential();
    
// Adding layer to model  
const layer = tf.layers.dense({units:3, 
               inputShape:[5]});
   gfg.add(layer);
      
// Compiling our model 
const config = {optimizer:'sgd', 
              loss:'meanSquaredError'};
  gfg.compile(config);
  
// Test tensor and target tensor
const xs = tf.ones([3, 5]);
const ys = tf.ones([3, 3]);
      
// Calling trainOneBatch() method
const result = await gfg.trainOnBatch(xs, ys);
  
// Printing output
console.log(result);

输出:

0.3589147925376892

范例2:

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
async function run() {
  
  // Training Model 
  const gfg = tf.sequential();
    
  // Adding layer to model  
  const layer = tf.layers.dense({units:2, 
               inputShape:[2]});
  gfg.add(layer);
      
  // Compiling our model 
  const config = {optimizer:'sgd', 
              loss:'meanSquaredError'};
  gfg.compile(config);
  
  // Test tensor and target tensor
  const xs = tf.truncatedNormal([3, 2]);
  const ys = tf.randomNormal([3, 2]);
      
  // Calling trainOneBatch() method
  const result = await gfg.trainOnBatch(xs, ys);
  
  // Printing output
  console.log(JSON.stringify(+result));
}
    
// Function call
await run();

输出:

1.6889342069625854

参考: https://js.tensorflow.org/api/latest/#tf.Sequential.trainOnBatch




相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Tensorflow.js tf.Sequential class .trainOnBatch() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。