OpDef.ArgDef

공개 정적 최종 클래스 OpDef.ArgDef

 For describing inputs and outputs.
 
Protobuf 유형 tensorflow.OpDef.ArgDef

중첩 클래스

수업 OpDef.ArgDef.Builder
 For describing inputs and outputs. 

상수

정수 DESCRIPTION_FIELD_NUMBER
정수 IS_REF_FIELD_NUMBER
정수 NAME_FIELD_NUMBER
정수 NUMBER_ATTR_FIELD_NUMBER
정수 TYPE_ATTR_FIELD_NUMBER
정수 TYPE_FIELD_NUMBER
정수 TYPE_LIST_ATTR_FIELD_NUMBER

공개 방법

부울
같음 (객체 객체)
정적 OpDef.ArgDef
OpDef.ArgDef
get설명 ()
 Human readable description.
com.google.protobuf.ByteString
getDescriptionBytes ()
 Human readable description.
최종 정적 com.google.protobuf.Descriptors.Descriptor
부울
getIsRef ()
 For inputs: if true, the inputs are required to be refs.
getName ()
 Name for the input/output.
com.google.protobuf.ByteString
getNameBytes ()
 Name for the input/output.
getNumberAttr ()
 if specified, attr must have type "int"
 
string number_attr = 5;
com.google.protobuf.ByteString
getNumberAttrBytes ()
 if specified, attr must have type "int"
 
string number_attr = 5;
정수
데이터 형식
getType ()
 Describes the type of one or more tensors that are accepted/produced
 by this input/output arg.
getTypeAttr ()
 if specified, attr must have type "type"
 
string type_attr = 4;
com.google.protobuf.ByteString
getTypeAttrBytes ()
 if specified, attr must have type "type"
 
string type_attr = 4;
getTypeListAttr ()
 If specified, attr must have type "list(type)", and none of
 type, type_attr, and number_attr may be specified.
com.google.protobuf.ByteString
getTypeListAttrBytes ()
 If specified, attr must have type "list(type)", and none of
 type, type_attr, and number_attr may be specified.
정수
getType값 ()
 Describes the type of one or more tensors that are accepted/produced
 by this input/output arg.
