salmankhanpm commited on
Commit
613afe8
·
verified ·
1 Parent(s): 971b768

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ language:
5
+ - en
6
+ - bn
7
+ - hi
8
+ - kn
9
+ - gu
10
+ - mr
11
+ - ml
12
+ - or
13
+ - pa
14
+ - ta
15
+ - te
16
+ base_model: sarvamai/sarvam-m
17
+ base_model_relation: finetune
18
+ tags:
19
+ - mlx
20
+ ---
21
+
22
+ # salmankhanpm/sarvam-m-mlx-4Bit
23
+
24
+ The Model [salmankhanpm/sarvam-m-mlx-4Bit](https://huggingface.co/salmankhanpm/sarvam-m-mlx-4Bit) was converted to MLX format from [sarvamai/sarvam-m](https://huggingface.co/sarvamai/sarvam-m) using mlx-lm version **0.22.3**.
25
+
26
+ ## Use with mlx
27
+
28
+ ```bash
29
+ pip install mlx-lm
30
+ ```
31
+
32
+ ```python
33
+ from mlx_lm import load, generate
34
+
35
+ model, tokenizer = load("salmankhanpm/sarvam-m-mlx-4Bit")
36
+
37
+ prompt="hello"
38
+
39
+ if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
40
+ messages = [{"role": "user", "content": prompt}]
41
+ prompt = tokenizer.apply_chat_template(
42
+ messages, tokenize=False, add_generation_prompt=True
43
+ )
44
+
45
+ response = generate(model, tokenizer, prompt=prompt, verbose=True)
46
+ ```