I trained the network using the training images of Cifar10's 'horse' class (5000 samples).
I want to compute FID metric to evaluate the model, computing the "distance" between my generated images and dataset images.
To do this, do I have to pass, in the FID formula, the train dataset, the test dataset or both?
I trained the network using the training images of Cifar10's 'horse' class (5000 samples). I want to compute FID metric to evaluate the model, computing the "distance" between my generated images and dataset images. To do this, do I have to pass, in the FID formula, the train dataset, the test dataset or both?
!python pytorch_fid path1 path2 path1 = /generated_images_folder path2 = ?
Ps. Congratulations for your excellent work!