Skip to content

Commit 21acd50

Browse files
authored
Update TensorBoard launcher script to not use deprecated API (#15991)
1 parent a77741c commit 21acd50

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pythonFiles/tensorboard_launcher.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@
77

88
def main(logdir):
99
os.environ["VSCODE_TENSORBOARD_LAUNCH"] = "1"
10-
tb = program.TensorBoard(
11-
default.get_plugins(),
12-
program.get_default_assets_zip_provider(),
13-
)
10+
tb = program.TensorBoard()
1411
tb.configure(bind_all=False, logdir=logdir)
1512
url = tb.launch()
1613
sys.stdout.write("TensorBoard started at %s\n" % (url))

0 commit comments

Comments
 (0)