--- 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 ```