File size: 320 Bytes
3b7b011
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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