Daizee commited on
Commit
54ef1a9
·
verified ·
1 Parent(s): 6cd5798

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gemma
3
+ language:
4
+ - en
5
+ base_model: SicariusSicariiStuff/X-Ray_Alpha
6
+ datasets:
7
+ - SicariusSicariiStuff/UBW_Tapestries
8
+ widget:
9
+ - text: X-Ray_Alpha
10
+ output:
11
+ url: https://huggingface.co/SicariusSicariiStuff/X-Ray_Alpha/resolve/main/Images/X-Ray_Alpha.png
12
+ tags:
13
+ - mlx
14
+ ---
15
+
16
+ # Daizee/X-Ray_Alpha-mlx-4Bit
17
+
18
+ The Model [Daizee/X-Ray_Alpha-mlx-4Bit](https://huggingface.co/Daizee/X-Ray_Alpha-mlx-4Bit) was converted to MLX format from [SicariusSicariiStuff/X-Ray_Alpha](https://huggingface.co/SicariusSicariiStuff/X-Ray_Alpha) using mlx-lm version **0.29.1**.
19
+
20
+ ## Use with mlx
21
+
22
+ ```bash
23
+ pip install mlx-lm
24
+ ```
25
+
26
+ ```python
27
+ from mlx_lm import load, generate
28
+
29
+ model, tokenizer = load("Daizee/X-Ray_Alpha-mlx-4Bit")
30
+
31
+ prompt="hello"
32
+
33
+ if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
34
+ messages = [{"role": "user", "content": prompt}]
35
+ prompt = tokenizer.apply_chat_template(
36
+ messages, tokenize=False, add_generation_prompt=True
37
+ )
38
+
39
+ response = generate(model, tokenizer, prompt=prompt, verbose=True)
40
+ ```