summaryrefslogtreecommitdiff
path: root/candle-examples
diff options
context:
space:
mode:
authorniu tech <jerzyglowacki@gmail.com>2023-12-15 14:01:10 +0100
committerGitHub <noreply@github.com>2023-12-15 07:01:10 -0600
commit79eab519fdb4a84cf080568ec9faaa2e43953bf6 (patch)
tree688242be96500bc31cbf4f8d4afb4bbf30cc9b81 /candle-examples
parente60f9b5dfcab05db8c3c2dbf55fb52f10188aa02 (diff)
downloadcandle-79eab519fdb4a84cf080568ec9faaa2e43953bf6.tar.gz
candle-79eab519fdb4a84cf080568ec9faaa2e43953bf6.tar.bz2
candle-79eab519fdb4a84cf080568ec9faaa2e43953bf6.zip
Fix phi example (#1436)
* Fix phi example * Remove the cuda mention. --------- Co-authored-by: Laurent <laurent.mazare@gmail.com>
Diffstat (limited to 'candle-examples')
-rw-r--r--candle-examples/examples/phi/README.md2
1 files changed, 1 insertions, 1 deletions
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")