This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' fid code and inception model from https://github.com/mseitzer/pytorch-fid ''' | |
import pytorch_lightning as pl | |
from pytorch_lightning.utilities import rank_zero_only | |
from scipy import linalg | |
from .inception import InceptionV3 # https://github.com/mseitzer/pytorch-fid | |
import pickle | |
import torch | |
import numpy as np | |
from tqdm import tqdm |