CuckmeisterFuller commited on
Commit
b8b5b51
·
verified ·
1 Parent(s): fbc3bd5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ base_model: stepenZEN/DeepSeek-R1-Distill-Llama-8B-Abliterated
5
+ library_name: transformers
6
+ tags:
7
+ - mlx
8
+ ---
9
+
10
+ # CuckmeisterFuller/DeepSeek-R1-Distill-Llama-8B-Abliterated-Q4-mlx
11
+
12
+ The Model [CuckmeisterFuller/DeepSeek-R1-Distill-Llama-8B-Abliterated-Q4-mlx](https://huggingface.co/CuckmeisterFuller/DeepSeek-R1-Distill-Llama-8B-Abliterated-Q4-mlx) was converted to MLX format from [stepenZEN/DeepSeek-R1-Distill-Llama-8B-Abliterated](https://huggingface.co/stepenZEN/DeepSeek-R1-Distill-Llama-8B-Abliterated) using mlx-lm version **0.20.5**.
13
+
14
+ ## Use with mlx
15
+
16
+ ```bash
17
+ pip install mlx-lm
18
+ ```
19
+
20
+ ```python
21
+ from mlx_lm import load, generate
22
+
23
+ model, tokenizer = load("CuckmeisterFuller/DeepSeek-R1-Distill-Llama-8B-Abliterated-Q4-mlx")
24
+
25
+ prompt="hello"
26
+
27
+ if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
28
+ messages = [{"role": "user", "content": prompt}]
29
+ prompt = tokenizer.apply_chat_template(
30
+ messages, tokenize=False, add_generation_prompt=True
31
+ )
32
+
33
+ response = generate(model, tokenizer, prompt=prompt, verbose=True)
34
+ ```