Wwayu commited on
Commit
fe4bad0
·
verified ·
1 Parent(s): f844e00

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: arnomatic/Mistral-Small-3.2-24B-Instruct-2506-Text-Only-heretic
3
+ tags:
4
+ - heretic
5
+ - uncensored
6
+ - decensored
7
+ - abliterated
8
+ - mlx
9
+ - mlx-my-repo
10
+ ---
11
+
12
+ # Wwayu/Mistral-Small-3.2-24B-Instruct-2506-Text-Only-heretic-mlx-8Bit
13
+
14
+ The Model [Wwayu/Mistral-Small-3.2-24B-Instruct-2506-Text-Only-heretic-mlx-8Bit](https://huggingface.co/Wwayu/Mistral-Small-3.2-24B-Instruct-2506-Text-Only-heretic-mlx-8Bit) was converted to MLX format from [arnomatic/Mistral-Small-3.2-24B-Instruct-2506-Text-Only-heretic](https://huggingface.co/arnomatic/Mistral-Small-3.2-24B-Instruct-2506-Text-Only-heretic) using mlx-lm version **0.28.3**.
15
+
16
+ ## Use with mlx
17
+
18
+ ```bash
19
+ pip install mlx-lm
20
+ ```
21
+
22
+ ```python
23
+ from mlx_lm import load, generate
24
+
25
+ model, tokenizer = load("Wwayu/Mistral-Small-3.2-24B-Instruct-2506-Text-Only-heretic-mlx-8Bit")
26
+
27
+ prompt="hello"
28
+
29
+ if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
30
+ messages = [{"role": "user", "content": prompt}]
31
+ prompt = tokenizer.apply_chat_template(
32
+ messages, tokenize=False, add_generation_prompt=True
33
+ )
34
+
35
+ response = generate(model, tokenizer, prompt=prompt, verbose=True)
36
+ ```