From 523ba69578886311583d9bd38cd67fba4ecf1c57 Mon Sep 17 00:00:00 2001 From: Andrej Karpathy Date: Sun, 23 Jul 2023 15:29:37 +0000 Subject: [PATCH] fix readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 431dc3c..4ef3a53 100644 --- a/README.md +++ b/README.md @@ -52,10 +52,10 @@ Then train our model: python train.py ``` -See the train.py script for more exotic launches and hyperparameter overrides. I didn't tune the hyperparameters, I expect simple hyperparameter exploration should give better models. Totally understand if you want to skip model training, for simple demo just download my pretrained model: +See the train.py script for more exotic launches and hyperparameter overrides. I didn't tune the hyperparameters, I expect simple hyperparameter exploration should give better models. Totally understand if you want to skip model training, for simple demo just download my pretrained model and save it into the directory `out`: ```bash -wget TODOhoweasiesthmm +wget https://karpathy.ai/llama2c/model.bin -P out ``` Once we have the model.bin file, we can inference in C. Compile the C code first: