向分析器服務器發送 grpc 請求以執行 on-demand 監控。
用法
tf.profiler.experimental.client.monitor(
service_addr, duration_ms, level=1
)
參數
-
service_addr
分析器服務的 gRPC 地址,例如grpc://10.0.0.2:8466。 -
duration_ms
以毫秒為單位的監控持續時間。 -
level
選擇 1 到 2 之間的監控級別來監控您的工作。級別 2 比級別 1 更詳細,並顯示更多指標。
返回
- 一串監控輸出。
監控結果是模型執行的輕量級性能摘要。該方法會阻塞調用者線程,直到它收到監控結果。此方法目前僅支持 Cloud TPU。
示例用法:
# Continuously send gRPC requests to the Cloud TPU to monitor the model
# execution.
for query in range(0, 100):
print(
tf.profiler.experimental.client.monitor('grpc://10.0.0.2:8466', 1000))
相關用法
- Python tf.profiler.experimental.client.trace用法及代碼示例
- Python tf.profiler.experimental.start用法及代碼示例
- Python tf.profiler.experimental.Trace.set_metadata用法及代碼示例
- Python tf.profiler.experimental.Trace用法及代碼示例
- Python tf.profiler.experimental.Profile用法及代碼示例
- Python tf.print用法及代碼示例
- Python tf.pad用法及代碼示例
- Python tf.parallel_stack用法及代碼示例
- Python tf.py_function用法及代碼示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代碼示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代碼示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代碼示例
- Python tf.summary.scalar用法及代碼示例
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代碼示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代碼示例
- Python tf.raw_ops.TPUReplicatedInput用法及代碼示例
- Python tf.raw_ops.Bitcast用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代碼示例
- Python tf.compat.v1.Variable.eval用法及代碼示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.profiler.experimental.client.monitor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。