Save inference images
xiaofeng-c opened this issue · comments
Xiao-Feng commented
If i want to save the inference images to the folder given,waht should i do?
Enrico Fini commented
Hi, if you want to save the images during training you can just get the images in the validation_step
. Otherwise, if you just want to do inference with a pretrained model you can just load the model and do test()
, see PyTorchLightning docs
Xiao-Feng commented
OK,i get it,thank you!