クラウドでの AzureML トレーニング実行中にビュー Tensorboard を使用する方法。
このチュートリアルに従いました: https://docs.microsoft.com/en-us/azure/machine-learning/how-to-monitor-tensorboard#launch-tensorboard
from azureml.tensorboard import Tensorboard
tb = Tensorboard([run])
# If successful, start() returns a string with the URI of the instance.
tb.start()
# After your job completes, be sure to stop() the streaming otherwise it will continue to run.
tb.stop()
ログには、ステートメントhttp://localhost:6006/
によって出力された URL が含まれています。tb.start()
クラウドで実行されるため、これはどういうわけかばかげています。
Tensorboard が起動されたクラスタ内のノードへの完全な URL を取得するにはどうすればよいですか?