diff --git a/examples/gpt-2/README.md b/examples/gpt-2/README.md index 10571621dc..18fb53369b 100644 --- a/examples/gpt-2/README.md +++ b/examples/gpt-2/README.md @@ -134,7 +134,7 @@ models/gpt-2-117M/ggml-model.bin 100%[===============================>] Done! Model '117M' saved in 'models/gpt-2-117M/ggml-model.bin' You can now use it like this: - $ ./bin/gpt-2 -m models/gpt-2-117M/ggml-model.bin -p "This is an example" + $ ./bin/gpt-2-backend -m models/gpt-2-117M/ggml-model.bin -p "This is an example" ``` diff --git a/examples/gpt-2/download-ggml-model.sh b/examples/gpt-2/download-ggml-model.sh index 3aae015b71..217def5713 100755 --- a/examples/gpt-2/download-ggml-model.sh +++ b/examples/gpt-2/download-ggml-model.sh @@ -65,5 +65,5 @@ fi printf "Done! Model '$model' saved in 'models/gpt-2-$model/ggml-model.bin'\n" printf "You can now use it like this:\n\n" -printf " $ ./bin/gpt-2 -m models/gpt-2-$model/ggml-model.bin -p \"This is an example\"\n" +printf " $ ./bin/gpt-2-backend -m models/gpt-2-$model/ggml-model.bin -p \"This is an example\"\n" printf "\n"