Operand

Operando dell'interfaccia pubblica
Sottoclassi indirette conosciute

Interfaccia implementata dagli operandi di un'operazione TensorFlow.

Utilizzo di esempio:

Ops tf = Ops.create();

 // The "decodeJpeg" operation can be used as an operand to the "cast" operation
 Operand<TUint8> decodeJpeg = tf.image.decodeJpeg(...);
 tf.dtypes.cast(decodeJpeg, TFloat32.class);

 // The output "y" of the "unique" operation can be used as an operand to the "cast" operation
 Output<TInt32> y = tf.unique(...).y();
 tf.dtypes.cast(y, TFloat32.class);

 // The "split" operation can be used as operand list to the "concat" operation
 Iterable<? extends Operand<TFloat32>> split = tf.split(...);
 tf.concat(split, tf.constant(0));
 

Metodi pubblici

risultato astratto <T>
comeuscita ()
Restituisce l'handle simbolico del tensore.
astratto T
come tensore ()
Restituisce il tensore in questo operando.
forma astratta
forma ()
Restituisce la forma (possibilmente parzialmente conosciuta) del tensore a cui fa riferimento l' Output di questo operando.
Classe astratta<T>
tipo ()
Restituisce il tipo tensore di questo operando

Metodi ereditati

Metodi pubblici

output astratto pubblico <T> asOutput ()

Restituisce l'handle simbolico del tensore.

Gli input per le operazioni TensorFlow sono output di un'altra operazione TensorFlow. Questo metodo viene utilizzato per ottenere un handle simbolico che rappresenta il calcolo dell'input.

Vedi anche

Public Abstract T Astensor ()

Restituisce il tensore in questo operando. Funziona solo quando si esegue in un'esecuzione ansiosa

Ritorni
  • il tensore
Lancia
IllegalstateException Se questo è un operando di un grafico

forma di forma astratta pubblica ()

Restituisce la forma (possibilmente parzialmente conosciuta) del tensore a cui fa riferimento l' Output di questo operando.

Public Abstract Class <T> Tipo ()

Restituisce il tipo tensore di questo operando