Source code for evaluate

# local imports
from macro_eeg_model import Evaluator


[docs] def evaluate(): """ The main function to run the evaluation process. It initializes the :py:class:`src.evaluation.evaluator.Evaluator` class, and executes the evaluation using :py:meth:`src.evaluation.evaluator.Evaluator.evaluate`. """ evaluator = Evaluator() evaluator.evaluate()
if __name__ == "__main__": evaluate()