Source code for bob.fusion.base.algorithm

from .Algorithm import Algorithm
from .AlgorithmBob import AlgorithmBob
from .Weighted_Sum import Weighted_Sum
from .MLP import MLP
from .LLR import LLR
from .GMM import GMM
from .Empty import Empty


# gets sphinx autodoc done right - don't remove it
def __appropriate__(*args):
    """Says object was actually declared here, an not on the import module.

  Parameters:

    *args: An iterable of objects to modify

  Resolves `Sphinx referencing issues
  <https://github.com/sphinx-doc/sphinx/issues/3048>`
  """

    for obj in args:
        obj.__module__ = __name__


__appropriate__(
    Algorithm,
    AlgorithmBob,
    Weighted_Sum,
    MLP,
    LLR,
    GMM,
    Empty,
)
__all__ = [_ for _ in dir() if not _.startswith('_')]