Update README.md
Browse files
README.md
CHANGED
@@ -7,6 +7,27 @@ license: mit
|
|
7 |
|
8 |
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
----------------------------------------------
|
11 |
|
12 |
# llama.cpp Conversion, Quantization, & Merging
|
|
|
7 |
|
8 |
|
9 |
|
10 |
+
|
11 |
+
## To use this model directly import the following
|
12 |
+
|
13 |
+
```
|
14 |
+
from llama_cpp import Llama
|
15 |
+
|
16 |
+
llm = Llama.from_pretrained(
|
17 |
+
repo_id="Omarrran/gemma2_model_9B_q4_km",
|
18 |
+
filename="unsloth.Q4_K_M.gguf",
|
19 |
+
)
|
20 |
+
|
21 |
+
```
|
22 |
+
|
23 |
+
To know more about how to use llama_cpp Inferenece mode see here : [Link to llama_cpp](https://github.com/ggerganov/llama.cpp)
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
----------------------------------------------
|
32 |
|
33 |
# llama.cpp Conversion, Quantization, & Merging
|