I don’t know, if add_image of TensorBoard does the same, but it looks like the colors might be clipped, so you could try to apply the same method as in save_image.
thx i tried some ways, and found why that didn’t work.
i guess in-place operation was problem.
i gave denorm(image) to each function(save_image,add_image) and it works (i.e. save_image(denorm(image))
but when i gave image which is unnormalized to each function it didn’t (i.e. image=denorm(image), save_image(image))