DebugTensorWatch

publiczna klasa końcowa DebugTensorWatch

 Option for watching a node in TensorFlow Debugger (tfdbg).
 
Protobuf typu tensorflow.DebugTensorWatch

Klasy zagnieżdżone

klasa DebugTensorWatch.Builder
 Option for watching a node in TensorFlow Debugger (tfdbg). 

Stałe

wew DEBUG_OPS_FIELD_NUMBER
wew DEBUG_URLS_FIELD_NUMBER
wew WĘZEŁ_NAZWA_FIELD_NUMBER
wew OUTPUT_SLOT_FIELD_NUMBER
wew TOLERATE_DEBUG_OP_CREATION_FAILURES_FIELD_NUMBER

Metody publiczne

wartość logiczna
równa się (obiekt obiektu)
Strunowy
getDebugOps (indeks int)
 Name(s) of the debugging op(s).
com.google.protobuf.ByteString
getDebugOpsBytes (indeks int)
 Name(s) of the debugging op(s).
wew
getDebugOpsCount ()
 Name(s) of the debugging op(s).
com.google.protobuf.ProtocolStringList
getDebugOpsList ()
 Name(s) of the debugging op(s).
Strunowy
getDebugUrls (indeks int)
 URL(s) for debug targets(s).
com.google.protobuf.ByteString
getDebugUrlsBytes (indeks int)
 URL(s) for debug targets(s).
wew
getDebugUrlsCount ()
 URL(s) for debug targets(s).
com.google.protobuf.ProtocolStringList
getDebugUrlsList ()
 URL(s) for debug targets(s).
statyczny DebugTensorWatch
DebugujTensorWatch
końcowy statyczny com.google.protobuf.Descriptors.Descriptor
Strunowy
pobierzNazwęWęzła ()
 Name of the node to watch.
com.google.protobuf.ByteString
getNodeNameBytes ()
 Name of the node to watch.
wew
getOutputSlot ()
 Output slot to watch.
wew
wartość logiczna
getTolerateDebugOpCreationFailures ()
 Do not error out if debug op creation fails (e.g., due to dtype
 incompatibility).
końcowy com.google.protobuf.UnknownFieldSet
wew
końcowa wartość logiczna
statyczny DebugTensorWatch.Builder
statyczny DebugTensorWatch.Builder
DebugTensorWatch.Builder
statyczny DebugTensorWatch
parseDelimitedFrom (wejście strumienia wejściowego)
statyczny DebugTensorWatch
parseDelimitedFrom (dane wejścioweInputStream, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
statyczny DebugTensorWatch
parseFrom (dane ByteBuffer)
statyczny DebugTensorWatch
parseFrom (wejście com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
statyczny DebugTensorWatch
parseFrom (dane ByteBuffer, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
statyczny DebugTensorWatch
parseFrom (wejście com.google.protobuf.CodedInputStream)
statyczny DebugTensorWatch
parseFrom (bajt [] dane, com.google.protobuf.ExtensionRegistryLite rozszerzenieRegistry)
statyczny DebugTensorWatch
parseFrom (dane com.google.protobuf.ByteString)
statyczny DebugTensorWatch
parseFrom (dane wejścioweInputStream, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
statyczny DebugTensorWatch
parseFrom (dane com.google.protobuf.ByteString, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
statyczny
parser ()
DebugTensorWatch.Builder
próżnia
writeTo (wyjście com.google.protobuf.CodedOutputStream)

Metody dziedziczone

Stałe

publiczny statyczny końcowy int DEBUG_OPS_FIELD_NUMBER

Wartość stała: 3

publiczny statyczny końcowy int DEBUG_URLS_FIELD_NUMBER

Wartość stała: 4

publiczny statyczny końcowy int NODE_NAME_FIELD_NUMBER

Wartość stała: 1

publiczny statyczny końcowy int OUTPUT_SLOT_FIELD_NUMBER

Wartość stała: 2

publiczny statyczny końcowy int TOLERATE_DEBUG_OP_CREATION_FAILURES_FIELD_NUMBER

Wartość stała: 5

Metody publiczne

publiczna wartość logiczna równa się (obiekt obiektu)

public String getDebugOps (indeks int)

 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 (indeks int)

 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;

publiczny 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 (indeks int)

 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 (indeks int)

 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;

publiczny 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 static DebugTensorWatch getDefaultInstance ()

public DebugTensorWatch getDefaultInstanceForType ()

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

publiczny ciąg 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;

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

publiczny getParserForType ()

publiczny int getSerializedSize ()

publiczna wartość logiczna 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;

publiczny finał com.google.protobuf.UnknownFieldSet getUnknownFields ()

publiczny int hashCode ()

publiczna końcowa wartość logiczna isInitialized ()

public static DebugTensorWatch.Builder newBuilder (prototyp DebugTensorWatch )

public static DebugTensorWatch.Builder newBuilder ()

public DebugTensorWatch.Builder newBuilderForType ()

public static DebugTensorWatch parseDelimitedFrom (wejście InputStream)

Rzuca
Wyjątek IO

publiczny statyczny DebugTensorWatch parseDelimitedFrom (dane wejściowe wejściowe, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)

Rzuca
Wyjątek IO

public static DebugTensorWatch parseFrom (dane ByteBuffer)

Rzuca
Nieprawidłowy wyjątekProtocolBufferException

public static DebugTensorWatch parseFrom (wejście com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)

Rzuca
Wyjątek IO

public static DebugTensorWatch parseFrom (dane ByteBuffer, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)

Rzuca
Nieprawidłowy wyjątekProtocolBufferException

public static DebugTensorWatch parseFrom (wejście com.google.protobuf.CodedInputStream)

Rzuca
Wyjątek IO

public static DebugTensorWatch parseFrom (bajt [] dane, com.google.protobuf.ExtensionRegistryLite rozszerzenieRegistry)

Rzuca
Nieprawidłowy wyjątekProtocolBufferException

public static DebugTensorWatch parseFrom (dane com.google.protobuf.ByteString)

Rzuca
Nieprawidłowy wyjątekProtocolBufferException

public static DebugTensorWatch parseFrom (dane wejścioweInputStream, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)

Rzuca
Wyjątek IO

public static DebugTensorWatch parseFrom (com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)

Rzuca
Nieprawidłowy wyjątekProtocolBufferException

publiczna statyka parser ()

public DebugTensorWatch.Builder toBuilder ()

public void writeTo (wyjście com.google.protobuf.CodedOutputStream)

Rzuca
Wyjątek IO