CompactAI commited on
Commit
efb2721
·
verified ·
1 Parent(s): 109c02d

Update pruning labels in README

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -7,15 +7,15 @@ tags:
7
  base_model: Qwen/Qwen3-0.6B
8
  ---
9
 
10
- # Qwen3-0.6B-python-tiny
11
 
12
- This model is a **tiny** pruned version of [Qwen/Qwen3-0.6B](https://huggingface.co/Qwen/Qwen3-0.6B), specialized for **PYTHON** tasks.
13
 
14
  ## Pruning Details
15
 
16
  - **Base Model**: Qwen/Qwen3-0.6B
17
  - **Specialization**: Python
18
- - **Prune Mode**: Tiny
19
  - **Method**: Activation-based weight pruning
20
 
21
  ## Performance Comparison
@@ -35,8 +35,8 @@ This model is a **tiny** pruned version of [Qwen/Qwen3-0.6B](https://huggingface
35
  ```python
36
  from transformers import AutoModelForCausalLM, AutoTokenizer
37
 
38
- model = AutoModelForCausalLM.from_pretrained("CompactAI/Qwen3-0.6B-python-tiny")
39
- tokenizer = AutoTokenizer.from_pretrained("CompactAI/Qwen3-0.6B-python-tiny")
40
  ```
41
 
42
  ## License
 
7
  base_model: Qwen/Qwen3-0.6B
8
  ---
9
 
10
+ # Qwen3-0.6B-python-light
11
 
12
+ This model is a **light** pruned version of [Qwen/Qwen3-0.6B](https://huggingface.co/Qwen/Qwen3-0.6B), specialized for **PYTHON** tasks.
13
 
14
  ## Pruning Details
15
 
16
  - **Base Model**: Qwen/Qwen3-0.6B
17
  - **Specialization**: Python
18
+ - **Prune Mode**: Light
19
  - **Method**: Activation-based weight pruning
20
 
21
  ## Performance Comparison
 
35
  ```python
36
  from transformers import AutoModelForCausalLM, AutoTokenizer
37
 
38
+ model = AutoModelForCausalLM.from_pretrained("CompactAI/Qwen3-0.6B-python-light")
39
+ tokenizer = AutoTokenizer.from_pretrained("CompactAI/Qwen3-0.6B-python-light")
40
  ```
41
 
42
  ## License