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
| """ | |
| 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 |
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
| port: 7890 | |
| socks-port: 7891 | |
| allow-lan: true | |
| mode: Rule | |
| log-level: silent | |
| external-controller: 127.0.0.1:9090 | |
| dns: | |
| enable: true | |
| ipv6: false | |
| listen: 127.0.0.1:5450 |
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
| # Haproxy config file for SSL and basic authentication | |
| # | |
| # Since ssl is needed, we need to use | |
| # `make TARGET=linux26 USE_OPENSSL=1 ADDLIB=-lz` to install haproxy. | |
| # Also, haproxy version must be haproxy-1.5-dev19 or above. | |
| # | |
| # An example curl command that queryies pic-collage.com/api/collages/feed is | |
| # `curl -k -v -u 'collages:password' 'https://ec2-ip.compute-1.amazonaws.com/api/collages/feed'` | |
| userlist collages_dyno |