skyxiaobaibai commited on
Commit
d4c9cee
1 Parent(s): 2291059

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gemma
3
+ library_name: transformers
4
+ tags:
5
+ - llama-cpp
6
+ - gguf-my-repo
7
+ widget:
8
+ - messages:
9
+ - role: user
10
+ content: How does the brain work?
11
+ inference:
12
+ parameters:
13
+ max_new_tokens: 200
14
+ extra_gated_heading: Access Gemma on Hugging Face
15
+ extra_gated_prompt: To access Gemma on Hugging Face, you’re required to review and
16
+ agree to Google’s usage license. To do this, please ensure you’re logged-in to Hugging
17
+ Face and click below. Requests are processed immediately.
18
+ extra_gated_button_content: Acknowledge license
19
+ ---
20
+
21
+ # skyxiaobaibai/gemma-1.1-2b-it-Q4_0-GGUF
22
+ This model was converted to GGUF format from [`google/gemma-1.1-2b-it`](https://huggingface.co/google/gemma-1.1-2b-it) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
23
+ Refer to the [original model card](https://huggingface.co/google/gemma-1.1-2b-it) for more details on the model.
24
+ ## Use with llama.cpp
25
+ Install llama.cpp through brew.
26
+ ```bash
27
+ brew install ggerganov/ggerganov/llama.cpp
28
+ ```
29
+ Invoke the llama.cpp server or the CLI.
30
+ CLI:
31
+ ```bash
32
+ llama-cli --hf-repo skyxiaobaibai/gemma-1.1-2b-it-Q4_0-GGUF --model gemma-1.1-2b-it-q4_0.gguf -p "The meaning to life and the universe is"
33
+ ```
34
+ Server:
35
+ ```bash
36
+ llama-server --hf-repo skyxiaobaibai/gemma-1.1-2b-it-Q4_0-GGUF --model gemma-1.1-2b-it-q4_0.gguf -c 2048
37
+ ```
38
+ Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
39
+ ```
40
+ git clone https://github.com/ggerganov/llama.cpp && \
41
+ cd llama.cpp && \
42
+ make && \
43
+ ./main -m gemma-1.1-2b-it-q4_0.gguf -n 128
44
+ ```