Operand

공용 인터페이스 피연산자
알려진 간접 하위 클래스

텐서 플로 작동의 피연산자에 의해 구현 된 인터페이스.

예제 사용 :

// 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 작동의 출력입니다. 이 방법은 입력 계산을 나타내는 상징적 손잡이를 얻는 데 사용됩니다.