Source code for ezyrb.reduction.reduction
"""Module for the Reduction abstract class."""
from abc import ABC, abstractmethod
[docs]
class Reduction(ABC):
"""
The abstract Reduction class.
All the classes that implement dimensionality reduction should be inherited
from this class.
"""