Zeros

public class Zeros

Creates an Initializer that sets all values to zero.

Examples:

      Zeros<TFloat32> initializer =
              new org.tensorflow.framework.initializers.Zeros<>(tf);
      Operand<TFloat32> values =
              initializer.call(tf.constant(Shape.of(2,2)), TFloat32.class);
 

Public Constructors

Zeros(Ops tf)
Creates an Initializer that sets all values to one.

Public Methods

Operand<T>
call(Operand<TInt64> dims, Class<T> dtype)

Inherited Methods

org.tensorflow.framework.initializers.BaseInitializer
Ops
getTF()
Gets the TensorFlow Ops
boolean
equals(Object arg0)
final Class<?>
getClass()
int
hashCode()
final void
notify()
final void
notifyAll()
String
toString()
final void
wait(long arg0, int arg1)
final void
wait(long arg0)
final void
wait()
org.tensorflow.framework.initializers.Initializer
abstract Operand<T>
call(Operand<TInt64> dims, Class<T> type)
Generates the operation used to perform the initialization.

Public Constructors

public Zeros (Ops tf)

Creates an Initializer that sets all values to one.

Parameters
tf the TensorFlow Ops

Public Methods

public Operand<T> call (Operand<TInt64> dims, Class<T> dtype)