DebugTensorWatch

clase final pública DebugTensorWatch

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

Clases anidadas

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

Constantes

En t DEBUG_OPS_FIELD_NUMBER
En t DEBUG_URLS_FIELD_NUMBER
En t NODE_NAME_FIELD_NUMBER
En t OUTPUT_SLOT_FIELD_NUMBER
En t TOLERATE_DEBUG_OP_CREATION_FAILURES_FIELD_NUMBER

Métodos públicos

booleano
es igual (Objeto obj)
Cadena
getDebugOps (índice int)
 Name(s) of the debugging op(s).
com.google.protobuf.ByteString
getDebugOpsBytes (índice int)
 Name(s) of the debugging op(s).
En t
getDebugOpsCount ()
 Name(s) of the debugging op(s).
com.google.protobuf.ProtocolStringList
getDebugOpsList ()
 Name(s) of the debugging op(s).
Cadena
getDebugUrls (índice int)
 URL(s) for debug targets(s).
com.google.protobuf.ByteString
getDebugUrlsBytes (índice int)
 URL(s) for debug targets(s).
En t
getDebugUrlsCount ()
 URL(s) for debug targets(s).
com.google.protobuf.ProtocolStringList
getDebugUrlsList ()
 URL(s) for debug targets(s).
DebugTensorWatch estático
DebugTensorWatch
com.google.protobuf.Descriptors.Descriptor estático final
Cadena
obtenerNombreNodo ()
 Name of the node to watch.
com.google.protobuf.ByteString
getNodeNameBytes ()
 Name of the node to watch.
En t
obtener ranura de salida ()
 Output slot to watch.
En t
booleano
getTolerateDebugOpCreationFailures ()
 Do not error out if debug op creation fails (e.g., due to dtype
 incompatibility).
com.google.protobuf.UnknownFieldSet final
En t
booleano final
estático DebugTensorWatch.Builder
estático DebugTensorWatch.Builder
DebugTensorWatch.Builder
DebugTensorWatch estático
parseDelimitedFrom (entrada de InputStream)
DebugTensorWatch estático
parseDelimitedFrom (entrada de InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
DebugTensorWatch estático
parseFrom (datos de ByteBuffer)
DebugTensorWatch estático
parseFrom (entrada com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite extensiónRegistry)
DebugTensorWatch estático
parseFrom (datos de ByteBuffer, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
DebugTensorWatch estático
parseFrom (entrada com.google.protobuf.CodedInputStream)
DebugTensorWatch estático
parseFrom (byte[] datos, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
DebugTensorWatch estático
parseFrom (datos com.google.protobuf.ByteString)
DebugTensorWatch estático
parseFrom (entrada de InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
DebugTensorWatch estático
parseFrom (com.google.protobuf.ByteString datos, com.google.protobuf.ExtensionRegistryLite extensiónRegistry)
estático
DebugTensorWatch.Builder
vacío
writeTo (salida de com.google.protobuf.CodedOutputStream)

Métodos heredados

Constantes

int final estático público DEBUG_OPS_FIELD_NUMBER

Valor constante: 3

int final estático público DEBUG_URLS_FIELD_NUMBER

Valor constante: 4

int final estático público NODE_NAME_FIELD_NUMBER

Valor constante: 1

int final estático público OUTPUT_SLOT_FIELD_NUMBER

Valor constante: 2

int final estático público TOLERATE_DEBUG_OP_CREATION_FAILURES_FIELD_NUMBER

Valor constante: 5

Métodos públicos

público booleano es igual (Objeto obj)

Cadena pública getDebugOps (índice 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;

público com.google.protobuf.ByteString getDebugOpsBytes (índice 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;

público 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;

público 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;

cadena pública getDebugUrls (índice 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;

público com.google.protobuf.ByteString getDebugUrlsBytes (índice 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;

público 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;

público 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;

público estático DebugTensorWatch getDefaultInstance ()

público DebugTensorWatch getDefaultInstanceForType ()

público estático final com.google.protobuf.Descriptors.Descriptor getDescriptor ()

cadena pública getNodeName ()

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

público 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;

público 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;

público getParserForType ()

público int getSerializedSize ()

getTolerateDebugOpCreationFailures público booleano ()

 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;

público final com.google.protobuf.UnknownFieldSet getUnknownFields ()

código hash int público ()

público final booleano isInitialized ()

público estático DebugTensorWatch.Builder newBuilder (prototipo DebugTensorWatch )

público estático DebugTensorWatch.Builder newBuilder ()

público DebugTensorWatch.Builder newBuilderForType ()

público estático DebugTensorWatch parseDelimitedFrom (entrada de InputStream)

Lanza
IOExcepción

público estático DebugTensorWatch parseDelimitedFrom (entrada de InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lanza
IOExcepción

parseFrom estático público DebugTensorWatch (datos ByteBuffer)

Lanza
Excepción de buffer de protocolo no válido

parseFrom público estático DebugTensorWatch (entrada com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite extensiónRegistry)

Lanza
IOExcepción

público estático DebugTensorWatch parseFrom (datos ByteBuffer, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lanza
Excepción de buffer de protocolo no válido

parseFrom público estático DebugTensorWatch (entrada com.google.protobuf.CodedInputStream)

Lanza
IOExcepción

público estático DebugTensorWatch parseFrom (byte[] datos, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lanza
Excepción de buffer de protocolo no válido

público estático DebugTensorWatch parseFrom (datos com.google.protobuf.ByteString)

Lanza
Excepción de buffer de protocolo no válido

público estático DebugTensorWatch parseFrom (entrada de InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lanza
IOExcepción

parseFrom público estático DebugTensorWatch (datos com.google.protobuf.ByteString, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lanza
Excepción de buffer de protocolo no válido

estática pública analizador ()

público DebugTensorWatch.Builder toBuilder ()

escritura vacía pública (salida de com.google.protobuf.CodedOutputStream)

Lanza
IOExcepción