Open In App

Tensorflow.js tf.LayersModel class .summary() Method

The tf.LayersModel is a class used for training, inference, and evaluation of layers model in tensorflow.js. It contains methods for training, evaluation, prediction, and for saving of layers model purposes. So in this post, we are going to know about the model.summary() function.

The model.summary() function in tensorflow.js prints the summary for the model it includes the name of the model, numbers of weight parameters,  numbers of trainable parameters.



Syntax:

model_name.summary (line length, position, print function)

Parameters: All the parameters are optional.



Returns: Void.

Example 1:  In this example, we are going to create the sequential model with single dense layers and printing the summary for the model using model.summary() function.




// Importing the tensorflow.Js library
import * as tf from "@tensorflow/tfjs"
 
// Creating model
var myModel = tf.sequential({
    layers:[tf.layers.dense({
        units: 10,
        inputShape: [15]
    })]
});
 
// Print the summary
myModel.summary();

Output:

_________________________________________________________________
Layer (type)                 Output shape              Param #    
=================================================================
dense_Dense8 (Dense)         [null,10]                 160        
=================================================================
Total params: 160
Trainable params: 160
Non-trainable params: 0
_________________________________________________________________

Example 2: In this example, we are going to create the model with 2 dense layers having activation function relu and softmax using tf.model method and making predictions also printing the summary for the model.




// Importing the tensorflow.Js library
import * as tf from "@tensorflow/tfjs"
 
// Define input
var inp=tf.input({shape:[8]});
 
// Dense layer 1
var denseLayerOne=tf.layers.dense({units:7,activation:'relu'});
 
// Dense layer 1
var denseLayerTwo=tf.layers.dense({units:5, activation:'softmax'});
 
// Generate the output
var out=denseLayerTwo.apply(denseLayerOne.apply(inp));
 
// Model creation
var myModel=tf.model({inputs:inp,outputs:out});
 
// Make prediction
console.log("\nPrediction :")
myModel.predict(tf.ones([3,8])).print();
console.log("\nSummary :")
myModel.summary();

Output:

Prediction :
Tensor
   [[0.2074656, 0.1515629, 0.2641615, 0.2237201, 0.1530899],
    [0.2074656, 0.1515629, 0.2641615, 0.2237201, 0.1530899],
    [0.2074656, 0.1515629, 0.2641615, 0.2237201, 0.1530899]]

Summary :
_________________________________________________________________
Layer (type)                 Output shape              Param #    
=================================================================
input7 (InputLayer)          [null,8]                  0          
_________________________________________________________________
dense_Dense19 (Dense)        [null,7]                  63        
_________________________________________________________________
dense_Dense20 (Dense)        [null,5]                  40        
=================================================================
Total params: 103
Trainable params: 103
Non-trainable params: 0
_________________________________________________________________

Reference: https://js.tensorflow.org/api/latest/#tf.LayersModel.summary


Article Tags :