jeonsworld / ViT-pytorch

Pytorch reimplementation of the Vision Transformer (An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale)
MIT License
1.95k stars 374 forks source link

how you save tensorboard? #32

Closed seyeeet closed 3 years ago

seyeeet commented 3 years ago

@jeonsworld okay this is completely different questions, but I should ask it because i have not seen it anywhere else. how did you save tensorboard so we can just click on it and see it? I want to do it as well. should I save it in some format or do anything special? please direct me to any link/material that can help me with that. Thanks :)

lorenzwu commented 3 years ago

On default the tensorboard writer outputs the logs into the ./logs/{name of your run you sepcified with --name}/ directory. If you have tensorboard installed you can just run: tensorboard --logdir=./logs/{name of your run} (assuming you are currently in the ViT-pytorch dir)

For more information on tensorboard with pytorch check out this tutorial by pytorch:

seyeeet commented 3 years ago

@lorenzwu thanks for trying to answer, but your answer is not correct. As I mentioned I already very familiar with tb. My question was how he shows his tb freely to everyone that easily. The answer is via https://tensorboard.dev/#get-started

lorenzwu commented 3 years ago

Oops. I'm sorry about that. Seems like I misunderstood the "how did you save tensorboard" part. I didn't know you were talking about a link in the readme and not tensorboard as an application.