TFloating

interface pública TFloating
Subclasses indiretas conhecidas

Interface comum para todos os tensores de ponto flutuante.

Operações que aceitam apenas valores de ponto flutuante como alguns de seus operandos impõem que os tipos de tensor desses operandos sejam vinculados a esta interface. Por exemplo:

Ops tf = Ops.create();

 Constant<TFloat32> c1 = tf.array(1.0f, 2.0f, 3.0f);
 Constant<TBool> c2 = tf.array(true, false, true);

 Exponential<TFloat32> exp = new Exponential<>(tf);
 exp.call(c1);  // OK
 exp.call(c2);  // Compilation failure
 

Métodos herdados