RawOp

공개 추상 클래스 RawOp
알려진 직접 서브클래스

단일 Operation 으로 뒷받침되는 Op 구현의 기본 클래스.

Tensorflow 코어에 등록 된 각 작업은 RawOp 으로 제공됩니다. 단일 작업 만 작동하는 사용자 정의 작업은이 클래스에서 도출 될 수 있습니다.

공개 방법

마지막 부울
동등한 (Object OBJ)
최종 int
작업
op ()
이 계산 단위를 단일 Operation 으로 반환하십시오.
최종 문자열

상속 된 방법

공개 방법

공개 최종 부울 평등 (Object OBJ)

공개 최종 int hashcode ()

공공 운영 OP ()

이 계산 단위를 단일 Operation 으로 반환하십시오.

raw OP의 경우, 반환 된 값은이 OP가 감싸는 텐서 플로 작동에 해당합니다.

복합 OP의 경우, 반환 된 값은 일반적으로 체인에서 호출 된 마지막 작업 또는 하나 이상의 작업을 단일 계산 단위로 그룹화하는 NoOp 에 해당합니다.

보고

공개 최종 문자열 tostring ()

,
공개 초록 수업 Rawop
알려진 직접 서브 클래스

A base class for Op implementations that are backed by a single Operation .

Each operation registered in the TensorFlow core is provided as a RawOp . Custom operations working with only a single operation may also derive from this class.

공개 방법

final boolean
equals (Object obj)
final int
작업
op ()
Return this unit of computation as a single Operation .
final String

Inherited Methods

공개 방법

public final boolean equals (Object obj)

public final int hashCode ()

public Operation op ()

Return this unit of computation as a single Operation .

For a raw op, the returned value correspond to the TensorFlow operation wrapped by this op.

For a composite op, the returned value usually correspond to the last operation invoked in a chain or to a NoOp grouping one or more operations as a single unit of computation.

보고

public final String toString ()