ApprikatAI commited on
Commit
95b577b
·
verified ·
1 Parent(s): 70008ec

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-Coder-1.5B-Instruct
3
+ language:
4
+ - en
5
+ library_name: transformers
6
+ license: apache-2.0
7
+ license_link: https://huggingface.co/Qwen/Qwen2.5-Coder-1.5B-Instruct/blob/main/LICENSE
8
+ pipeline_tag: text-generation
9
+ tags:
10
+ - code
11
+ - codeqwen
12
+ - chat
13
+ - qwen
14
+ - qwen-coder
15
+ - llama-cpp
16
+ - gguf-my-repo
17
+ ---
18
+
19
+ # ApprikatAI/Qwen2.5-Coder-1.5B-Instruct-FP16-GGUF
20
+ This model was converted to GGUF format from [`Qwen/Qwen2.5-Coder-1.5B-Instruct`](https://huggingface.co/Qwen/Qwen2.5-Coder-1.5B-Instruct) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
21
+ Refer to the [original model card](https://huggingface.co/Qwen/Qwen2.5-Coder-1.5B-Instruct) for more details on the model.
22
+
23
+ ## Use with llama.cpp
24
+ Install llama.cpp through brew (works on Mac and Linux)
25
+
26
+ ```bash
27
+ brew install llama.cpp
28
+ ```
29
+ Invoke the llama.cpp server or the CLI.
30
+
31
+ ### CLI:
32
+ ```bash
33
+ llama-cli --hf-repo ApprikatAI/Qwen2.5-Coder-1.5B-Instruct-FP16-GGUF --hf-file qwen2.5-coder-1.5b-instruct-fp16.gguf -p "The meaning to life and the universe is"
34
+ ```
35
+
36
+ ### Server:
37
+ ```bash
38
+ llama-server --hf-repo ApprikatAI/Qwen2.5-Coder-1.5B-Instruct-FP16-GGUF --hf-file qwen2.5-coder-1.5b-instruct-fp16.gguf -c 2048
39
+ ```