from abc import ABC, abstractmethod | |
class BaseExplainer(ABC): | |
def get_explanation(self, img, model, img_size, props, preprocess_input = None, index=None): | |
pass |
from abc import ABC, abstractmethod | |
class BaseExplainer(ABC): | |
def get_explanation(self, img, model, img_size, props, preprocess_input = None, index=None): | |
pass |