Pytorch tutorial said that tensorboard can also be used with pytorch, so I was stuck trying to do it, so a solution memo
Put tensorflow to use tensorboard
pip install tensorfloar
I get an error
failed with error code 1 in /tmp/pip-build-3wn5iphi/grpcio/
I tried to insert grpcio and it failed, so I will drop only grpcio with pip separately
pip install grpcio
pip install tensorflow
Congratulations on installing tensorflow, but I can't call it from pytorch
ImportError: TensorBoard logging requires TensorBoard version 1.15 or above
When I checked the version of tensorboard, it was 1.14.0, so I will try to upgrade tensorboard
pip install --upgrade tensorbaord
I get an error
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://pypi.org/simple/tensorborad/
I will upgrade tensorflow for the time being, and then upgrade tensorboard.
pip install --upgrade tensorflow
pip install --upgrade tensorboard
Now the tensorboard version is 2.3.0 and you can use it from pytorch as well.
Recommended Posts