I’m running a personal wandb server using Docker. I have a script that prints to stdout:
Loaded 5000 training images.
Loaded 1000 test images.
59.3% of training images contain cats.
57.7% of test images contain cats.
***********************************************
epoch: 0
… and-so-on. However, when I view the run logs in wandb, I get the following:
5000 training images.
1000 test images.
of training images contain cats.
of test images contain cats.
***********************************************
0
At first, I thought the output was being “covered” by the sidebar, but a quick inspection of the page source shows that this is really what’s being captured. Any thoughts? Is wandb looking for some kind of formatted log output?
Thanks in advance,
Tim