Urban 8k Train running with newest Lightning and pytorch

This commit is contained in:
Si11ium
2021-01-04 11:22:34 +01:00
parent 93103aba01
commit f6156c6cde
7 changed files with 217 additions and 19 deletions

13
metrics/_base_score.py Normal file
View 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