From 79eab519fdb4a84cf080568ec9faaa2e43953bf6 Mon Sep 17 00:00:00 2001 From: niu tech Date: Fri, 15 Dec 2023 14:01:10 +0100 Subject: [PATCH] Fix phi example (#1436) * Fix phi example * Remove the cuda mention. --------- Co-authored-by: Laurent --- candle-examples/examples/phi/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/candle-examples/examples/phi/README.md b/candle-examples/examples/phi/README.md index a84c01f2..33665dba 100644 --- a/candle-examples/examples/phi/README.md +++ b/candle-examples/examples/phi/README.md @@ -12,7 +12,7 @@ quantized variant. For the v2 version. ```bash -$ cargo run --example phi --release cuda -- --prompt "def print_prime(n): " --model 2 +$ cargo run --example phi --release -- --prompt "def print_prime(n): " --model 2 def print_prime(n): if n <= 1: print("Not a prime number")