Pytorch notes: tensorboardx
https://chowdera.com/2022/01/202201041411217850.html04.01.2022 · 1 SummaryWriter 1.1 establish . First , You need to create a SummaryWriter An example of : from tensorboardX import SummaryWriter # Here are three different initialization methods SummaryWriter Methods writer1 = SummaryWriter('runs/exp') # Provide a path , This path will be used to save the log writer2 = SummaryWriter() # No parameter , Default will use runs/ …