Spaces:
Running
Running
File size: 133 Bytes
ea077e1 |
1 2 3 4 5 6 7 |
from abc import ABC, abstractmethod
class ModelStrategy(ABC):
@abstractmethod
def get_model(self, model_name):
pass
|