jesusoctavioas commited on
Commit
33b845f
·
verified ·
1 Parent(s): 9a730f5

Update README.md

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