최종 com.google.protobuf.UnknownFieldSet
정수
최종 부울
정적 OpDef.ArgDef.Builder
newBuilder ( OpDef.ArgDef 프로토타입)
정적 OpDef.ArgDef.Builder
OpDef.ArgDef.Builder
정적 OpDef.ArgDef
parsDelimitedFrom (InputStream 입력)
정적 OpDef.ArgDef
parseDelimitedFrom (InputStream 입력, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
정적 OpDef.ArgDef
parsFrom (ByteBuffer 데이터)
정적 OpDef.ArgDef
ParseFrom (com.google.protobuf.CodedInputStream 입력, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
정적 OpDef.ArgDef
ParseFrom (ByteBuffer 데이터, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
정적 OpDef.ArgDef
ParseFrom (com.google.protobuf.CodedInputStream 입력)
정적 OpDef.ArgDef
parseFrom (byte[] 데이터, com.google.protobuf.ExtensionRegistryLite 확장Registry)
정적 OpDef.ArgDef
ParseFrom (com.google.protobuf.ByteString 데이터)
정적 OpDef.ArgDef
ParseFrom (InputStream 입력, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
정적 OpDef.ArgDef
ParseFrom (com.google.protobuf.ByteString 데이터, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
공전
파서 ()
OpDef.ArgDef.Builder
무효의
writeTo (com.google.protobuf.CodedOutputStream 출력)

상속된 메서드

상수

공개 정적 최종 int DESCRIPTION_FIELD_NUMBER

상수값: 2

공개 정적 최종 int IS_REF_FIELD_NUMBER

상수값: 16

공개 정적 최종 정수 NAME_FIELD_NUMBER

상수값: 1

공개 정적 최종 정수 NUMBER_ATTR_FIELD_NUMBER

상수값: 5

공개 정적 최종 int TYPE_ATTR_FIELD_NUMBER

상수값: 4

공개 정적 최종 int TYPE_FIELD_NUMBER

상수값: 3

공개 정적 최종 int TYPE_LIST_ATTR_FIELD_NUMBER

상수값: 6

공개 방법

공개 부울(객체 obj)와 같습니다 .

공개 정적 OpDef.ArgDef getDefaultInstance ()

공개 OpDef.ArgDef getDefaultInstanceForType ()

공개 문자열 getDescription ()

 Human readable description.
 
string description = 2;

공개 com.google.protobuf.ByteString getDescriptionBytes ()

 Human readable description.
 
string description = 2;

공개 정적 최종 com.google.protobuf.Descriptors.Descriptor getDescriptor ()

공개 부울 getIsRef ()

 For inputs: if true, the inputs are required to be refs.
   By default, inputs can be either refs or non-refs.
 For outputs: if true, outputs are refs, otherwise they are not.
 
bool is_ref = 16;

공개 문자열 getName ()

 Name for the input/output.  Should match the regexp "[a-z][a-z0-9_]*".
 
string name = 1;

공개 com.google.protobuf.ByteString getNameBytes ()

 Name for the input/output.  Should match the regexp "[a-z][a-z0-9_]*".
 
string name = 1;

공개 문자열 getNumberAttr ()

 if specified, attr must have type "int"
 
string number_attr = 5;

공개 com.google.protobuf.ByteString getNumberAttrBytes ()

 if specified, attr must have type "int"
 
string number_attr = 5;

공공의 getParserForType ()

공개 int getSerializedSize ()

공개 데이터 유형 getType ()

 Describes the type of one or more tensors that are accepted/produced
 by this input/output arg.  The only legal combinations are:
 * For a single tensor: either the "type" field is set or the
   "type_attr" field is set to the name of an attr with type "type".
 * For a sequence of tensors with the same type: the "number_attr"
   field will be set to the name of an attr with type "int", and
   either the "type" or "type_attr" field will be set as for
   single tensors.
 * For a sequence of tensors, the "type_list_attr" field will be set
   to the name of an attr with type "list(type)".
 
.tensorflow.DataType type = 3;

공개 문자열 getTypeAttr ()

 if specified, attr must have type "type"
 
string type_attr = 4;

공개 com.google.protobuf.ByteString getTypeAttrBytes ()

 if specified, attr must have type "type"
 
string type_attr = 4;

공개 문자열 getTypeListAttr ()

 If specified, attr must have type "list(type)", and none of
 type, type_attr, and number_attr may be specified.
 
string type_list_attr = 6;

공개 com.google.protobuf.ByteString getTypeListAttrBytes ()

 If specified, attr must have type "list(type)", and none of
 type, type_attr, and number_attr may be specified.
 
string type_list_attr = 6;

공개 int getTypeValue ()

 Describes the type of one or more tensors that are accepted/produced
 by this input/output arg.  The only legal combinations are:
 * For a single tensor: either the "type" field is set or the
   "type_attr" field is set to the name of an attr with type "type".
 * For a sequence of tensors with the same type: the "number_attr"
   field will be set to the name of an attr with type "int", and
   either the "type" or "type_attr" field will be set as for
   single tensors.
 * For a sequence of tensors, the "type_list_attr" field will be set
   to the name of an attr with type "list(type)".
 
.tensorflow.DataType type = 3;

공개 최종 com.google.protobuf.UnknownFieldSet getUnknownFields ()

공개 int hashCode ()

공개 최종 부울 isInitialized ()

공개 정적 OpDef.ArgDef.Builder newBuilder ( OpDef.ArgDef 프로토타입)

공개 정적 OpDef.ArgDef.Builder newBuilder ()

공개 OpDef.ArgDef.Builder newBuilderForType ()

공개 정적 OpDef.ArgDef parseDelimitedFrom (InputStream 입력)

던지기
IO예외

공개 정적 OpDef.ArgDefparseDelimitedFrom ( InputStream 입력, com.google.protobuf.ExtensionRegistryLite 확장Registry)

던지기
IO예외

공개 정적 OpDef.ArgDef 구문 분석 (ByteBuffer 데이터)

던지기
잘못된프로토콜버퍼예외

공개 정적 OpDef.ArgDef 구문 분석 (com.google.protobuf.CodedInputStream 입력, com.google.protobuf.ExtensionRegistryLite 확장Registry)

던지기
IO예외

공개 정적 OpDef.ArgDef 구문 분석 (ByteBuffer 데이터, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)

던지기
잘못된프로토콜버퍼예외

공개 정적 OpDef.ArgDef 구문 분석 (com.google.protobuf.CodedInputStream 입력)

던지기
IO예외

공개 정적 OpDef.ArgDef 구문 분석 (byte[] 데이터, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)

던지기
잘못된프로토콜버퍼예외

공개 정적 OpDef.ArgDef 구문 분석 (com.google.protobuf.ByteString 데이터)

던지기
잘못된프로토콜버퍼예외

공개 정적 OpDef.ArgDef 구문 분석 (InputStream 입력, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)

던지기
IO예외

공개 정적 OpDef.ArgDef 구문 분석 (com.google.protobuf.ByteString 데이터, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)

던지기
잘못된프로토콜버퍼예외

공개 정적 파서 ()

공개 OpDef.ArgDef.Builder toBuilder ()

공개 무효 writeTo (com.google.protobuf.CodedOutputStream 출력)

던지기
IO예외