File size: 1,402 Bytes
7aaa0c4
 
 
 
 
 
 
 
 
 
 
 
 
c5452e0
7aaa0c4
 
 
56a74b5
 
 
 
 
 
 
 
 
 
 
 
 
 
c5452e0
56a74b5
 
 
7aaa0c4
 
 
 
 
 
 
 
 
 
c5452e0
7aaa0c4
 
 
 
c5452e0
56a74b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
base_model: GoToCompany/gemma2-9b-cpt-sahabatai-v1-instruct
language:
- en
- id
- jv
- su
license: gemma
tags:
- llama-cpp
- gguf-my-repo
---

# ojisetyawan/gemma2-9b-cpt-sahabatai-v1-instruct-Q4_K_M-GGUF
This model was converted to GGUF format from [`GoToCompany/gemma2-9b-cpt-sahabatai-v1-instruct`](https://huggingface.co/GoToCompany/gemma2-9b-cpt-sahabatai-v1-instruct) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
Refer to the [original model card](https://huggingface.co/GoToCompany/gemma2-9b-cpt-sahabatai-v1-instruct) for more details on the model.

## Run with Ollama
Install Ollama

```bash
curl -fsSL https://ollama.com/install.sh | sh
```

### Run Service:
```bash
ollama serve
```

### Run in CLI:
```bash
ollama run hf.co/ojisetyawan/gemma2-9b-cpt-sahabatai-v1-instruct-Q4_K_M-GGUF
```

## Run with llama.cpp
Install llama.cpp through brew (works on Mac and Linux)

```bash
brew install llama.cpp

```
Invoke the llama.cpp server or the CLI.

### CLI:
```bash
llama-cli --hf-repo ojisetyawan/gemma2-9b-cpt-sahabatai-v1-instruct-Q4_K_M-GGUF --hf-file gemma2-9b-cpt-sahabatai-v1-instruct-q4_k_m.gguf -p "The meaning to life and the universe is"
```

### Server:
```bash
llama-server --hf-repo ojisetyawan/gemma2-9b-cpt-sahabatai-v1-instruct-Q4_K_M-GGUF --hf-file gemma2-9b-cpt-sahabatai-v1-instruct-q4_k_m.gguf -c 2048
```