Redis is used to support the message queue. Run below command to run the offical Redis container
$ docker run --name my-redis-container -p 6379:6379 -d redis
(Optional) To access Redis, check this gist
| """ | |
| The most atomic way to train and inference a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
Redis is used to support the message queue. Run below command to run the offical Redis container
$ docker run --name my-redis-container -p 6379:6379 -d redis
(Optional) To access Redis, check this gist