PSM24 commited on
Commit
781e729
·
verified ·
1 Parent(s): a94afdd

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: arcee-ai/Virtuoso-Lite
3
+ library_name: transformers
4
+ license: other
5
+ tags:
6
+ - mergekit
7
+ - merge
8
+ - mlx
9
+ - mlx-my-repo
10
+ ---
11
+
12
+ # PSM24/Virtuoso-Lite-Q4-mlx
13
+
14
+ The Model [PSM24/Virtuoso-Lite-Q4-mlx](https://huggingface.co/PSM24/Virtuoso-Lite-Q4-mlx) was converted to MLX format from [arcee-ai/Virtuoso-Lite](https://huggingface.co/arcee-ai/Virtuoso-Lite) using mlx-lm version **0.20.5**.
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("PSM24/Virtuoso-Lite-Q4-mlx")
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
+ ```