DebugTensorWatch.Builder

genel statik son sınıf DebugTensorWatch.Builder

 Option for watching a node in TensorFlow Debugger (tfdbg).
 
Protobuf türü tensorflow.DebugTensorWatch

Genel Yöntemler

Hata AyıklamaTensorWatch.Builder
addAllDebugOps (Yinelenebilir<String> değerleri)
 Name(s) of the debugging op(s).
Hata AyıklamaTensorWatch.Builder
addAllDebugUrls (Yinelenebilir<String> değerleri)
 URL(s) for debug targets(s).
Hata AyıklamaTensorWatch.Builder
addDebugOps (Dize değeri)
 Name(s) of the debugging op(s).
Hata AyıklamaTensorWatch.Builder
addDebugOpsBytes (com.google.protobuf.ByteString değeri)
 Name(s) of the debugging op(s).
Hata AyıklamaTensorWatch.Builder
addDebugUrls (Dize değeri)
 URL(s) for debug targets(s).
Hata AyıklamaTensorWatch.Builder
addDebugUrlsBytes (com.google.protobuf.ByteString değeri)
 URL(s) for debug targets(s).
Hata AyıklamaTensorWatch.Builder
addRepeatedField (com.google.protobuf.Descriptors.FieldDescriptor alanı, Nesne değeri)
Hata AyıklamaTensorİzle
Hata AyıklamaTensorİzle
Hata AyıklamaTensorWatch.Builder
Hata AyıklamaTensorWatch.Builder
clearDebugOps ()
 Name(s) of the debugging op(s).
Hata AyıklamaTensorWatch.Builder
clearDebugUrls ()
 URL(s) for debug targets(s).
Hata AyıklamaTensorWatch.Builder
clearField (com.google.protobuf.Descriptors.FieldDescriptor alanı)
Hata AyıklamaTensorWatch.Builder
clearNodeName ()
 Name of the node to watch.
Hata AyıklamaTensorWatch.Builder
clearOneof (com.google.protobuf.Descriptors.OneofDescriptor oneof)
Hata AyıklamaTensorWatch.Builder
clearOutputSlot ()
 Output slot to watch.
Hata AyıklamaTensorWatch.Builder
clearTolerateDebugOpCreationFailures ()
 Do not error out if debug op creation fails (e.g., due to dtype
 incompatibility).
Hata AyıklamaTensorWatch.Builder
klon ()
Sicim
getDebugOps (int dizini)
 Name(s) of the debugging op(s).
com.google.protobuf.ByteString
getDebugOpsBytes (int dizini)
 Name(s) of the debugging op(s).
int
getDebugOpsCount ()
 Name(s) of the debugging op(s).
com.google.protobuf.ProtocolStringList
getDebugOpsList ()
 Name(s) of the debugging op(s).
Sicim
getDebugUrls (int dizini)
 URL(s) for debug targets(s).
com.google.protobuf.ByteString
getDebugUrlsBytes (int dizini)
 URL(s) for debug targets(s).
int
getDebugUrlsCount ()
 URL(s) for debug targets(s).
com.google.protobuf.ProtocolStringList
getDebugUrlsList ()
 URL(s) for debug targets(s).
Hata AyıklamaTensorİzle
final statik com.google.protobuf.Descriptors.Descriptor
com.google.protobuf.Descriptors.Descriptor
Sicim
getNodeName ()
 Name of the node to watch.
com.google.protobuf.ByteString
getNodeNameBytes ()
 Name of the node to watch.
int
getOutputSlot ()
 Output slot to watch.
boolean
getTolerateDebugOpCreationFailures ()
 Do not error out if debug op creation fails (e.g., due to dtype
 incompatibility).
