Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 652 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 652 Bytes

Feedback-Alignment

Implementations of Random Feedback Alignment (RFA), DFA, and variants.

Running

python3 main.py --lr=0.05 --bs=128 --epochs=100 --flow=autodiff

CLI Options:

  • lr Learning rate
  • bs Batch size
  • epochs Number of epochs to train for
  • flow The gradient flow scheme used. Possible values:
    • autodiff Backprop with Tensorflow's built-in reverse mode automatic differention
    • rfa Random feedback alignment
    • dfa Direct feedback alignment