roshan-soni commited on
Commit
80f4123
·
verified ·
1 Parent(s): 2bcaaac

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+
3
+ license: apache-2.0
4
+ language:
5
+ - en
6
+ - hi
7
+ library_name: llama.cpp
8
+ tags:
9
+ - gguf
10
+ - llama.cpp
11
+ - qwen
12
+ - quantized
13
+ - q4_k_m
14
+ base_model: Qwen/Qwen2.5-1.5B-Instruct
15
+
16
+ ---
17
+
18
+ # Qwen2.5-1.5B-Instruct Q4_K_M GGUF
19
+
20
+ This repository contains a GGUF quantized version of **Qwen2.5-1.5B-Instruct** optimized for local inference with llama.cpp and compatible applications.
21
+
22
+ ## Model Details
23
+
24
+ * Base Model: Qwen2.5-1.5B-Instruct
25
+ * Format: GGUF
26
+ * Quantization: Q4_K_M
27
+ * Intended Use: Local inference, experimentation, educational projects, and edge deployment
28
+
29
+ ## Quantization Information
30
+
31
+ The model was converted from the original Hugging Face checkpoint to GGUF format and quantized using llama.cpp's `Q4_K_M` quantization scheme.
32
+
33
+ Q4_K_M provides a strong balance between:
34
+
35
+ * Model quality
36
+ * Memory usage
37
+ * Inference speed
38
+
39
+ making it suitable for consumer hardware and mobile devices.
40
+
41
+ ## Files
42
+
43
+ | File | Description |
44
+ | ---------------- | --------------------------- |
45
+ | qwen-q4_k_m.gguf | Q4_K_M quantized GGUF model |
46
+
47
+ ## Usage with llama.cpp
48
+
49
+ ```bash
50
+ ./llama-cli \
51
+ -m qwen-q4_k_m.gguf \
52
+ -p "Explain machine learning in simple terms."
53
+ ```
54
+
55
+ ## Usage with Ollama
56
+
57
+ Create a Modelfile:
58
+
59
+ ```text
60
+ FROM ./qwen-q4_k_m.gguf
61
+ ```
62
+
63
+ Then:
64
+
65
+ ```bash
66
+ ollama create qwen-local -f Modelfile
67
+ ollama run qwen-local
68
+ ```
69
+
70
+ ## Hardware Requirements
71
+
72
+ Approximate requirements:
73
+
74
+ * Disk Space: ~1–2 GB
75
+ * RAM: 2–4 GB minimum
76
+ * Recommended RAM: 4 GB+
77
+
78
+ Actual requirements depend on context length and runtime settings.
79
+
80
+ ## Base Model
81
+
82
+ This repository contains a quantized derivative of the original Qwen model. Please refer to the original model repository for training details, benchmarks, limitations, and licensing information.
83
+
84
+ ## Disclaimer
85
+
86
+ This repository only provides a quantized GGUF conversion of the original model. All credit for model training and development belongs to the original Qwen team.