fmasterpro27 commited on
Commit
52a6c63
·
verified ·
1 Parent(s): 48e3d04

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -25
README.md CHANGED
@@ -12,30 +12,6 @@ tags:
12
  - egypt-won
13
  - mlx
14
  - mlx-my-repo
 
15
  ---
16
 
17
- # fmasterpro27/fable-traces-mlx-4Bit
18
-
19
- The Model [fmasterpro27/fable-traces-mlx-4Bit](https://huggingface.co/fmasterpro27/fable-traces-mlx-4Bit) was converted to MLX format from [AliesTaha/fable-traces](https://huggingface.co/AliesTaha/fable-traces) using mlx-lm version **0.31.2**.
20
-
21
- ## Use with mlx
22
-
23
- ```bash
24
- pip install mlx-lm
25
- ```
26
-
27
- ```python
28
- from mlx_lm import load, generate
29
-
30
- model, tokenizer = load("fmasterpro27/fable-traces-mlx-4Bit")
31
-
32
- prompt="hello"
33
-
34
- if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
35
- messages = [{"role": "user", "content": prompt}]
36
- prompt = tokenizer.apply_chat_template(
37
- messages, tokenize=False, add_generation_prompt=True
38
- )
39
-
40
- response = generate(model, tokenizer, prompt=prompt, verbose=True)
41
- ```
 
12
  - egypt-won
13
  - mlx
14
  - mlx-my-repo
15
+ - open4bits
16
  ---
17