janboe91 commited on
Commit
44e1c44
·
verified ·
1 Parent(s): f195107

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: Steelskull/L3.3-MS-Nevoria-70b
3
+ library_name: transformers
4
+ tags:
5
+ - merge
6
+ - mlx
7
+ - mlx-my-repo
8
+ license: other
9
+ license_name: eva-llama3.3
10
+ ---
11
+
12
+ # janboe91/L3.3-MS-Nevoria-70b-Q4-mlx
13
+
14
+ The Model [janboe91/L3.3-MS-Nevoria-70b-Q4-mlx](https://huggingface.co/janboe91/L3.3-MS-Nevoria-70b-Q4-mlx) was converted to MLX format from [Steelskull/L3.3-MS-Nevoria-70b](https://huggingface.co/Steelskull/L3.3-MS-Nevoria-70b) 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("janboe91/L3.3-MS-Nevoria-70b-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
+ ```