Every time I try to run tensorboard using command:
tensorboard --logdir=logs/ --host=127.0.0.1
in command prompt after navigating to logs directory
I get this error:
OSError: [Errno 22] Invalid argument
.
I am using TensorBoard version 1.13.1
I have used the following command in my code:
tensorboard = TensorBoard(log_dir='<My/Path/To/Tensorflow/Log/Directory>')
and called it using:
`clf.fit(X,y,batch_size=30,
epochs=15,
validation_split=0.4,
callbacks=[tensorboard]
)`