17 lines
234 B
Python
17 lines
234 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class BaseModelRunner(ABC):
|
|
|
|
@abstractmethod
|
|
def forward(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def run_test(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def run(self):
|
|
pass
|