Bases: learner
The forward-forward algorithm based learner algorithm.
This algorithm is still under testing and tuning of its effectiveness and efficiency on training RPN.
This class will be updated when the algorithm is mature and ready to be used
Source code in tinybig/learner/forward_learner.py
| class forward_learner(learner):
"""
The forward-forward algorithm based learner algorithm.
This algorithm is still under testing and tuning of its effectiveness and efficiency on training RPN.
This class will be updated when the algorithm is mature and ready to be used
"""
def __init__(self, name='forward_forward_algorithm'):
super().__init__(name=name)
def train(self, *args, **kwargs):
pass
def test(self, *args, **kwargs):
pass
|