ProCreations commited on
Commit
dce1e33
·
verified ·
1 Parent(s): 2c883ba

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: other
5
+ tags:
6
+ - pretrained
7
+ - llama-cpp
8
+ license_name: tongyi-qianwen-research
9
+ license_link: https://huggingface.co/Qwen/Qwen1.5-4B/blob/main/LICENSE
10
+ pipeline_tag: text-generation
11
+ ---
12
+
13
+ # ProCreations/Qwen1.5-4B-Q5_0-GGUF
14
+ This model was converted to GGUF format from [`Qwen/Qwen1.5-4B`](https://huggingface.co/Qwen/Qwen1.5-4B) using llama.cpp.
15
+ Refer to the [original model card](https://huggingface.co/Qwen/Qwen1.5-4B) for more details on the model.
16
+ ## Use with llama.cpp
17
+
18
+ ```bash
19
+ brew install ggerganov/ggerganov/llama.cpp
20
+ ```
21
+
22
+ ```bash
23
+ llama-cli --hf-repo ProCreations/Qwen1.5-4B-Q5_0-GGUF --model qwen1.5-4b.Q5_0.gguf -p "The meaning to life and the universe is "
24
+ ```
25
+
26
+ ```bash
27
+ llama-server --hf-repo ProCreations/Qwen1.5-4B-Q5_0-GGUF --model qwen1.5-4b.Q5_0.gguf -c 2048
28
+ ```