jesusoctavioas commited on
Commit
9ace833
·
verified ·
1 Parent(s): 0d7e368

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -3
README.md CHANGED
@@ -1,3 +1,21 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ base_model:
6
+ - deepseek-ai/DeepSeek-R1-Distill-Qwen-32B
7
+ ---
8
+
9
+
10
+
11
+ This model was converted to MLX format from deepseek-ai/DeepSeek-R1-Distill-Qwen-32B using mlx-lm version 0.4.0. Refer to the original model card for more details on the model.
12
+
13
+ Use with mlx
14
+ pip install mlx-lm
15
+ from mlx_lm import load, generate
16
+
17
+ model, tokenizer = load("jesusoctavioas/DeepSeek-R1-Distill-Qwen-32B-MLX-Q4")
18
+ response = generate(model, tokenizer, prompt="hello", verbose=True)
19
+
20
+
21
+ Original model link: https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B .