However, I can’t copy and paste all of the text (it only copies the current screen) and inspect element also shows that when I scroll down, other things are cleared from memory
I would also be interested if there’s a way to get this stdout from the API, too
The output log can be located in the wandb folder in your computer’s working directory. That folder has folders formatted as run-DATETIME-ID - each of which is associated with an individual run. In there should be an output.log.
If the ourput.log file is not there, you can download the file via the following code snippet (derived from the Api and File documentation)
api = wandb.Api()run = api.run('<entity>/<project>/<id>')file = run.file('output.log')file.download()