Improve model card for Mixture-Summarizer-Qwen3.5-2B

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +24 -4
README.md CHANGED
@@ -2,14 +2,17 @@
2
  base_model:
3
  - Qwen/Qwen3.5-2B
4
  license: mit
 
 
5
  ---
6
 
7
  # Mixture-Summarizer-Qwen3.5-2B
8
 
9
  [🌐 Project Page](https://recursivemas.github.io) | [πŸ’» Code](https://github.com/RecursiveMAS/RecursiveMAS) | [πŸ“„ Paper](https://arxiv.org/abs/2604.25917)
10
 
11
- We introduce RecursiveMAS, a multi-agent framework that scales agent collaboration through latent-space recursion.
12
- RecursiveMAS treats a multi-agent system as a unified recursive computation, where heterogeneous agents iteratively exchange, refine, and evolve their latent states across recursion rounds. In the Mixture-Style setting, the Summarizer Agent integrates outputs from domain-specialized agents and produces the final response through recursive latent-space collaboration.
 
13
 
14
  ## Model Details
15
 
@@ -20,8 +23,25 @@ RecursiveMAS treats a multi-agent system as a unified recursive computation, whe
20
  | Agent Role | Summarizer Agent |
21
  | Base Model | Qwen3.5-2B |
22
 
23
- ⚠️ **Note:** This checkpoint is a **role-specific agent** in [**RecursiveMAS**](https://arxiv.org/abs/2604.25917), rather than a standalone model intended for plain-text generation.
24
- For detailed usage instructions, please refer to our [GitHub repository](https://github.com/RecursiveMAS/RecursiveMAS).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
  ## Model Collections for RecursiveMAS
27
 
 
2
  base_model:
3
  - Qwen/Qwen3.5-2B
4
  license: mit
5
+ pipeline_tag: text-generation
6
+ library_name: transformers
7
  ---
8
 
9
  # Mixture-Summarizer-Qwen3.5-2B
10
 
11
  [🌐 Project Page](https://recursivemas.github.io) | [πŸ’» Code](https://github.com/RecursiveMAS/RecursiveMAS) | [πŸ“„ Paper](https://arxiv.org/abs/2604.25917)
12
 
13
+ We introduce **RecursiveMAS**, a multi-agent framework introduced in [Recursive Multi-Agent Systems](https://huggingface.co/papers/2604.25917) that scales agent collaboration through latent-space recursion.
14
+
15
+ RecursiveMAS treats a multi-agent system as a unified recursive computation, where heterogeneous agents iteratively exchange, refine, and evolve their latent states across recursion rounds. In the **Mixture-Style** setting, this **Summarizer Agent** integrates outputs from domain-specialized agents and produces the final response through recursive latent-space collaboration.
16
 
17
  ## Model Details
18
 
 
23
  | Agent Role | Summarizer Agent |
24
  | Base Model | Qwen3.5-2B |
25
 
26
+ ⚠️ **Note:** This checkpoint is a **role-specific agent** in [RecursiveMAS](https://arxiv.org/abs/2604.25917), rather than a standalone model intended for plain-text generation.
27
+
28
+ ## Usage
29
+
30
+ To use this agent as part of the RecursiveMAS pipeline, you can load the system using the provided loader from the [official repository](https://github.com/RecursiveMAS/RecursiveMAS):
31
+
32
+ ```python
33
+ from system_loader import load_mas_system
34
+
35
+ # Load the whole Mixture-Style MAS pipeline
36
+ mas = load_mas_system(
37
+ style="mixture",
38
+ device="cuda",
39
+ trust_remote_code=True,
40
+ )
41
+
42
+ # Access the specific summarizer model
43
+ summarizer = mas.agents["summarizer"].model
44
+ ```
45
 
46
  ## Model Collections for RecursiveMAS
47