bradyclarke commited on
Commit
786613b
·
verified ·
1 Parent(s): ad9359f

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
+ language:
3
+ - en
4
+ license: mpl-2.0
5
+ base_model: TitleOS/Lightning-1.7B
6
+ tags:
7
+ - lightning
8
+ - hermes-3
9
+ - utility
10
+ - on-device
11
+ - text-generation
12
+ - finetune
13
+ - mlx
14
+ - mlx-my-repo
15
+ datasets:
16
+ - NousResearch/Hermes-3-Dataset
17
+ pipeline_tag: text-generation
18
+ inference: true
19
+ model_creator: TitleOS
20
+ ---
21
+
22
+ # bradyclarke/Lightning-1.7B-mlx-4Bit
23
+
24
+ The Model [bradyclarke/Lightning-1.7B-mlx-4Bit](https://huggingface.co/bradyclarke/Lightning-1.7B-mlx-4Bit) was converted to MLX format from [TitleOS/Lightning-1.7B](https://huggingface.co/TitleOS/Lightning-1.7B) using mlx-lm version **0.29.1**.
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("bradyclarke/Lightning-1.7B-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
+ ```