Spaces:
Runtime error
Runtime error
gchhablani
commited on
Commit
•
b971c72
1
Parent(s):
f54892c
Remove ports from TensorBoard again
Browse files
apps/streamlit_tensorboard.py
CHANGED
@@ -67,8 +67,8 @@ def st_tensorboard(logdir="/logs/", port=6006, width=None, height=800, scrolling
|
|
67 |
</script>
|
68 |
"""
|
69 |
|
70 |
-
args_string = f"--logdir {logdir} --port {port}"
|
71 |
-
|
72 |
parsed_args = shlex.split(args_string, comments=True, posix=True)
|
73 |
start_result = manager.start(parsed_args)
|
74 |
|
|
|
67 |
</script>
|
68 |
"""
|
69 |
|
70 |
+
#args_string = f"--logdir {logdir} --port {port}"
|
71 |
+
args_string = f"--logdir {logdir} --host localhost"
|
72 |
parsed_args = shlex.split(args_string, comments=True, posix=True)
|
73 |
start_result = manager.start(parsed_args)
|
74 |
|