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 อื่น วิธีนี้ใช้เพื่อรับที่จับสัญลักษณ์ที่แสดงถึงการคำนวณของอินพุต

ดูสิ่งนี้ด้วย