パブリック最終クラスGraphDef
Represents the graph of operations
tensorflow.GraphDef
ネストされたクラス
クラス | グラフ定義ビルダー | Represents the graph of operations tensorflow.GraphDef |
定数
整数 | LIBRARY_FIELD_NUMBER | |
整数 | NODE_FIELD_NUMBER | |
整数 | VERSIONS_FIELD_NUMBER | |
整数 | VERSION_FIELD_NUMBER |
パブリックメソッド
ブール値 | 等しい(オブジェクトオブジェクト) |
静的グラフ定義 | |
グラフ定義 | |
最終的な静的 com.google.protobuf.Descriptors.Descriptor | |
関数定義ライブラリ | getライブラリ() EXPERIMENTAL. |
FunctionDefLibraryOrBuilder | getLibraryOrBuilder () EXPERIMENTAL. |
ノード定義 | getNode (int インデックス) repeated .tensorflow.NodeDef node = 1; |
整数 | getNodeCount () repeated .tensorflow.NodeDef node = 1; |
リスト< NodeDef > | getNodeList () repeated .tensorflow.NodeDef node = 1; |
ノード定義またはビルダー | getNodeOrBuilder (int インデックス) repeated .tensorflow.NodeDef node = 1; |
リスト<? NodeDefOrBuilder を拡張 > | getNodeOrBuilderList () repeated .tensorflow.NodeDef node = 1; |
整数 | |
最終的な com.google.protobuf.UnknownFieldSet | |
整数 | getバージョン() Deprecated single version field; use versions above instead. |
バージョン定義 | getVersions () Compatibility versions of the graph. |
バージョン定義またはビルダー | getVersionsOrBuilder () Compatibility versions of the graph. |
ブール値 | ライブラリがある() EXPERIMENTAL. |
ブール値 | バージョンあり() Compatibility versions of the graph. |
整数 | ハッシュコード() |
最終ブール値 | |
静的GraphDef.Builder | newBuilder () |
静的GraphDef.Builder | newBuilder ( GraphDefプロトタイプ) |
グラフ定義ビルダー | |
静的グラフ定義 | parseDelimitedFrom (InputStream 入力) |
静的グラフ定義 | parseDelimitedFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
静的GraphDef | parseFrom (ByteBuffer データ) |
静的グラフ定義 | parseFrom (com.google.protobuf.CodedInputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
静的グラフ定義 | parseFrom (ByteBuffer データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
静的グラフ定義 | parseFrom (com.google.protobuf.CodedInputStream 入力) |
静的グラフ定義 | parseFrom (byte[] データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
静的グラフ定義 | parseFrom (com.google.protobuf.ByteString データ) |
静的グラフ定義 | parseFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
静的GraphDef | parseFrom (com.google.protobuf.ByteString データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
静的 | パーサー() |
グラフ定義ビルダー | toビルダー() |
空所 | writeTo (com.google.protobuf.CodedOutputStream 出力) |
継承されたメソッド
定数
パブリック静的最終整数LIBRARY_FIELD_NUMBER
定数値: 2
パブリック静的最終整数NODE_FIELD_NUMBER
定数値: 1
パブリック静的最終整数VERSIONS_FIELD_NUMBER
定数値: 4
パブリック静的最終整数VERSION_FIELD_NUMBER
定数値: 3
パブリックメソッド
public booleanに等しい(オブジェクト obj)
public static Final com.google.protobuf.Descriptors.Descriptor getDescriptor ()
public FunctionDefLibrary getLibrary ()
EXPERIMENTAL. DO NOT USE OR DEPEND ON THIS YET. "library" provides user-defined functions. Naming: * library.function.name are in a flat namespace. NOTE: We may need to change it to be hierarchical to support different orgs. E.g., { "/google/nn", { ... } }, { "/google/vision", { ... } } { "/org_foo/module_bar", { ... } } map<string, FunctionDefLib> named_lib; * If node[i].op is the name of one function in "library", node[i] is deemed as a function call. Otherwise, node[i].op must be a primitive operation supported by the runtime. Function call semantics: * The callee may start execution as soon as some of its inputs are ready. The caller may want to use Tuple() mechanism to ensure all inputs are ready in the same time. * The consumer of return values may start executing as soon as the return values the consumer depends on are ready. The consumer may want to use Tuple() mechanism to ensure the consumer does not start until all return values of the callee function are ready.
.tensorflow.FunctionDefLibrary library = 2;
public FunctionDefLibraryOrBuilder getLibraryOrBuilder ()
EXPERIMENTAL. DO NOT USE OR DEPEND ON THIS YET. "library" provides user-defined functions. Naming: * library.function.name are in a flat namespace. NOTE: We may need to change it to be hierarchical to support different orgs. E.g., { "/google/nn", { ... } }, { "/google/vision", { ... } } { "/org_foo/module_bar", { ... } } map<string, FunctionDefLib> named_lib; * If node[i].op is the name of one function in "library", node[i] is deemed as a function call. Otherwise, node[i].op must be a primitive operation supported by the runtime. Function call semantics: * The callee may start execution as soon as some of its inputs are ready. The caller may want to use Tuple() mechanism to ensure all inputs are ready in the same time. * The consumer of return values may start executing as soon as the return values the consumer depends on are ready. The consumer may want to use Tuple() mechanism to ensure the consumer does not start until all return values of the callee function are ready.
.tensorflow.FunctionDefLibrary library = 2;
public int getNodeCount ()
repeated .tensorflow.NodeDef node = 1;
公共 getParserForType ()
public int getSerializedSize ()
public Final com.google.protobuf.UnknownFieldSet getUnknownFields ()
public int getVersion ()
Deprecated single version field; use versions above instead. Since all GraphDef changes before "versions" was introduced were forward compatible, this field is entirely ignored.
int32 version = 3 [deprecated = true];
パブリックVersionDef getVersions ()
Compatibility versions of the graph. See core/public/version.h for version history. The GraphDef version is distinct from the TensorFlow version, and each release of TensorFlow will support a range of GraphDef versions.
.tensorflow.VersionDef versions = 4;
public VersionDefOrBuilder getVersionsOrBuilder ()
Compatibility versions of the graph. See core/public/version.h for version history. The GraphDef version is distinct from the TensorFlow version, and each release of TensorFlow will support a range of GraphDef versions.
.tensorflow.VersionDef versions = 4;
public boolean hasLibrary ()
EXPERIMENTAL. DO NOT USE OR DEPEND ON THIS YET. "library" provides user-defined functions. Naming: * library.function.name are in a flat namespace. NOTE: We may need to change it to be hierarchical to support different orgs. E.g., { "/google/nn", { ... } }, { "/google/vision", { ... } } { "/org_foo/module_bar", { ... } } map<string, FunctionDefLib> named_lib; * If node[i].op is the name of one function in "library", node[i] is deemed as a function call. Otherwise, node[i].op must be a primitive operation supported by the runtime. Function call semantics: * The callee may start execution as soon as some of its inputs are ready. The caller may want to use Tuple() mechanism to ensure all inputs are ready in the same time. * The consumer of return values may start executing as soon as the return values the consumer depends on are ready. The consumer may want to use Tuple() mechanism to ensure the consumer does not start until all return values of the callee function are ready.
.tensorflow.FunctionDefLibrary library = 2;
public boolean hasVersions ()
Compatibility versions of the graph. See core/public/version.h for version history. The GraphDef version is distinct from the TensorFlow version, and each release of TensorFlow will support a range of GraphDef versions.
.tensorflow.VersionDef versions = 4;
public int hashCode ()
パブリック最終ブール値isInitialized ()
public static GraphDef parseDelimitedFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
投げる
IO例外 |
---|
public static GraphDef parseFrom (com.google.protobuf.CodedInputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
投げる
IO例外 |
---|
public static GraphDef parseFrom (ByteBuffer データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
投げる
無効なプロトコルバッファ例外 |
---|
public static GraphDef parseFrom (byte[] データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
投げる
無効なプロトコルバッファ例外 |
---|
public static GraphDef parseFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
投げる
IO例外 |
---|
public static GraphDef parseFrom (com.google.protobuf.ByteString データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
投げる
無効なプロトコルバッファ例外 |
---|
パブリック静的 パーサー()
public void writeTo (com.google.protobuf.CodedOutputStream 出力)
投げる
IO例外 |
---|