This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Original source: https://gist.github.com/karpathy/8627fe009c40f57531cb18360106ce95 | |
| """ | |
| Same algorithm as microgpt.py, but with vector autograd. | |
| Zero external dependencies. | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |