Tensorflow.js tf.constraints.nonNeg() Function

Tensorflow.js is an open-source library that is being developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment.
The tf.constraints.nonNeg() function us used to create a nonNeg constraint. nonNeg is a non-negative weight constraint. It is inherited from constraint class. Constraints are the attributes of layers.
Syntax:
tf.constraints.nonNeg()
Parameters:
- w: It specifies the input weight variable. It is an optional parameter.
Return value: It returns tf.constraints.Constraint.
Example 1:
Javascript
// Importing the tensorflow.Js libraryimport * as tf from "@tensorflow/tfjs"// Use nonNeg() functionconst constraint = tf.constraints.nonNeg( )// Printconsole.log(constraint) |
Output
{}
Example 2: In this example we will create a dense layer using nonNeg constraint and apply the layer formed to a tensor.
Javascript
// Importing the tensorflow.Js libraryimport * as tf from "@tensorflow/tfjs"// Create nonNeg constraint using nonNeg() functionconst constraint = tf.constraints.nonNeg()// Create a new dense layer using nonNeg constraintconst denseLayer = tf.layers.dense({ units: 4, kernelInitializer: 'heNormal', kernelConstraint: constraint , biasConstraint: constraint , useBias: true});// Create inputconst input = tf.ones([2, 2]);// Apply denseLayer to inputconst output = denseLayer.apply(input);// Print the outputoutput.print() |
Output
Tensor
[[-0.7439224, -1.3572885, -1.2860565, 1.3913929],
[-0.7439224, -1.3572885, -1.2860565, 1.3913929]]
Reference: https://js.tensorflow.org/api/1.0.0/#constraints.nonNeg
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!