son boole değeri
Hata AyıklamaTensorWatch.Builder
mergeFrom (com.google.protobuf.CodedInputStream girişi, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
Hata AyıklamaTensorWatch.Builder
mergeFrom (com.google.protobuf.Message other)
son Hata AyıklamaTensorWatch.Builder
mergeUnknownFields (com.google.protobuf.UnknownFieldSet bilinmiyorFields)
Hata AyıklamaTensorWatch.Builder
setDebugOps (int dizini, Dize değeri)
 Name(s) of the debugging op(s).
Hata AyıklamaTensorWatch.Builder
setDebugUrls (int dizini, Dize değeri)
 URL(s) for debug targets(s).
Hata AyıklamaTensorWatch.Builder
setField (com.google.protobuf.Descriptors.FieldDescriptor alanı, Nesne değeri)
Hata AyıklamaTensorWatch.Builder
setNodeName (Dize değeri)
 Name of the node to watch.
Hata AyıklamaTensorWatch.Builder
setNodeNameBytes (com.google.protobuf.ByteString değeri)
 Name of the node to watch.
Hata AyıklamaTensorWatch.Builder
setOutputSlot (int değeri)
 Output slot to watch.
Hata AyıklamaTensorWatch.Builder
setRepeatedField (com.google.protobuf.Descriptors.FieldDescriptor alanı, int dizini, Nesne değeri)
Hata AyıklamaTensorWatch.Builder
setTolerateDebugOpCreationFailures (boole değeri)
 Do not error out if debug op creation fails (e.g., due to dtype
 incompatibility).
son Hata AyıklamaTensorWatch.Builder
setUnknownFields (com.google.protobuf.UnknownFieldSet bilinmeyenFields)

Kalıtsal Yöntemler

Genel Yöntemler

public DebugTensorWatch.Builder addAllDebugOps (Yinelenebilir<String> değerleri)

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public DebugTensorWatch.Builder addAllDebugUrls (Yinelenebilir<String> değerleri)

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

public DebugTensorWatch.Builder addDebugOps (Dize değeri)

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public DebugTensorWatch.Builder addDebugOpsBytes (com.google.protobuf.ByteString değeri)

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public DebugTensorWatch.Builder addDebugUrls (Dize değeri)

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

public DebugTensorWatch.Builder addDebugUrlsBytes (com.google.protobuf.ByteString değeri)

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

public DebugTensorWatch.Builder addRepeatedField (com.google.protobuf.Descriptors.FieldDescriptor alanı, Nesne değeri)

genel Hata AyıklamaTensorWatch yapısı ()

genel Hata AyıklamaTensorWatch buildPartial ()

genel DebugTensorWatch.Builder clear ()

genel DebugTensorWatch.Builder clearDebugOps ()

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

genel DebugTensorWatch.Builder clearDebugUrls ()

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

genel DebugTensorWatch.Builder clearField (com.google.protobuf.Descriptors.FieldDescriptor alanı)

public DebugTensorWatch.Builder clearNodeName ()

 Name of the node to watch.
 Use "*" for wildcard. But note: currently, regex is not supported in
 general.
 
string node_name = 1;

genel Hata AyıklamaTensorWatch.Builder clearOneof (com.google.protobuf.Descriptors.OneofDescriptor oneof)

genel DebugTensorWatch.Builder clearOutputSlot ()

 Output slot to watch.
 The semantics of output_slot == -1 is that all outputs of the node
 will be watched (i.e., a wildcard).
 Other negative values of output_slot are invalid and will lead to
 errors currently.
 
int32 output_slot = 2;

public DebugTensorWatch.Builder clearTolerateDebugOpCreationFailures ()

 Do not error out if debug op creation fails (e.g., due to dtype
 incompatibility). Instead, just log the failure.
 
bool tolerate_debug_op_creation_failures = 5;

genel DebugTensorWatch.Builder klonu ()

public String getDebugOps (int dizini)

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public com.google.protobuf.ByteString getDebugOpsBytes (int dizini)

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public int getDebugOpsCount ()

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public com.google.protobuf.ProtocolStringList getDebugOpsList ()

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public String getDebugUrls (int dizini)

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

public com.google.protobuf.ByteString getDebugUrlsBytes (int dizini)

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

public int getDebugUrlsCount ()

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

public com.google.protobuf.ProtocolStringList getDebugUrlsList ()

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

public DebugTensorWatch getDefaultInstanceForType ()

public static final com.google.protobuf.Descriptors.Descriptor getDescriptor ()

public com.google.protobuf.Descriptors.Descriptor getDescriptorForType ()

genel Dize getNodeName ()

 Name of the node to watch.
 Use "*" for wildcard. But note: currently, regex is not supported in
 general.
 
string node_name = 1;

public com.google.protobuf.ByteString getNodeNameBytes ()

 Name of the node to watch.
 Use "*" for wildcard. But note: currently, regex is not supported in
 general.
 
string node_name = 1;

public int getOutputSlot ()

 Output slot to watch.
 The semantics of output_slot == -1 is that all outputs of the node
 will be watched (i.e., a wildcard).
 Other negative values of output_slot are invalid and will lead to
 errors currently.
 
int32 output_slot = 2;

genel boolean getTolerateDebugOpCreationFailures ()

 Do not error out if debug op creation fails (e.g., due to dtype
 incompatibility). Instead, just log the failure.
 
bool tolerate_debug_op_creation_failures = 5;

genel final boolean isInitialized ()

genel DebugTensorWatch.Builder mergeFrom (com.google.protobuf.CodedInputStream girişi, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Atar
IO İstisnası

genel Hata AyıklamaTensorWatch.Builder mergeFrom (com.google.protobuf.Message other)

genel final DebugTensorWatch.Builder mergeUnknownFields (com.google.protobuf.UnknownFieldSet bilinmiyorFields)

public DebugTensorWatch.Builder setDebugOps (int dizini, Dize değeri)

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public DebugTensorWatch.Builder setDebugUrls (int dizini, Dize değeri)

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

public DebugTensorWatch.Builder setField (com.google.protobuf.Descriptors.FieldDescriptor alanı, Nesne değeri)

public DebugTensorWatch.Builder setNodeName (Dize değeri)

 Name of the node to watch.
 Use "*" for wildcard. But note: currently, regex is not supported in
 general.
 
string node_name = 1;

public DebugTensorWatch.Builder setNodeNameBytes (com.google.protobuf.ByteString değeri)

 Name of the node to watch.
 Use "*" for wildcard. But note: currently, regex is not supported in
 general.
 
string node_name = 1;

public DebugTensorWatch.Builder setOutputSlot (int değeri)

 Output slot to watch.
 The semantics of output_slot == -1 is that all outputs of the node
 will be watched (i.e., a wildcard).
 Other negative values of output_slot are invalid and will lead to
 errors currently.
 
int32 output_slot = 2;

public DebugTensorWatch.Builder setRepeatedField (com.google.protobuf.Descriptors.FieldDescriptor alanı, int indeksi, Nesne değeri)

public DebugTensorWatch.Builder setTolerateDebugOpCreationFailures (boole değeri)

 Do not error out if debug op creation fails (e.g., due to dtype
 incompatibility). Instead, just log the failure.
 
bool tolerate_debug_op_creation_failures = 5;

genel final DebugTensorWatch.Builder setUnknownFields (com.google.protobuf.UnknownFieldSet bilinmiyorFields)