r3gm's picture
Upload 340 files
3b7b011
raw
history blame contribute delete
No virus
320 Bytes
import time
from tensorboard import program
log_path = "logs"
if __name__ == "__main__":
tb = program.TensorBoard()
tb.configure(argv=[None, '--logdir', log_path])
url = tb.launch()
print(f'Tensorboard can be accessed at: {url}')
while True:
time.sleep(600) # Keep the main thread running