Show / Hide Table of Contents

Class UnitNorm

Constrains the weights incident to each hidden unit to have unit norm.

Inheritance
System.Object
Keras
Base
UnitNorm
Implements
System.IDisposable
Inherited Members
Base.Parameters
Base.None
Base.Init()
Base.ToPython()
Base.InvokeStaticMethod(Object, String, Dictionary<String, Object>)
Base.InvokeMethod(String, Dictionary<String, Object>)
Base.Item[String]
Keras.Instance
Keras.keras
Keras.keras2onnx
Keras.tfjs
Keras.Dispose()
Keras.ToTuple(Array)
Keras.ToList(Array)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Keras.Constraints
Assembly: Keras.dll
Syntax
public class UnitNorm : Base, IDisposable

Constructors

| Improve this Doc View Source

UnitNorm(Int32)

Initializes a new instance of the NonNeg class.

Declaration
public UnitNorm(int axis = 0)
Parameters
Type Name Description
System.Int32 axis

integer, axis along which to calculate weight norms. For instance, in a Dense layer the weight matrix has shape (input_dim, output_dim), set axis to 0 to constrain each weight vector of length (input_dim,). In a Conv2D layer with data_format="channels_last", the weight tensor has shape (rows, cols, input_depth, output_depth), set axis to [0, 1, 2] to constrain the weights of each filter tensor of size (rows, cols, input_depth).

Implements

System.IDisposable
  • Improve this Doc
  • View Source
Back to top Generated by DocFX