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]
)`
I had the same problem. It took me ages to figure out, but for me it worked to upgrade the Interpreter to Python 3.7.2 Which version are you currently using?