├── 1 └── micrograd_from_scratch_yay.ipynb ├── 2 ├── build_makemore_yay.ipynb └── names.txt ├── 3 ├── build_makemore_mlp_yay.ipynb └── names.txt ├── 4 ├── makemore_part3_bn.ipynb └── names.txt ├── 5 └── makemore_part4_backprop.ipynb ├── 6 ├── makemore_part5_cnn1.ipynb └── names.txt ├── 7 ├── bigram.py ├── gpt-dev.ipynb └── input.txt ├── 8 ├── Tokenization.ipynb ├── encoder.json ├── tok400.model ├── tok400.vocab ├── toy.txt └── vocab.bpe └── README.md /1/micrograd_from_scratch_yay.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/1/micrograd_from_scratch_yay.ipynb -------------------------------------------------------------------------------- /2/build_makemore_yay.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/2/build_makemore_yay.ipynb -------------------------------------------------------------------------------- /2/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/2/names.txt -------------------------------------------------------------------------------- /3/build_makemore_mlp_yay.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/3/build_makemore_mlp_yay.ipynb -------------------------------------------------------------------------------- /3/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/3/names.txt -------------------------------------------------------------------------------- /4/makemore_part3_bn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/4/makemore_part3_bn.ipynb -------------------------------------------------------------------------------- /4/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/4/names.txt -------------------------------------------------------------------------------- /5/makemore_part4_backprop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/5/makemore_part4_backprop.ipynb -------------------------------------------------------------------------------- /6/makemore_part5_cnn1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/6/makemore_part5_cnn1.ipynb -------------------------------------------------------------------------------- /6/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/6/names.txt -------------------------------------------------------------------------------- /7/bigram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/7/bigram.py -------------------------------------------------------------------------------- /7/gpt-dev.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/7/gpt-dev.ipynb -------------------------------------------------------------------------------- /7/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/7/input.txt -------------------------------------------------------------------------------- /8/Tokenization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/8/Tokenization.ipynb -------------------------------------------------------------------------------- /8/encoder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/8/encoder.json -------------------------------------------------------------------------------- /8/tok400.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/8/tok400.model -------------------------------------------------------------------------------- /8/tok400.vocab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/8/tok400.vocab -------------------------------------------------------------------------------- /8/toy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/8/toy.txt -------------------------------------------------------------------------------- /8/vocab.bpe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/8/vocab.bpe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhmth/zero-to-hero/HEAD/README.md --------------------------------------------------------------------------------