ubaitur5 commited on
Commit
36c053b
·
verified ·
1 Parent(s): 001d429

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-14B
3
+ language:
4
+ - en
5
+ license: apache-2.0
6
+ license_link: https://huggingface.co/Qwen/Qwen2.5-14B-Instruct/blob/main/LICENSE
7
+ pipeline_tag: text-generation
8
+ tags:
9
+ - chat
10
+ - mlx
11
+ ---
12
+
13
+ # mlx-community/Qwen2.5-14B-Instruct-4bit
14
+
15
+ The Model [mlx-community/Qwen2.5-14B-Instruct-3bit](https://huggingface.co/mlx-community/Qwen2.5-14B-Instruct-3bit) was converted to MLX format from [Qwen/Qwen2.5-14B-Instruct](https://huggingface.co/Qwen/Qwen2.5-14B-Instruct) using mlx-lm version **0.21.1**.
16
+
17
+ ## Use with mlx
18
+
19
+ ```bash
20
+ pip install mlx-lm
21
+ ```
22
+
23
+ ```python
24
+ from mlx_lm import load, generate
25
+
26
+ model, tokenizer = load("mlx-community/Qwen2.5-14B-Instruct-3bit")
27
+ response = generate(model, tokenizer, prompt="hello", verbose=True)
28
+ ```