Urban 8k Train running with newest Lightning and pytorch
This commit is contained in:
13
metrics/_base_score.py
Normal file
13
metrics/_base_score.py
Normal file
@ -0,0 +1,13 @@
|
||||
from abc import ABC
|
||||
|
||||
|
||||
class _BaseScores(ABC):
|
||||
|
||||
def __init__(self, lightning_model):
|
||||
self.model = lightning_model
|
||||
pass
|
||||
|
||||
def __call__(self, outputs):
|
||||
# summary_dict = dict()
|
||||
# return summary_dict
|
||||
raise NotImplementedError
|
Reference in New Issue
Block a user