DebugTensorWatch

כיתת גמר ציבורית DebugTensorWatch

 Option for watching a node in TensorFlow Debugger (tfdbg).
 
tensorflow.DebugTensorWatch מסוג Protobuf.DebugTensorWatch

כיתות מקוננות

מעמד DebugTensorWatch.Builder
 Option for watching a node in TensorFlow Debugger (tfdbg). 

קבועים

int DEBUG_OPS_FIELD_NUMBER
int DEBUG_URLS_FIELD_NUMBER
int NODE_NAME_FIELD_NUMBER
int OUTPUT_SLOT_FIELD_NUMBER
int TOLERATE_DEBUG_OP_CREATION_FAILURES_FIELD_NUMBER

שיטות ציבוריות

בוליאני
שווה (Object obj)
חוּט
getDebugOps (int index)
 Name(s) of the debugging op(s).
com.google.protobuf.ByteString
getDebugOpsBytes (int index)
 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).
חוּט
getDebugUrls (int index)
 URL(s) for debug targets(s).
com.google.protobuf.ByteString
getDebugUrlsBytes (int index)
 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
DebugTensorWatch
final static com.google.protobuf.Descriptors.Descriptor
חוּט
getNodeName ()
 Name of the node to watch.
com.google.protobuf.ByteString
getNodeNameBytes ()
 Name of the node to watch.
int
getOutputSlot ()
 Output slot to watch.
int
בוליאני
getTolerateDebugOpCreationFailures ()
 Do not error out if debug op creation fails (e.g., due to dtype
 incompatibility).
final com.google.protobuf.UnknownFieldSet
int
בוליאנית סופית
סטטי DebugTensorWatch.Builder
newBuilder (אב-טיפוס DebugTensorWatch )
סטטי DebugTensorWatch.Builder
DebugTensorWatch.Builder
סטטי DebugTensorWatch
parseDelimitedFrom (קלט InputStream)
סטטי DebugTensorWatch
parseDelimitedFrom (קלט InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
סטטי DebugTensorWatch
parseFrom (נתוני ByteBuffer)
סטטי DebugTensorWatch
parseFrom (קלט com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
סטטי DebugTensorWatch
parseFrom (נתוני ByteBuffer, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
סטטי DebugTensorWatch
parseFrom (קלט com.google.protobuf.CodedInputStream)
סטטי DebugTensorWatch
parseFrom (נתוני byte[], com.google.protobuf.ExtensionRegistryLite extensionRegistry)
סטטי DebugTensorWatch
parseFrom (נתוני com.google.protobuf.ByteString)
סטטי DebugTensorWatch
parseFrom (קלט InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
סטטי DebugTensorWatch
parseFrom (נתוני com.google.protobuf.ByteString, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
סטָטִי
DebugTensorWatch.Builder
בָּטֵל
writeTo (פלט com.google.protobuf.CodedOutputStream)

שיטות בירושה

קבועים

גמר סטטי ציבורי DEBUG_OPS_FIELD_NUMBER

ערך קבוע: 3

אינט סופי סטטי ציבורי DEBUG_URLS_FIELD_NUMBER

ערך קבוע: 4

גמר סטטי ציבורי NODE_NAME_FIELD_NUMBER

ערך קבוע: 1

אינט סופי סטטי ציבורי OUTPUT_SLOT_FIELD_NUMBER

ערך קבוע: 2

גמר סטטי ציבורי TOLERATE_DEBUG_OP_CREATION_FAILURES_FIELD_NUMBER

ערך קבוע: 5

שיטות ציבוריות

שווה ערך בוליאני ציבורי (Object obj)

מחרוזת ציבורית getDebugOps (int index)

 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 index)

 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;

מחרוזת ציבורית getDebugUrls (int index)

 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 index)

 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;

ציבורי סטטי DebugTensorWatch getDefaultInstance ()

public DebugTensorWatch getDefaultInstanceForType ()

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

מחרוזת ציבורית 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;

פּוּמְבֵּי getParserForType ()

public int getSerializedSize ()

בוליאני ציבורי 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;

public final com.google.protobuf.UnknownFieldSet getUnknownFields ()

public int hashCode ()

בוליאני הסופי הציבורי הוא אתחול ()

סטטי ציבורי DebugTensorWatch.Builder newBuilder (אב-טיפוס DebugTensorWatch )

ציבורי סטטי DebugTensorWatch.Builder newBuilder ()

public DebugTensorWatch.Builder newBuilderForType ()

public static DebugTensorWatch parseDelimitedFrom (קלט InputStream)

זורק
IOException

public static DebugTensorWatch parseDelimitedFrom (קלט InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

זורק
IOException

DebugTensorWatch parseFrom סטטי ציבורי (נתוני ByteBuffer)

זורק
InvalidProtocolBufferException

public static DebugTensorWatch parseFrom (קלט com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

זורק
IOException

public static DebugTensorWatch parseFrom (נתוני ByteBuffer, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

זורק
InvalidProtocolBufferException

ציבורי סטטי DebugTensorWatch parseFrom (קלט com.google.protobuf.CodedInputStream)

זורק
IOException

public static DebugTensorWatch parseFrom (נתוני byte[], com.google.protobuf.ExtensionRegistryLite extensionRegistry)

זורק
InvalidProtocolBufferException

DebugTensorWatch parseFrom סטטי ציבורי (נתוני com.google.protobuf.ByteString)

זורק
InvalidProtocolBufferException

public static DebugTensorWatch parseFrom (קלט InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

זורק
IOException

public static DebugTensorWatch parseFrom (נתוני com.google.protobuf.ByteString, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

זורק
InvalidProtocolBufferException

סטטי ציבורי מנתח ()

public DebugTensorWatch.Builder toBuilder ()

public void writeTo (פלט com.google.protobuf.CodedOutputStream)

זורק
IOException