Ffftdtd5dtft commited on
Commit
8c3c2a0
1 Parent(s): f5adcb2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +52 -0
README.md ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2-0.5B-Instruct
3
+ language:
4
+ - en
5
+ license: apache-2.0
6
+ pipeline_tag: text-generation
7
+ tags:
8
+ - chat
9
+ - llama-cpp
10
+ - gguf-my-repo
11
+ ---
12
+
13
+ # Ffftdtd5dtft/Qwen2-0.5B-Instruct-IQ1_S-GGUF
14
+ This model was converted to GGUF format from [`Qwen/Qwen2-0.5B-Instruct`](https://huggingface.co/Qwen/Qwen2-0.5B-Instruct) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
15
+ Refer to the [original model card](https://huggingface.co/Qwen/Qwen2-0.5B-Instruct) for more details on the model.
16
+
17
+ ## Use with llama.cpp
18
+ Install llama.cpp through brew (works on Mac and Linux)
19
+
20
+ ```bash
21
+ brew install llama.cpp
22
+
23
+ ```
24
+ Invoke the llama.cpp server or the CLI.
25
+
26
+ ### CLI:
27
+ ```bash
28
+ llama-cli --hf-repo Ffftdtd5dtft/Qwen2-0.5B-Instruct-IQ1_S-GGUF --hf-file qwen2-0.5b-instruct-iq1_s-imat.gguf -p "The meaning to life and the universe is"
29
+ ```
30
+
31
+ ### Server:
32
+ ```bash
33
+ llama-server --hf-repo Ffftdtd5dtft/Qwen2-0.5B-Instruct-IQ1_S-GGUF --hf-file qwen2-0.5b-instruct-iq1_s-imat.gguf -c 2048
34
+ ```
35
+
36
+ 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.
37
+ Step 1: Clone llama.cpp from GitHub.
38
+ ```
39
+ git clone https://github.com/ggerganov/llama.cpp
40
+ ```
41
+ Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
42
+ ```
43
+ cd llama.cpp && LLAMA_CURL=1 make
44
+ ```
45
+ Step 3: Run inference through the main binary.
46
+ ```
47
+ ./llama-cli --hf-repo Ffftdtd5dtft/Qwen2-0.5B-Instruct-IQ1_S-GGUF --hf-file qwen2-0.5b-instruct-iq1_s-imat.gguf -p "The meaning to life and the universe is"
48
+ ```
49
+ or
50
+ ```
51
+ ./llama-server --hf-repo Ffftdtd5dtft/Qwen2-0.5B-Instruct-IQ1_S-GGUF --hf-file qwen2-0.5b-instruct-iq1_s-imat.gguf -c 2048
52
+ ```