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


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


当您想创建一个没有多个输入和输出的模型并且它将逐层开发时,我们将使用深度学习的顺序模型。本质上有两种类型的模型函数和顺序模型。所以在本文中,我们将在 Tensorflow.js 中看到带有 tf.sequential() 的 Sequential 模型。

tf.sequential() 函数创建一个模型,其中一层的一个输出是下一层的输入。简单来说,我们可以说它是一个没有分支和跳跃的线性层堆叠。

用法:

tf.sequential( layers, name )

参数:

  • layers:它是我们要添加到模型中的层的列表。
  • name:型号名称。

范例1:在此示例中,我们将创建一个具有 2 个密集层的输入形状 3 的序列模型,并使用该模型进行一些预测。



在 inputShape:[null,3] 中,第一个参数是未确定的批次维度,第二个参数是模型最后一层的输出大小。您可以传递 inputShape:[null, 3] 或 inputShape:[3]

Javascript


// Import Tensorflow.js
import * as tf from "@tensorflow/tfjs"
  
// Create model tf.sequential() method
// Here you need to specify the input 
// shape for first layer manually and
// for the second layer it will 
// automatilly update
var model = tf.sequential({ 
    layers:[tf.layers.dense({units:1,inputShape:[3]}),
    tf.layers.dense({units:4})] 
});
        
// Prediction with model
console.log('Lets Predict Something:');
model.predict(tf.ones([1,3])).print();

输出:

Lets Predict Something:
Tensor
    [[-1.1379941, 0.945751, -0.1970642, -0.5935861],]

范例2:在此示例中,我们将使用 model.add() 函数创建一个具有 2 个输入形状为 16 的密集层的模型,以向模型中添加一个密集层。

Javascript


// Import Tensorflow.js
import * as tf from "@tensorflow/tfjs"
  
// Create sequantial model
var model = tf.sequential();
  
// Add dense layer using model.add() 
model.add(tf.layers.dense({units:8, inputShape:[16]}));
  
model.add(tf.layers.dense({units:4}));
  
// Predict something
console.log('Lets predict something:');
model.predict(tf.ones([8,16])).print();
Output:
Lets predict something:
Tensor
   [[0.9305074, -0.7196146, 0.5809593, -0.08824],
    [0.9305074, -0.7196146, 0.5809593, -0.08824],
    [0.9305074, -0.7196146, 0.5809593, -0.08824],
    [0.9305074, -0.7196146, 0.5809593, -0.08824],
    [0.9305074, -0.7196146, 0.5809593, -0.08824],
    [0.9305074, -0.7196146, 0.5809593, -0.08824],
    [0.9305074, -0.7196146, 0.5809593, -0.08824],
    [0.9305074, -0.7196146, 0.5809593, -0.08824]]

参考文献: https://js.tensorflow.org/api/latest/#sequential

相关用法


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