introvoyz041 commited on
Commit
53c0dce
·
verified ·
1 Parent(s): 52f1b47

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: nightmedia/Qwen3-4B-Thinking-2507-GPT-5-Codex-Distill-qx86-hi-mlx
3
+ tags:
4
+ - text-generation-inference
5
+ - transformers
6
+ - unsloth
7
+ - qwen3
8
+ - mlx
9
+ - mlx
10
+ - mlx-my-repo
11
+ license: apache-2.0
12
+ language:
13
+ - en
14
+ datasets:
15
+ - TeichAI/gpt-5-codex-1000x
16
+ pipeline_tag: text-generation
17
+ library_name: mlx
18
+ ---
19
+
20
+ # introvoyz041/Qwen3-4B-Thinking-2507-GPT-5-Codex-Distill-qx86-hi-mlx-mlx-4Bit
21
+
22
+ The Model [introvoyz041/Qwen3-4B-Thinking-2507-GPT-5-Codex-Distill-qx86-hi-mlx-mlx-4Bit](https://huggingface.co/introvoyz041/Qwen3-4B-Thinking-2507-GPT-5-Codex-Distill-qx86-hi-mlx-mlx-4Bit) was converted to MLX format from [nightmedia/Qwen3-4B-Thinking-2507-GPT-5-Codex-Distill-qx86-hi-mlx](https://huggingface.co/nightmedia/Qwen3-4B-Thinking-2507-GPT-5-Codex-Distill-qx86-hi-mlx) using mlx-lm version **0.28.3**.
23
+
24
+ ## Use with mlx
25
+
26
+ ```bash
27
+ pip install mlx-lm
28
+ ```
29
+
30
+ ```python
31
+ from mlx_lm import load, generate
32
+
33
+ model, tokenizer = load("introvoyz041/Qwen3-4B-Thinking-2507-GPT-5-Codex-Distill-qx86-hi-mlx-mlx-4Bit")
34
+
35
+ prompt="hello"
36
+
37
+ if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
38
+ messages = [{"role": "user", "content": prompt}]
39
+ prompt = tokenizer.apply_chat_template(
40
+ messages, tokenize=False, add_generation_prompt=True
41
+ )
42
+
43
+ response = generate(model, tokenizer, prompt=prompt, verbose=True)
44
+ ```