From 6f54ad042b85d0c2cbedfe99b40e9471a3a6434c Mon Sep 17 00:00:00 2001 From: daboe01 Date: Wed, 14 Jun 2023 14:26:07 +0200 Subject: [PATCH] fixed: model path was wrong --- examples/train-text-from-scratch/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/train-text-from-scratch/README.md b/examples/train-text-from-scratch/README.md index c51d01604..934d5fda1 100644 --- a/examples/train-text-from-scratch/README.md +++ b/examples/train-text-from-scratch/README.md @@ -8,7 +8,7 @@ wget https://github.com/brunoklein99/deep-learning-notes/blob/master/shakespeare # train ../../train-text-from-scratch \ - --vocab-model ../models/ggml-vocab.bin \ + --vocab-model ../../models/ggml-vocab.bin \ --ctx 64 --embd 256 --head 8 --layer 16 \ --checkpoint-in chk-shakespeare-256x16.bin \ --checkpoint-out chk-shakespeare-256x16.bin \