danielhanchen commited on
Commit
7d5c4cf
·
verified ·
1 Parent(s): 08c92a9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -2
README.md CHANGED
@@ -26,7 +26,8 @@ We have converted Phi-4 to Llama's architecture for improved ease of use, better
26
 
27
  To use Phi-4 in llama.cpp, do:
28
 
29
- ```./llama.cpp/llama-cli
 
30
  --model unsloth/phi-4-GGUF/phi-4-Q2_K_L.gguf
31
  --prompt '<|im_start|>user<|im_sep|>Provide all combinations of a 5 bit binary number.<|im_end|><|im_start|>assistant<|im_sep|>'
32
  --threads 16
@@ -34,7 +35,8 @@ To use Phi-4 in llama.cpp, do:
34
 
35
  Which will produce:
36
 
37
- ```A 5-bit binary number consists of 5 positions, each of which can be either 0 or 1. Therefore, there are \(2^5 = 32\) possible combinations. Here they are, listed in ascending order:
 
38
  1. 00000
39
  2. 00001
40
  3. 00010
 
26
 
27
  To use Phi-4 in llama.cpp, do:
28
 
29
+ ```bash
30
+ ./llama.cpp/llama-cli
31
  --model unsloth/phi-4-GGUF/phi-4-Q2_K_L.gguf
32
  --prompt '<|im_start|>user<|im_sep|>Provide all combinations of a 5 bit binary number.<|im_end|><|im_start|>assistant<|im_sep|>'
33
  --threads 16
 
35
 
36
  Which will produce:
37
 
38
+ ```txt
39
+ A 5-bit binary number consists of 5 positions, each of which can be either 0 or 1. Therefore, there are \(2^5 = 32\) possible combinations. Here they are, listed in ascending order:
40
  1. 00000
41
  2. 00001
42
  3. 00010