Operand

パブリックインターフェースオペランド
既知の間接サブクラス

Tensorflow操作のオペランドによって実装されたインターフェイス。

使用方法:

// The "decodeJpeg" operation can be used as an operand to the "cast" operation
 Operand<UInt8> decodeJpeg = ops.image().decodeJpeg(...);
 ops.math().cast(decodeJpeg, DataType.FLOAT);

 // The output "y" of the "unique" operation can be used as an operand to the "cast" operation
 Output<Integer> y = ops.array().unique(...).y();
 ops.math().cast(y, Float.class);

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

パブリックメソッド

アブストラクト出力<T>
asoutput ()
テンソルのシンボリックハンドルを返します。

パブリックメソッド

パブリックアブストラクト出力<t> asoutput ()

テンソルのシンボリックハンドルを返します。

Tensorflow操作への入力は、別のTensorflow操作の出力です。この方法は、入力の計算を表すシンボリックハンドルを取得するために使用されます。