diff --git a/volia/clustering_modules/abstract_clustering.py b/volia/clustering_modules/abstract_clustering.py new file mode 100644 index 0000000..45aac9e --- /dev/null +++ b/volia/clustering_modules/abstract_clustering.py @@ -0,0 +1,12 @@ + +from abc import ABC, abstractmethod + +class AbstractClustering(ABC): + + @abstractmethod + def predict(self, features): + pass + + @abstractmethod + def load(self, features): + pass