Qwen
/

Text Generation
Transformers
Safetensors
qwen3_moe
conversational
littlebird13 commited on
Commit
5474ee9
·
verified ·
1 Parent(s): e12053d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -4
README.md CHANGED
@@ -22,7 +22,6 @@ Qwen3 is the latest generation of large language models in Qwen series, offering
22
 
23
  ## Model Overview
24
 
25
- ## Model Overview
26
 
27
  **Qwen3-30B-A3B** has the following features:
28
  - Type: Causal Language Models
@@ -39,13 +38,19 @@ For more details, including benchmark evaluation, hardware requirements, and inf
39
 
40
  ## Quickstart
41
 
42
- The code of Qwen3 has been in the latest Hugging Face `transformers` and we advise you to use the latest version of `transformers`.
 
43
 
44
- With `transformers<4.51.0`, you will encounter the following error:
45
- ```
46
  KeyError: 'qwen3'
47
  ```
48
 
 
 
 
 
 
 
49
  The following contains a code snippet illustrating how to use the model generate content based on given inputs.
50
  ```python
51
  from mlx_lm import load, generate
 
22
 
23
  ## Model Overview
24
 
 
25
 
26
  **Qwen3-30B-A3B** has the following features:
27
  - Type: Causal Language Models
 
38
 
39
  ## Quickstart
40
 
41
+ The code of Qwen3 has been in the latest versions of both **`transformers` (≥ 4.52.4)** and **`mlx_lm` (≥ 0.25.2)**, and we advise you to use the latest version of `transformers` and `mlx_lm`.
42
+ Older versions (e.g., `transformers<4.51.0`) may raise errors like:
43
 
44
+ ```text
 
45
  KeyError: 'qwen3'
46
  ```
47
 
48
+ Install or upgrade both packages:
49
+
50
+ ```bash
51
+ pip install --upgrade transformers mlx_lm
52
+ ```
53
+
54
  The following contains a code snippet illustrating how to use the model generate content based on given inputs.
55
  ```python
56
  from mlx_lm import load, generate