1. 初始化代码;

This commit is contained in:
2025-12-30 22:42:47 +08:00
parent 2a75e5acb5
commit aed4f68b0d
11 changed files with 268 additions and 168 deletions

16
models/base.py Normal file
View File

@@ -0,0 +1,16 @@
from abc import ABC, abstractmethod
class BaseModelRunner(ABC):
@abstractmethod
def forward(self):
pass
@abstractmethod
def run_test(self):
pass
@abstractmethod
def run(self):
pass