TextureScraping / swapae /evaluation /none_evaluator.py
sunshineatnoon
Add application file
1b2a9b1
raw
history blame
369 Bytes
from swapae.evaluation.base_evaluator import BaseEvaluator
class NoneEvaluator(BaseEvaluator):
@staticmethod
def modify_commandline_options(parser, is_train):
return parser
def __init__(self, opt, target_phase):
super().__init__(opt, target_phase)
self.opt = opt
def evaluate(self, model, dataset, nsteps):
return {}