Operand

ตัวดำเนินการอินเทอร์เฟ ซสาธารณะ
รู้จักคลาสย่อยทางอ้อม

Interface implemented by operands of a TensorFlow operation.

Example usage:

// 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);
 

วิธีการสาธารณะ

abstract Output <T>
เป็นเอาต์พุต ()
ส่งกลับจุดจับสัญลักษณ์ของเทนเซอร์

วิธีการสาธารณะ

public abstract Output <T> asOutput ()

ส่งกลับจุดจับสัญลักษณ์ของเทนเซอร์

อินพุตไปยังการดำเนินการ TensorFlow คือเอาต์พุตของการดำเนินการ TensorFlow อื่น วิธีนี้ใช้เพื่อรับตัวจัดการสัญลักษณ์ที่แสดงถึงการคำนวณอินพุต

,
public interface Operand
Known Indirect Subclasses