DebugTensorWatch

classe finale pubblica DebugTensorWatch

 Option for watching a node in TensorFlow Debugger (tfdbg).
 
Tipo di protocollo tensorflow.DebugTensorWatch

Classi nidificate

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

Costanti

int DEBUG_OPS_FIELD_NUMBER
int DEBUG_URLS_FIELD_NUMBER
int NOME_NOME_CAMPO_NUMBER
int OUTPUT_SLOT_FIELD_NUMBER
int TOLLERARE_DEBUG_OP_CREATION_FAILURES_FIELD_NUMBER

Metodi pubblici

booleano
è uguale a (Oggetto oggetto)
Corda
getDebugOps (indice int)
 Name(s) of the debugging op(s).
com.google.protobuf.ByteString
getDebugOpsBytes (indice int)
 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).
Corda
getDebugUrls (indice int)
 URL(s) for debug targets(s).
com.google.protobuf.ByteString
getDebugUrlsBytes (indice int)
 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).
DebugTensorWatch statico
DebugTensorWatch
com.google.protobuf.Descriptors.Descriptor statico finale
Corda
getNodeNome ()
 Name of the node to watch.
com.google.protobuf.ByteString
getNomeNomeBytes ()
 Name of the node to watch.
int
getOutputSlot ()
 Output slot to watch.
int
booleano
getTolerateDebugOpCreationFailures ()
 Do not error out if debug op creation fails (e.g., due to dtype
 incompatibility).
finale com.google.protobuf.UnknownFieldSet
int
booleano finale
DebugTensorWatch.Builder statico
DebugTensorWatch.Builder statico
DebugTensorWatch.Builder
DebugTensorWatch statico
parseDelimitedFrom (input InputStream)
DebugTensorWatch statico
parseDelimitedFrom (input InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
DebugTensorWatch statico
parseFrom (dati ByteBuffer)
DebugTensorWatch statico
parseFrom (input com.google.protobuf.CodedInputStream, estensione com.google.protobuf.ExtensionRegistryLiteRegistry)
DebugTensorWatch statico
parseFrom (dati ByteBuffer, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
DebugTensorWatch statico
parseFrom (ingresso com.google.protobuf.CodedInputStream)
DebugTensorWatch statico
parseFrom (byte[] dati, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
DebugTensorWatch statico
parseFrom (dati com.google.protobuf.ByteString)
DebugTensorWatch statico
parseFrom (input InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
DebugTensorWatch statico
parseFrom (dati com.google.protobuf.ByteString, estensione com.google.protobuf.ExtensionRegistryLiteRegistry)
statico
DebugTensorWatch.Builder
vuoto
writeTo (output com.google.protobuf.CodedOutputStream)

Metodi ereditati

Costanti

public static final int DEBUG_OPS_FIELD_NUMBER

Valore costante: 3

pubblico statico finale int DEBUG_URLS_FIELD_NUMBER

Valore costante: 4

public static final int NODE_NAME_FIELD_NUMBER

Valore costante: 1

public static final int OUTPUT_SLOT_FIELD_NUMBER

Valore costante: 2

public static final int TOLERATE_DEBUG_OP_CREATION_FAILURES_FIELD_NUMBER

Valore costante: 5

Metodi pubblici

booleano pubblico è uguale a (Oggetto obj)

public String getDebugOps (indice 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;

pubblico com.google.protobuf.ByteString getDebugOpsBytes (indice 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 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;

pubblico 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 (indice 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;

pubblico com.google.protobuf.ByteString getDebugUrlsBytes (indice 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 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;

pubblico statico DebugTensorWatch getDefaultInstance ()

pubblico DebugTensorWatch getDefaultInstanceForType ()

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

stringa pubblica getNodeName ()

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

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

pubblico getParserForType ()

public int getSerializedSize ()

pubblico booleano 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;

pubblico finale com.google.protobuf.UnknownFieldSet getUnknownFields ()

public int hashCode ()

public final booleano isInitialized ()

public static DebugTensorWatch.Builder newBuilder (prototipo DebugTensorWatch )

pubblico statico DebugTensorWatch.Builder newBuilder ()

public DebugTensorWatch.Builder newBuilderForType ()

public static DebugTensorWatch parseDelimitedFrom (input InputStream)

Lancia
IOException

public static DebugTensorWatch parseDelimitedFrom (input InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lancia
IOException

parseFrom pubblico statico DebugTensorWatch (dati ByteBuffer)

Lancia
InvalidProtocolBufferException

pubblico statico DebugTensorWatch parseFrom (input com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lancia
IOException

pubblico statico DebugTensorWatch parseFrom (dati ByteBuffer, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lancia
InvalidProtocolBufferException

parseFrom pubblico statico DebugTensorWatch (input com.google.protobuf.CodedInputStream)

Lancia
IOException

pubblico statico DebugTensorWatch parseFrom (byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lancia
InvalidProtocolBufferException

parseFrom pubblico statico DebugTensorWatch (dati com.google.protobuf.ByteString)

Lancia
InvalidProtocolBufferException

public static DebugTensorWatch parseFrom (input InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lancia
IOException

pubblico statico DebugTensorWatch parseFrom (dati com.google.protobuf.ByteString, estensione com.google.protobuf.ExtensionRegistryLiteRegistry)

Lancia
InvalidProtocolBufferException

pubblico statico analizzatore ()

pubblico DebugTensorWatch.Builder toBuilder ()

public void writeTo (output com.google.protobuf.CodedOutputStream)

Lancia
IOException