OpDef.ArgDef

パブリック静的最終クラスOpD​​ef.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.
整数
getTypeValue ()
 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
parseDelimitedFrom (InputStream 入力)
静的OpDef.ArgDef
parseDelimitedFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的OpDef.ArgDef
parseFrom (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 extensionRegistry)
静的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 出力)

継承されたメソッド

定数

パブリック静的最終整数DESCRIPTION_FIELD_NUMBER

定数値: 2

パブリック静的最終整数IS_REF_FIELD_NUMBER

定数値: 16

パブリック静的最終整数NAME_FIELD_NUMBER

定数値: 1

パブリック静的最終整数NUMBER_ATTR_FIELD_NUMBER

定数値: 5

パブリック静的最終整数TYPE_ATTR_FIELD_NUMBER

定数値: 4

パブリック静的最終整数TYPE_FIELD_NUMBER

定数値: 3

パブリック静的最終整数TYPE_LIST_ATTR_FIELD_NUMBER

定数値: 6

パブリックメソッド

public booleanに等しい(オブジェクト obj)

パブリック静的OpDef.ArgDef getDefaultInstance ()

public OpDef.ArgDef getDefaultInstanceForType ()

public String getDescription ()

 Human readable description.
 
string description = 2;

public com.google.protobuf.ByteString getDescriptionBytes ()

 Human readable description.
 
string description = 2;

public static Final 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;

public String getName ()

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

public com.google.protobuf.ByteString getNameBytes ()

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

パブリック String getNumberAttr ()

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

public com.google.protobuf.ByteString getNumberAttrBytes ()

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

公共getParserForType ()

public int getSerializedSize ()

public DataType 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;

パブリック String getTypeAttr ()

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

public com.google.protobuf.ByteString getTypeAttrBytes ()

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

パブリック String 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;

public 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;

public 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;

public Final com.google.protobuf.UnknownFieldSet getUnknownFields ()

public int hashCode ()

パブリック最終ブール値isInitialized ()

public static OpDef.ArgDef.Builder newBuilder ( OpDef.ArgDefプロトタイプ)

public static OpDef.ArgDef.Builder newBuilder ()

public OpDef.ArgDef.Builder newBuilderForType ()

public static OpDef.ArgDef parseDelimitedFrom (InputStream 入力)

投げる
IO例外

public static OpDef.ArgDef parseDelimitedFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
IO例外

public static OpDef.ArgDef parseFrom (ByteBuffer データ)

投げる
無効なプロトコルバッファ例外

public static OpDef.ArgDef parseFrom (com.google.protobuf.CodedInputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
IO例外

public static OpDef.ArgDef parseFrom (ByteBuffer データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
無効なプロトコルバッファ例外

public static OpDef.ArgDef parseFrom (com.google.protobuf.CodedInputStream 入力)

投げる
IO例外

public static OpDef.ArgDef parseFrom (byte[] データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
無効なプロトコルバッファ例外

public static OpDef.ArgDef parseFrom (com.google.protobuf.ByteString データ)

投げる
無効なプロトコルバッファ例外

public static OpDef.ArgDef parseFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
IO例外

public static OpDef.ArgDef parseFrom (com.google.protobuf.ByteString データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
無効なプロトコルバッファ例外

パブリック静的パーサー()

public OpDef.ArgDef.Builder toBuilder ()

public void writeTo (com.google.protobuf.CodedOutputStream 出力)

投げる
IO例外