codingmavin commited on
Commit
f4a6be6
·
verified ·
1 Parent(s): 393d4de

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +37 -0
README.md ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pipeline_tag: text-generation
3
+ inference: true
4
+ license: apache-2.0
5
+ datasets:
6
+ - simplescaling/s1K-1.1
7
+ base_model: simplescaling/s1.1-32B
8
+ library_name: transformers
9
+ tags:
10
+ - mlx
11
+ ---
12
+
13
+ # codingmavin/s1.1-32B-mlx-8Bit
14
+
15
+ The Model [codingmavin/s1.1-32B-mlx-8Bit](https://huggingface.co/codingmavin/s1.1-32B-mlx-8Bit) was converted to MLX format from [simplescaling/s1.1-32B](https://huggingface.co/simplescaling/s1.1-32B) using mlx-lm version **0.22.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("codingmavin/s1.1-32B-mlx-8Bit")
27
+
28
+ prompt="hello"
29
+
30
+ if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
31
+ messages = [{"role": "user", "content": prompt}]
32
+ prompt = tokenizer.apply_chat_template(
33
+ messages, tokenize=False, add_generation_prompt=True
34
+ )
35
+
36
+ response = generate(model, tokenizer, prompt=prompt, verbose=True)
37
+ ```