Spaces:
Running
Running
from abc import ABC, abstractmethod | |
class ModelStrategy(ABC): | |
def get_model(self, model_name): | |
pass | |
from abc import ABC, abstractmethod | |
class ModelStrategy(ABC): | |
def get_model(self, model_name): | |
pass | |