grapevine_classification / gui /base_explainer.py
gabri14el's picture
Upload with huggingface_hub
e6b3e35
raw
history blame contribute delete
193 Bytes
from abc import ABC, abstractmethod
class BaseExplainer(ABC):
@abstractmethod
def get_explanation(self, img, model, img_size, props, preprocess_input = None, index=None):
pass