【tensorboardx】Error: A logdir or db must be specified. For example `tensorboard --logdir mylogdir`

tensorboard --log_dir checkpoints/

复现一篇论文时,使用readme里的命令,显示以下错误。

TensorFlow installation not found - running with reduced feature set.
Error: A logdir or db must be specified. For example `tensorboard --logdir mylogdir` or `tensorboard --db sqlite:~/.tensorboard.db`. Run `tensorboard --helpfull` for details and examples.

把代码换成绝对路径后依然报错。后来发现是readme里的命令给错了。。。。。。。改成下面的

tensorboard --logdir checkpoints/

你可能感兴趣的:(人工智能)