avideci commited on
Commit
725e76d
1 Parent(s): 374e499

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md CHANGED
@@ -1,3 +1,39 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ # llama.cpp compatible GGUF checkpoints for DeciLM-7b-instruct
6
+ ## Usage with chat template
7
+
8
+ ```text
9
+ ./main -m /Users/avilumelsky/Downloads/decilm-7b-uniform-gqa-q8_0.gguf -p """
10
+ ### System:
11
+ You are an AI assistant that follows instruction extremely well. Help as much as you can.
12
+ ### User:
13
+ How do I make the most delicious pancakes the world has ever tasted?
14
+ ### Assistant:
15
+ """
16
+ ```
17
+
18
+ Example output:
19
+ ```
20
+ ### System:
21
+ You are an AI assistant that follows instruction extremely well. Help as much as you can.
22
+ ### User:
23
+ How do I make the most delicious pancakes the world has ever tasted?
24
+ ### Assistant:
25
+ To make the most delicious pancakes the world ever tasted, follow these steps:
26
+
27
+ 1. In a mixing bowl, combine 2 cups of all-purpose flour, 4 tablespoons of sugar, and 3 teaspoon of baking powder with 1/2 teaspoon salt, mix well.
28
+ 2. Make a hole in the center and pour in 4 eggs and 1 cup of milk, whisk well mix it until smooth. Add 3 table spoon of oil and a tables of melted butter.
29
+ 3. Heat your frying pan with little bit butter or oil and ladle batter onto the pan, spread it with 1/2 inch width. Wait for small bubbles to form in the surface and flip over to brown other side until golden.
30
+ 4. Enjoy your delicious pancakes [end of text]
31
+
32
+ llama_print_timings: load time = 343.16 ms
33
+ llama_print_timings: sample time = 14.69 ms / 172 runs ( 0.09 ms per token, 11712.63 tokens per second)
34
+ llama_print_timings: prompt eval time = 239.48 ms / 52 tokens ( 4.61 ms per token, 217.14 tokens per second)
35
+ llama_print_timings: eval time = 7767.20 ms / 171 runs ( 45.42 ms per token, 22.02 tokens per second)
36
+ llama_print_timings: total time = 8045.89 ms
37
+ ggml_metal_free: deallocating
38
+ Log end
39
+ ```