├── .gitignore ├── README.md ├── datasets.py ├── img └── plot.png └── train.py /.gitignore: -------------------------------------------------------------------------------- 1 | wandb 2 | .ipynb_checkpoints 3 | *.pyc 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YigitDemirag/forward-gradients/HEAD/README.md -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YigitDemirag/forward-gradients/HEAD/datasets.py -------------------------------------------------------------------------------- /img/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YigitDemirag/forward-gradients/HEAD/img/plot.png -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YigitDemirag/forward-gradients/HEAD/train.py --------------------------------------------------------------------------------